also this is how i have my config.php files:
// 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://getyourwebstore.com');
define('HTTPS_SERVER', 'https://getyourwebstore.com');
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'true');
and the one in admin folder:
define('HTTP_SERVER', 'http://getyourwebstore.com');
define('HTTPS_SERVER', 'https://getyourwebstore.com');
define('HTTP_CATALOG_SERVER', 'http://getyourwebstore.com');
define('HTTPS_CATALOG_SERVER', 'https://getyourwebstore.com');
// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'true');
Here is the actual cart site I am working on:
https://getyourwebstore.com/trumystic
Is there more to do than this???



