I started building my site without SSL Certificate and I was able to build and run the site without any problem.
Since I was getting ready to go live, I purchased a dedicated SSL certificate from my hosting company and got it installed. The certificate is issued for "shinypetstore.com" and not "www.shinypetstore.com".
I followed the recommendation from tutorial and made the following changes to my config.php files as follow:
For include directory I changed the following:
define('HTTP_SERVER', 'http://www.shinypetstore.com');
define('HTTPS_SERVER', 'https://shinypetstore.com');
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'true');
and for admin/include directory I changed the following:
define('HTTP_SERVER', 'http://www.shinypetstore.com');
define('HTTPS_SERVER', 'https://shinypetstore.com');
define('HTTP_CATALOG_SERVER', 'http://www.shinypetstore.com');
define('HTTPS_CATALOG_SERVER', 'https://shinypetstore.com');
define('ENABLE_SSL', 'true');
// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'true');
Now, when I type either www.shinypetstore.com or shinypetstore.com I get redirected to https://shinypetstore.com and everything looks good. However, when I try to add a product to cart or under admin I try to make a change I get this error 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?"
and the system ignores my changes!
What am I doing wrong? Do I need to make additional changes?
I appreciate your help.



)
but love to help where I can

