Hello,
I'm having with a site running on v1.3.8.
I have SSL enabled and I'm also redirecting all requests to http://optimumos.com to https://www.optimumos.com with a .htacess file located in the public_html directory per these instructions http://kb.siteground.com/article/How...ugh_HTTPS.html.
If I go to a product detail page and select "add this to my cart" button, I get the message:
"Although this page is encrypted, the information you have entered is to be sent over an unencrypted connection and could easily be read by a third party.
Are you sure you want to continue sending this information?"
When I hit "Yes", I get the message "Your Shopping Cart is empty." and the product is not added to the cart.
I can add items to the shopping cart successfully as long as it's not from the product detail page. If I just use a blank .htaccess file without the redirection code, I can add products to the shopping cart from the product detail page without issue.
I've searched and read a lot of threads regarding similar issues and I've tried the solutions, but I'm still having the problem.
Here's an excerpt from my admin/includes/configuration.php file:
define('HTTP_SERVER', 'https://www.optimumos.com');
define('HTTPS_SERVER', 'https://www.optimumos.com');
define('HTTP_CATALOG_SERVER', 'https://www.optimumos.com');
define('HTTPS_CATALOG_SERVER', 'https://www.optimumos.com');
// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'true');
// NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
// * DIR_WS_* = Webserver directories (virtual/URL)
// these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
define('DIR_WS_ADMIN', '/admin/');
define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_ADMIN', '/admin/');
define('DIR_WS_HTTPS_CATALOG', '/');
Here's an excerpt from my includes/configuration.php file:
define('HTTP_SERVER', 'http://optimumos.com');
define('HTTPS_SERVER', 'https://www.optimumos.com');
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'true');
// NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes!
// * DIR_WS_* = Webserver directories (virtual/URL)
// these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder)
define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');
Thanks in advance for your help.



