in reply to Magic number checking on storable string failed
Hi,
If I configure apache(httpd.conf) for the following setting, my application works and retrieve the search results
ScriptAlias /cgi-bin/ "/var/www/cgi-bin/"
<Directory "/var/www/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
But if I change my configuration to:
PerlModule ModPerl::RegistryPrefork
Alias /cgi-bin/ /var/www/cgi-bin/
<Location /cgi-bin>
SetHandler perl-script
PerlResponseHandler ModPerl::RegistryPrefork
PerlSendHeader On
PerlOptions +ParseHeaders
Options +ExecCGI
</Location>
Then only i received the error I mentioned in my first post.
please suggest?