[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cobalt-users] Page Not Found Errors / solution?



A friend of mine with a RAQ4 found this through the sun knowledge base, but
it doesn't seem to work for constant 'page not found' errors I get.  It
seems to be choking on the line 'downgrade-1.0 force-response-1.0' - does
anyone know anything about this?

Thanks,

:)

-Mike



#############
QUESTION:
I am getting a page cannot be displayed error when submitting a form. If I
click back and resubmit the form it works fine. How can I get around this
problem?

--------------------
ANSWER:
Change the following block of code in /etc/httpd/conf/httpd.conf under the
Section "# Hardcoded, issues with mod_perl and cobalt modules." from:

$PerlConfig .= "Listen $ip:443\n";
$PerlConfig .= "<VirtualHost $ip:443>\n";
$PerlConfig .= "SSLengine on\n";
$PerlConfig .= "SSLCertificateFile /home/sites/$group/certs/certificate\n";
$PerlConfig .= "SSLCertificateKeyFile /home/sites/$group/certs/key\n";
$PerlConfig .= join('', @ssl_conf);

to:

$PerlConfig .= "Listen $ip:443\n";
$PerlConfig .= "<VirtualHost $ip:443>\n";
$PerlConfig .= "SetEnvIf User-Agent \.*MSIE.*\\n";
$PerlConfig .= "nokeepalive ssl-unclean-shutdown\n";
$PerlConfig .= "downgrade-1.0 force-response-1.0\n";
$PerlConfig .= "SSLengine on\n";
$PerlConfig .= "SSLCertificateFile /home/sites/$group/certs/certificate\n";
$PerlConfig .= "SSLCertificateKeyFile /home/sites/$group/certs/key\n";
$PerlConfig .= join('', @ssl_conf);

Restart Apache by typing /etc/rc.d/init.d/httpd restart

#############