
Originally Posted by
RobWUK
The following is from my 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://www.mywebsite.co.uk');
define('HTTPS_SERVER', 'https://www.mywebsite.co.uk');
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'true');
and then my youadminfolder/includes/configure.php
define('HTTP_SERVER', 'http://www.mywebsite.co.uk');
define('HTTPS_SERVER', 'https://www.mywebsite.co.uk');
define('HTTP_CATALOG_SERVER', 'http://www.mywebsite.co.uk');
define('HTTPS_CATALOG_SERVER', 'https://www.mywebsite.co.uk');
// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'true');
Rob, hope that helps a little