Guest Posted October 18, 2002 Posted October 18, 2002 After about a week Network Solutions got their act together I even got my isp SSl working... even though they said it won't without absolute urls.. PHP...Gotta Love It! Anyway pick me apart... I'd really appreciate it if a few of you would use the sample payment option and go through the order process... thanks OCS Team! special thanks to Jan, Linda and Ian!!! http://www.stnickco.com
Ian-San Posted October 18, 2002 Posted October 18, 2002 Will It looks great but the Flash slow down the scrolling / loading of the home page making it a bit jerky (and I am using ADSL so think of the poor sod using 28 kbs). I am sure lots of people will also tell you to avoid Flash where possible unless you also provide a non-flash alternative as only a small percentage of punters have it loaded. Ian-san Flawlessnet
bryantrv Posted October 18, 2002 Posted October 18, 2002 Looks great! Detail on how you managed the SSL connection would be very welcome! --Chris
Guest Posted October 19, 2002 Posted October 19, 2002 I really tried to make it complicated... The ISP said I needed to use absolute urls for individual pages, and I tried this but the SID got in the way. I tied a few different things and then as a last ditch effor I tried the obvious and simple define('HTTP_SERVER', 'http://www.stnickco.com'); // eg, http://localhost - should not be NULL for productive servers define('HTTPS_SERVER', 'https://secure.modwest.com/stnickco.com'); // eg, https://localhost - should not be NULL for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure?
mouflon Posted October 19, 2002 Posted October 19, 2002 That's exactly what I use for SSL as well - I did notice, though, that I got a couple of page not found errors when going to the secure page. I had the same problem here with my servers (it was making me and my clients crazy), and discovered (here, anyway) thast it was a problem with the way IE deals with Apache, SSL, and the keepalive option in the Apache setup. I tried many different combinations, but this worked for me. (I do administer the web server for the ISP so I have a bit of an advantage what it comes to modifying the httpd.conf) system - Intel PIII running OpenBSD 3.0, PHP 4.2.1, OpenSSL 0.9.6b , and Apache/1.3.24 in the SSL directive of httpd.conf: #SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0 #BrowserMatch "MSIE [1-4]" nokeepalive ssl-unclean-shutdown #downgrade-1.0 force-response-1.0 #BrowserMatch "MSIE [5-9]" ssl-unclean-shutdown #SSLCipherSuite #ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP #BrowserMatch "MSIE [1-4]" nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0 #BrowserMatch "MSIE [5-9]" nokeepalive ssl-unclean-shutdown #SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0 SetEnvIf User-Agent ".*MSIE.*" ssl-unclean-shutdown notice all of the commented lines - all of them are trials based on dozens of messages in Apache/SSL forums. The last line is the one that did the trick. Remeber, this worked for me, and may not apply in all circumstances. Unexpect the Expected
Recommended Posts
Archived
This topic is now archived and is closed to further replies.