
Originally Posted by
kobra
Edit the 2 configure.php files and toward the top where the domain is defined as
http and https
Change the http entries to https
Hi thanks for the reply 
forgot to mention I'd already tried that:
changed includes/configure.php to:
Code:
// 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', 'https://mywebsite.com/trade');
define('HTTPS_SERVER', 'https://mywebsite.com/trade');
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'true');
and changed admin/includes/configure.php to:
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', 'https://mywebsite.com/trade');
define('HTTPS_SERVER', 'https://mywebsite.com/trade');
define('HTTP_CATALOG_SERVER', 'https://mywebsite.com/trade');
define('HTTPS_CATALOG_SERVER', 'https://mywebsite.com/trade');
// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'true');
And still after that the category links etc are all still http
Bookmarks