Hi there,
I've got the following problem with the results page:
If I open the search (without passing any params), everything is as it should be. But after submitting a search term,
I get the following error message:
My Apache Error Log says:
This is the server environment:
Zoom is configuered to put out an CGI/WIN32 file, because we have approx. 1.000.000 unique words.
My .htaccess file looks like this:
And the httpd.conf looks like this:
I do not let Zoom upload any files, because I've set the "Output directory" to:
which can be accessed by typing http://example.com/zoom-search/
Do you have any idea how to solve my problem?
Thank you guys very much!
Best regards,
Toby
I've got the following problem with the results page:
If I open the search (without passing any params), everything is as it should be. But after submitting a search term,
I get the following error message:
Code:
Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, foo@bar.com 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.
My Apache Error Log says:
Code:
[error] Premature end of script headers: search.cgi, referer: http://example.com/zoom-search/search.cgi
This is the server environment:
- Windows Server 2003 R2, Standard Edition, Service Pack 1
- Zoom Search Engine Version 6.0 (Build: 1016) Enterprise Edition
- WAMP Server Version 2.0 with an Apache 2.2.11 (no IIS!)
Zoom is configuered to put out an CGI/WIN32 file, because we have approx. 1.000.000 unique words.
My .htaccess file looks like this:
Code:
# PHP settings php_value memory_limit 1024M php_value max_input_time 300 php_value max_execution_time 300 # everything should be UTF-8 encoded AddDefaultCharset UTF-8 # remove index.php RewriteEngine On RewriteCond $1 !\.(gif|jpe?g|png)$ [NC] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ /index.php/$1 [L] Options +FollowSymLinks
Code:
ServerRoot "d:/wamp/bin/apache/apache2.2.11" Listen 80 # LOADED MODULES ARE NOT LISTED <IfModule !mpm_netware_module> <IfModule !mpm_winnt_module> User daemon Group daemon </IfModule> </IfModule> ServerAdmin foo@bar.com ServerName foobar:80 DocumentRoot "d:/wamp/www/" <Directory /> Options FollowSymLinks AllowOverride None Order deny,allow Deny from all </Directory> <Directory "d:/wamp/www/"> Options Indexes FollowSymLinks MultiViews Includes ExecCGI AddHandler cgi-script .cgi .pl AllowOverride all Order Allow,Deny Allow from all </Directory> <IfModule dir_module> DirectoryIndex index.php index.php3 index.html index.htm index.cgi </IfModule> <FilesMatch "^\.ht"> Order allow,deny Deny from all Satisfy All </FilesMatch> ErrorLog "d:/wamp/logs/apache_error.log" LogLevel warn <IfModule log_config_module> LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined LogFormat "%h %l %u %t \"%r\" %>s %b" common <IfModule logio_module> LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio </IfModule> CustomLog "d:/wamp/logs/access.log" common </IfModule> Options +ExecCGI AddHandler cgi-script .cgi AddHandler cgi-script .pl DefaultType text/plain <IfModule mime_module> TypesConfig conf/mime.types AddType application/x-compress .Z AddType application/x-gzip .gz .tgz AddType application/x-httpd-php .php AddType application/x-httpd-php .php3 </IfModule> Include conf/extra/httpd-autoindex.conf <IfModule ssl_module> SSLRandomSeed startup builtin SSLRandomSeed connect builtin </IfModule> Include "d:/wamp/alias/*"
I do not let Zoom upload any files, because I've set the "Output directory" to:
Code:
D:\wamp\www\zoom-search
Do you have any idea how to solve my problem?
Thank you guys very much!
Best regards,
Toby
Comment