This is a discussion on another ssl question within the osCommerce 2.2 Installation Help forums, part of the osCommerce 2.2 Forums category; I have read every thread I could find on this Except the one that had my answer. This is where ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| I have read every thread I could find on this Except the one that had my answer. This is where I am at. I have everything configured to where I think it is correct. I even uploaded the ENTIRE directory to my httpsdocs directory. I click a link that is going to take me to a secure page, it gives me a message saying I am entering a secure area, The page loads - the url is https, If I click File - Properties it is listed as a secure connection etc. Now here is where it doesnt work. There is no padlock and when I check the path to the images - ALL my images have a path going to the http directory. Every single image is loaded in both directories just to make sure (Overkill, I know but Im trying everything) Any mods I used dealing with images were listed as /images/pic.jpg instead of the complete url, (I read that post...) Im thinking that since all the image paths are going to the http server, thats why I dont have the lock visable - Any Ideas how to correct this? Thanks for any help TJ |
|
#2
| |||
| |||
| OK I think I have a work around from reading the posts on the OS forum I changed the following and so far so good. 1. catalog/includes/application_top.php replace: $request_type = (getenv('HTTPS') == 'on') ? 'SSL' : 'NONSSL'; with: $request_type = (getenv('HTTPS') == 'on' or getenv('SERVER_PORT') == 443) ? 'SSL' : 'NONSSL'; 2. admin/index.php replace: if (getenv('HTTPS') == 'on') { with: if (getenv('HTTPS') == 'on' or getenv('SERVER_PORT') == 443) { 3. admin/index.php replace: $size = ((getenv('SSL_CIPHER_ALGKEYSIZE')) ? getenv('SSL_CIPHER_ALGKEYSIZE') . '-bit' : '<i>' . BOX_CONNECTION_UNKNOWN . '</i>'); with: $size = '128-bit'; Thanks for the help FLOYDFANATIC!!!!!!!!!!!!!!!!!!!! TJ |
|
#3
| |||
| |||
| Works for me too! in Admin I put the Server_Port test ahead of the existing test: if (getenv('SERVER_PORT') == 443 or getenv('HTTPS') == '1') Bumpy |
|
#4
| |||
| |||
| Ok, premature, the admin shows the lock at the status bar, but still get: You are protected by a unknown secure SSL connection. Not a showstopper, but sure would like to get it fixed. on 1and1.com hosting, BTW. Bumpy |