I am using v1.3.9b

Everything was fine. Now I installed the https and I can't add things to my shopping cart! I get this message when I add something:

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?


Why is it saying this when everything is supposed to be secure?

Now It doesn't recognize my account that I set up earlier! I did a resend password and it says the email address is not on file.. it is! I also try to create a new account and it keep on bouncing to the same sign up page!

Did I set up the https wrong? Some don't have https: is that ok, I just follow the ssl instructions.

This is the Admin Configure.php

// Define the webserver and path parameters
// Main webserver: eg-http://www.testingmysite1bc.com -
// HTTP_SERVER is your Main webserver: eg-http://www.testingmysite1bc.com
// HTTPS_SERVER is your Secure webserver: eg-https://www.testingmysite1bc.com
// HTTP_CATALOG_SERVER is your Main webserver: eg-http://www.testingmysite1bc.com
// HTTPS_CATALOG_SERVER is your Secure webserver: eg-https://www.testingmysite1bc.com
/*
* URLs for your site will be built via:
* HTTP_SERVER plus DIR_WS_ADMIN or
* HTTPS_SERVER plus DIR_WS_HTTPS_ADMIN or
* HTTP_SERVER plus DIR_WS_CATALOG or
* HTTPS_SERVER plus DIR_WS_HTTPS_CATALOG
* ...depending on your system configuration settings
*
* If you desire your *entire* admin to be SSL-protected, make sure you use a "https:" URL for all 4 of the following:
*/
define('HTTP_SERVER', 'https://testingmysite1bc.com');
define('HTTPS_SERVER', 'https://testingmysite1bc.com');
define('HTTP_CATALOG_SERVER', 'https://testingmysite1bc.com');
define('HTTPS_CATALOG_SERVER', 'https://testingmysite1bc.com');

// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'true');


This is the Includes/configure.php

// Define the webserver and path parameters
// HTTP_SERVER is your Main webserver: eg-http://www.your_domain.com
// HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com
define('HTTP_SERVER', 'http://testingmysite1bc.com');
define('HTTPS_SERVER', 'https://testingmysite1bc.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', '/store/');
define('DIR_WS_HTTPS_CATALOG', '/store/');