SSL Forms --> Can not find host (when submitted)

H

hypernatic.net

Guest
Ack!!

What's this? I have a RaQ4 and I have a site with an SSL cert.
I use this cert in several forms to process them secure.

Now, sometimes, when I click submit (form) it does not even process but IMMEDIATELY shows "Can not find host" (page of IE)...
So its not loading anything from the internet...

What is this?

Solution by "dico" (WHT)
Ok... you want to ssh into your machine as SU and type:

cd /etc/httpd/conf
pico httpd.conf

then between the <VirtualHost> and the </VirtualHost> tags, (each domain you have hosted has a set of these), you want to add:

SetEnvIf User-Agent ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0

I usually add it right before </VirtualHost>

exit and save the httpd.conf file.

type /etc/rc.d/init.d/httpd restart to restart apache.

Done. You should do this for each site with SSL.
 
Umm Sorry if I'm a bit slow here, but I'm confused? You posted the problem and then the solution... Have you fixed the problem now?

The line I'd used for that very same issue was:

BrowserMatch MSIE ssl-unclean-shutdown nokeepalive downgrade-1.0 force-response-1.0

I guess that's much the same as the solution you posted anyways.
 
BrowserMatch MSIE ssl-unclean-shutdown nokeepalive downgrade-1.0 force-response-1.0
Thanks HostIt!

I was having the same plroblem on a Plesk box and that fixed it.

Richard
 
Top