I have a SSL certificate which is mapped to "hobbyhillfarm.com" NOT "www.hobbyhillfarm.com"
I have since upgraded my zen-cart to v1.3.8
the full url to store is:
http://www.hobbyhillfarm.com/store/
I am only getting https for login, not all /admin/ pages.
What am I missing ??
I read something on in this forum about a symlink to/from /ssl.
Is this something I need to confirm ?? and how-to ??
Quote:
From:
http://tutorials.zen-cart.com/index.php?article=14
How do I enable SSL after I have installed Zen Cart?
NOTE: As of v1.3.x, the Admin area can only secure the "login" page via SSL unless you set the HTTP_SERVER in your "admin/includes/configure.php" to an SSL URL, in which case the entire admin area will be treated as SSL rather than only selected relevant pages....
includes/configure.php
Code:
define('HTTP_SERVER', 'http://www.hobbyhillfarm.com');
define('HTTPS_SERVER', 'https://hobbyhillfarm.com');
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'true');
define('DIR_WS_CATALOG', '/store/');
define('DIR_WS_HTTPS_CATALOG', '/store/');admin/includes/configure.php
Code:
define('HTTP_SERVER', 'http://www.hobbyhillfarm.com');
define('HTTPS_SERVER', 'https://hobbyhillfarm.com');
define('HTTP_CATALOG_SERVER', 'http://www.hobbyhillfarm.com');
define('HTTPS_CATALOG_SERVER', 'https://hobbyhillfarm.com');
// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'true');
define('DIR_WS_ADMIN', '/store/admin/');
define('DIR_WS_CATALOG', '/store/');
define('DIR_WS_HTTPS_ADMIN', '/store/admin/');
define('DIR_WS_HTTPS_CATALOG', '/store/');
Bookmarks