papa87 Posted April 12, 2004 Posted April 12, 2004 Hi! When I firts started to built my storefront I don't have a SSL account, but now I have one. How can I add the SSL account to my oscommerce checkout process. My SSL account is https://ipaddress/~username/ and not https:www.myname.com Thanks
detsouvalas Posted April 12, 2004 Posted April 12, 2004 You have to define the SSL Server in your configuration files! Generaly speaking, there are TWO configuration files, one located in directory catalog/includes and another one in catalog/admin/includes. They are both named configure.php. In catalog/includes/configure.php, find the HTTPS_SERVER and ENABLE_SSL define statements and change them as following: define('HTTPS_SERVER', 'https://ipaddress/~username/'); define('ENABLE_SSL', true); and in catalog/admin/includes/configure.php, find the HTTPS_CATALOG_SERVER and ENABLE_SSL_CATALOG define statements and change them as following: define('HTTPS_CATALOG_SERVER', 'https://ipaddress/~username/'); define('ENABLE_SSL_CATALOG', 'true') Should work! Antonios
Recommended Posts
Archived
This topic is now archived and is closed to further replies.