Web Hosting Talk







View Full Version : ssl apache


tweakmaster
03-25-2002, 11:44 PM
Hi all

I have a secure signup page that submits the form data to a php script, the problem is that when the clients click the "Submit" button the dialog box comes up saying they are about to leave a secure connection, BUT, if they click NO to continuing and click on the Submit button a second time, it takes them straight through without the dialog box coming up and the connection is still secure

btw, if they do click continue, then a "page cant be displayed" comes up, but the address in the address bar is correct

https://secure.server.com:433/secure_signup/send.php

both ways the address in the addy bar is the same
but the first time......... no page

the second click on the submit button gives up the correct page and its still secure

I have seen this on other sites

What is the info on that, I just dont understand what could do that?

Any help would be great

thanks heaps

Tweakmaster

dhlsg
03-26-2002, 01:28 AM
Hi,

It's an IE bug, you can fix it by adding some of this code or all of it and commenting out the existing line within your httpd.conf
ssl aware section.

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

Don't forget to comment out your existing entry if you add the whole code above.
This will stop the problem, I did it to my box too, seemed to do the trick.

Steve

tweakmaster
03-26-2002, 04:08 AM
Great, thanks heaps

It really had me stumped

I wish you all the best luck in the world !!

Thanks again

Tweakmaster

dhlsg
03-26-2002, 04:48 AM
Not a problem. :)

Steve