is it possible to set-up so the store so it does not switch back and forth between the http: and https: state?
i.e. the store is http: unless at the login page or checkout page (and further)
and http: when logged in but just browsing the store ~ again until checkout is clicked on the cart page.
i’m thinking as a user it would be nice once logged in it remained in the https: state
perhaps unnecessary, but it does lead me to think the customer would see it dropping out of secure to non-secure and perhaps draw the wrong conclusion that the site is not secure.
~ a lateral thought came to me that i could just define
PHP Code:
define('HTTP_SERVER', 'http://www.mydomain.co.uk');
define('HTTPS_SERVER', 'https://www.mydomain.co.uk');
to
PHP Code:
define('HTTP_SERVER', 'https://www.mydomain.co.uk');
define('HTTPS_SERVER', 'https://www.mydomain.co.uk');
(in configure.php)
but thought i’d ask first
Bookmarks