PassMark Logo
Home » Forum

Announcement

Collapse
No announcement yet.

error page on search results

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • error page on search results

    I'm getting an error page when I conduct a search. I have the search form on a page and the indexing was completed and ftp-d to my site. but when i try to do a search, the result is an error page. try it at http://www.ctfalliance.org/about_gov.htm

    ...any ideas are welcome.

  • #2
    Your search form is linking to the wrong path in its action= attribute.

    So on this page:
    http://www.ctfalliance.org/about_gov.htm

    You have this form tag:
    <form method="get" action="search.php">

    This means the form will be submitted to a "search.php" file in the same folder, namely:
    http://www.ctfalliance.org/search.php

    This page doesn't exist.

    Making a guess, I found the following:
    http://www.ctfalliance.org/search/search.php

    Because you have uploaded the search files to a subfolder named "search".

    So you will need to change your path to:
    <form method="get" action="search/search.php">

    Hope that helps.
    --Ray
    Wrensoft Web Software
    Sydney, Australia
    Zoom Search Engine

    Comment

    Working...
    X