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

RE: [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?
> >
>
> <snip>
> >
> > $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);
> >
>
> If anyone else doesn't know this, the above is a fix for MS Internet
> Explorer's bugging SSL implementation.
>
> I have successfully implemented this, but the code in my httpd.conf
> is slightly different (just the one line is different from above):
>
> $PerlConfig .= "SetEnvIf User-Agent \".*MSIE.*\" \\n";
>
> I.E. There are two quotes missing:
>
> 	\".*MSIE.*\"
>
> not
>
> 	\.*MSIE.*\
>
> Let us know if this works.
>
> Ian

Ian;

The error I get trying to implement this doesn't mention a problem with the
quotes, but I got the specific error that shows when I restart:

Shutting down Web Service: httpd
Setting up Web Service: mod_perl: Invalid command 'downgrade-1.0', perhaps
mis-s
pelled or defined by a module not included in the server configuration

Any ideas?

Thanks,

-Mike