Quote Originally Posted by cune View Post
Hi,
I have problem with shared SSL.
I set it up like this:
// Define the webserver and path parameters
define('HTTP_SERVER', 'http://www.YOUR_SHOP.com');
define('HTTPS_SERVER', 'https://YOUR_SECURE_SERVER.net/YOUR_USERNAME');
define('ENABLE_SSL', 'true');
And same in Admin config.

Everything works fine. I got redirected on login page to https but when i go back to http i am automaticlly logged out. Same goes for admin area.
Any idea?
Thanks
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