Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Enabling SSL connection


arya2000

Recommended Posts

Posted

Hi, when we installed oscommerce website, we didn’t have any security certificate on the server so, we didn’t check “Enable SSL connection” option. Now we are planning to buy security certificate and want to how can we enable SSL connection without reinstalling oscommerce (which is not an option). Thank you very much.

Posted
Hi, when we installed oscommerce website, we didn’t have any security certificate on the server so, we didn’t check “Enable SSL connection” option. Now we are planning to buy security certificate and want to how can we enable SSL connection without reinstalling oscommerce (which is not an option). Thank you very much.

 

In your configure files (includes/configure.php and admin/includes/configure.php) you will see defines near the top for the https servers. Add your secure website details in there and change enable ssl from false to true

Regards

 

Mark A Reynolds

Posted
In your configure files (includes/configure.php and admin/includes/configure.php) you will see defines near the top for the https servers. Add your secure website details in there and change enable ssl from false to true

 

Thank you very much.

Example

define('ENABLE_SSL', true);

define('HTTPS_SERVER', 'https://www.myserver.com');

 

And i can keep 'HTTPS_COOKIE_DOMAIN' same right?

define('HTTPS_COOKIE_DOMAIN', 'www.myserver.com');

Posted

no you need to change the cookie as well

 

define('HTTPS_COOKIE_DOMAIN', 'https://www.myserver.com');

Regards

 

Mark A Reynolds

Posted
no you need to change the cookie as well

 

define('HTTPS_COOKIE_DOMAIN', 'https://www.myserver.com');

 

Oh! Thank you very much :)

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...