using opencart 1.5
I set 'use ssl' in admin
I changed the config files in admin, and root directory
Code: Select all
// HTTP
define('HTTP_SERVER', 'http://homemakerfurniturestore.com/');
define('HTTP_IMAGE', 'http://homemakerfurniturestore.com/image/');
define('HTTP_ADMIN', 'http://homemakerfurniturestore.com/admin/');
// HTTPS
define('HTTPS_SERVER', 'https://homemakerfurniturestore.com/');
define('HTTPS_IMAGE', 'https://homemakerfurniturestore.com/image/');
When I log in as a shopper, the url is secure :"https://homemakerfurniturestore.com/index.php?route=account/account"
I can add a product to the shopping cart, but if I click on the shopping cart link it takes me to: "http://homemakerfurniturestore.com/index.php?route=checkout/cart"
This causes the message " Your Shopping Cart is Empty."
What is causing the link to the shopping cart to not be https ?
If I hand edit the link for the shopping cart to be https:// it recognizes the items I added.