I am using Version 1.3.8a and am having a heck of a time figuring out why the SSL function is not working on our site: www.btc-boutique.com/store.

The SSL is enabled and have modified the config.php code in both locations to read as follows:

Main config.php:

// HTTP_SERVER is your Main webserver: eg, http://www.yourdomain.com

// HTTPS_SERVER is your Secure webserver: eg, https://www.yourdomain.com

define('HTTP_SERVER', 'http://btc-boutique.com');

define('HTTPS_SERVER', 'https://btc-boutique.com');



// Use secure webserver for checkout procedure?

define('ENABLE_SSL', 'True');



Admin config.php:

define('HTTP_SERVER', 'http://btc-boutique.com');

define('HTTPS_SERVER', 'https://btc-boutique.com');

define('HTTP_CATALOG_SERVER', 'http://btc-boutique.com');

define('HTTPS_CATALOG_SERVER', 'https://btc-boutique.com');

// Use secure webserver for catalog module and/or admin areas?



define('ENABLE_SSL_CATALOG', 'true');



define('ENABLE_SSL_ADMIN', 'true');



It was working fine this morning before I went in and tried added the "www" to the domain so that it instead read:

define('HTTPS_CATALOG_SERVER', 'https://www.btc-boutique.com');

(unfortunately making that change made it so that the cart would not allow anyone to login, so I changed it back... and found out that despite undoing what I did.. the SSL no longer works.)

HELP!