Web Hosting Talk







View Full Version : SSL Forms --> Can not find host (when submitted)


hypernatic.net
04-05-2002, 06:11 PM
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?

dico
04-08-2002, 10:26 PM
So let me get this straight....

you click submit and you get a page not found error?

when you click back and then press submit again, does it work?

if so, let me know i have a fix for you.

-dr

hypernatic.net
04-09-2002, 03:52 AM
Exactly...

dico
04-09-2002, 08:00 AM
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.

-dr

hypernatic.net
04-09-2002, 11:24 AM
I removed the \ at the end, (since the \ gave many problems...) and I still get this:

Missing envariable expression for SetEnvIf

dico
04-09-2002, 12:12 PM
Don't know what else to say....

This worked for me and after a reboot it worked fine.

Check the threads here, you may find some more info... search on

SSL+PHP+Cobalt Raq4i Solution

or

Jeff Philapy

Good luck.