Product Information
Google Chrome will be alerting users to insecure websites with placement of a red Not Secure warning.
Installing a certificate and activating the SSL in your 'General Settings' doesn't help as that only affects the Cart and Registration pages.
No need to upgrade to version 4, 5 or 6, just make these simple changes to your code...
1. edit your /includes/global.inc.php and change the Store_URL from http:// to https://
2. edit your /includes/sslSwitch.inc.php and change
$storeURL = str_replace("http://","",$glob['storeURL']);
to $storeURL = str_replace("https://","",$glob['storeURL']);
3. Edit /index.php and add $enableSSl = 1; as below;
include_once("includes/sessionStart.inc.php");
$enableSSl = 1;
include_once("includes/sslSwitch.inc.php");
Product Code: CC3C40