In order to activate a secure connection to the website based on OpenCart, make the changes to the file includes/configure.php.
Use a text editor (e.g. Notepad) to change the value of the parameters:
- HTTPS_SERVER
- HTTPS_IMAGE
from http:// to https:/
<?php
define('HTTPS_SERVER', 'https://www.sslguru.com');
define('HTTPS_IMAGE', 'https://www.sslguru.com/image/');
?>
In order to activate a secure connection to the admin panel, make the changes to the file admin/config.php.
Use a text editor (e.g. Notepad) to change the value of the parameters:
- HTTP_SERVER
- HTTP_CATALOG
- HTTP_IMAGE
- HTTPS_SERVER
- HTTPS_IMAGE
from http:// to https://
<?php
// HTTP
define('HTTP_SERVER', 'https://www.sslguru.com/admin/');
define('HTTP_CATALOG', 'https://www.sslguru.com');
define('HTTP_IMAGE', 'https://www.sslguru.com/image/');
// HTTPS
define('HTTPS_SERVER', 'https://www.sslguru.com/admin/');
define('HTTPS_IMAGE', 'https://www.sslguru.com/image/');
?>
