Yeah that's one of the problems - when you click login and go to the actual secure login page the 'Log In' and 'Register Links' point to non-secure versions, click the links to view the non-secure version and on the non-secure version they point to the secure version. Like you say clicking submit from secure takes you to unsecure and vice versa.
Here's my config files, which are the two files I've changed to enable SSL
----- /htdocs/admin/includes/configure.php
*/
define('HTTP_SERVER', 'http://dksales.co.uk');
define('HTTPS_SERVER', 'https://secure9.prositehosting.co.uk/secure-zone');
define('HTTP_CATALOG_SERVER', 'http://dksales.co.uk');
define('HTTPS_CATALOG_SERVER', 'https://secure9.prositehosting.co.uk/secure-zone');
// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'true');
----- and /htdocs/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://dksales.co.uk');
define('HTTPS_SERVER', 'https://secure9.prositehosting.co.uk/secure-zone');
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'true');
Have I missed a step or maybe need to check another file?
Thanks again for your help, really appreciated![]()



. Like you say clicking submit from secure takes you to unsecure and vice versa.

