inc/config.php
Code:
// Define the webserver and path parameters
// 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://www.<website>.com');
define('HTTPS_SERVER', 'https://www.<website>.com');
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'true');
admin/inc/configure.php
Code:
* 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', 'http://www.<website>.com');
define('HTTPS_SERVER', 'https://www.<website>.com');
define('HTTP_CATALOG_SERVER', 'http://www.<website>.com');
define('HTTPS_CATALOG_SERVER', 'https://www.<website>.com');
// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'true');
MAKE SURE BOTH FILES ARE WRITEABLE BEFORE UPLOADING TO FTP