Link to home
Start Free TrialLog in
Avatar of Robinkeeley
RobinkeeleyFlag for United States of America

asked on

Intranet HTML Search Engine Code Keeps Failing

I am currently working on a project for work, which entails placing a search button on the Intranet.  I have the code in place but when I try to search for a document, I get the following message:

Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, [no address given] and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

I have the code below.  I have a feeling I am just missing something small.  Any help that can be given would be great.
Thank you!

HTML CODE:
<html>  
                <head>  
                <title>Search for documents</title>  
                </head>  
                <body background = "images/Tabackground.jpg" bgcolor="#FFFFFF">  
               
                <h2>Search for documents</h2>  

                <!--  Modify the following action to reflect the name of your search macro  -->  
                <!--  This can be a complete URL or a relative URL                          -->  
                <FORM NAME="search" ACTION="/cgi-bin/db2www/www/tatest/scripts/sample_search.ndm/output" METHOD="post">

                <!-- The following fields must be provided to the search macro, either as hidden fields or input fields  -->  
                <!--    Modify the index name and directory appropriately for the index being searched                   -->  
                <INPUT TYPE="hidden" NAME="frmIndexName" VALUE="taindex">
                <INPUT TYPE="hidden" NAME="frmDir" VALUE="/QIBM/UserData/HTTPSVR/index">  
                <INPUT TYPE="hidden" NAME="frmMapFile" VALUE="/QIBM/UserData/HTTPSVR/index/taindex.MAP_FILE">
                <INPUT TYPE="hidden" NAME="frmQueryType" VALUE="simple">  
                <INPUT TYPE="hidden" NAME="frmStartNum" VALUE="1">  
                <INPUT TYPE="hidden" NAME="frmPreference" VALUE="wildcard">  
                <INPUT TYPE="hidden" NAME="frmCaseSensitive" VALUE="no">  
                <INPUT TYPE="hidden" NAME="frmStemming" VALUE="no">  
                <INPUT TYPE="hidden" NAME="frmLogical" VALUE="AND">  
                <INPUT TYPE="hidden" NAME="frmPrecision" VALUE="100">  
                <INPUT TYPE="hidden" NAME="frmMaxCount" VALUE="10">
                <!-- New fields added -->
                <INPUT TYPE="hidden" NAME="frmFieldName" VALUE="BODY">
                <INPUT TYPE="hidden" NAME="frmSortOrder" VALUE="SORT_BY_RANK">
                <INPUT TYPE="hidden" NAME="frmAscDesc" VALUE="DESCENDING">

                <table>  
                <tr><td><b>Enter search terms :</b></td>  
                </tr>  
                <tr><td><INPUT TYPE="text" SIZE=50 NAME="frmSearchString" VALUE=""></td>  
                <td><INPUT TYPE="submit" NAME="Submit" VALUE="Search" ></td></tr>  
                </table>  
                </FORM>  
                </BODY>  
                </HTML>  
Avatar of nschafer
nschafer
Flag of United States of America image

Hi Robinkeeley,

First of all let's turn off friendly Error messages.  This will give more detail in finding the problem.

Click to Tool --> Internet Options --> Advanced.
   Uncheck Show Friendly HTTP error messages and click OK

Load the page again, and report back the error message


Neal.
Avatar of Robinkeeley

ASKER

Hello Neal,

I did what you asked above and got the same results.

Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, [no address given] and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.
ASKER CERTIFIED SOLUTION
Avatar of nschafer
nschafer
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thank you for your help.  I will take a look at the IBM sites.  I had a feeling the my path was wrong, so I am going to continue to figure it out.

Thanks again for your help.