You must have just missed something when editing your configure files, as you don't move ANY file to get your SSL to work.
In includes/configure.php, use settings as shown below:
Code:
// HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com
define('HTTP_SERVER', 'http://www.your_site.com');
define('HTTPS_SERVER', 'https://www.your_site.com');
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'true');
In admin/includes/configure.php use settings as shown below:
Code:
define('HTTP_SERVER', 'http://www.your_site.com');
define('HTTPS_SERVER', 'https://www.your_site.com');
define('HTTP_CATALOG_SERVER', 'http://www.your_site.com');
define('HTTPS_CATALOG_SERVER', 'https://www.your_site.com');
// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'true');
That's all there is to it. If it still doesn't work, contact your hosting provider to make sure you have a DEDICATED IP Address, AND that your cert is installed correctly on the server.