moran Posted December 13, 2004 Posted December 13, 2004 Ok i setup my SSL cert.. its at www.mydomain.com so if i goto https://www.mydomain.com/ the SSL works.. but if i goto a different directory such as https://www.mydomain.com/test/ the SSL doesnt work.. Does this need to be configured on the OSCOmmerce end? or is it a misconfiguration in my SSL cert?
Guest Posted December 13, 2004 Posted December 13, 2004 Ok i setup my SSL cert..its at www.mydomain.com so if i goto https://www.mydomain.com/ the SSL works.. but if i goto a different directory such as https://www.mydomain.com/test/ the SSL doesnt work.. Does this need to be configured on the OSCOmmerce end? or is it a misconfiguration in my SSL cert? <{POST_SNAPBACK}> have a look in configure.php
moran Posted December 13, 2004 Author Posted December 13, 2004 i enabled SSL in the configure.php file and doesnt work
moran Posted December 13, 2004 Author Posted December 13, 2004 AH i found my problem In application_top.php i had to edit the following line: $request_type = (getenv('HTTPS') == 'on') ? 'SSL' : 'NONSSL'; and change it to: $request_type = (getenv('HTTPS') == 'on' or getenv('SERVER_PORT') == 443) ? 'SSL' : 'NONSSL';
Recommended Posts
Archived
This topic is now archived and is closed to further replies.