I have a problem that I haven't been able to find the answer for in this forum. I would really appreciate any ideas on where to go next!
I am trying to configure shared SSL for checkout. So far, I have modified the admin/includes/configure.php and includes/configure.php files. I have also enabled SSL. The https path was given to me by the host. Here is the pertinent part of the includes/configure.php file.
--------------------------------------------------------
/ Define the webserver and path parameters
// HTTP_SERVER is your Main webserver: eg, http://www.yourdomain.com
// HTTPS_SERVER is your Secure webserver: eg, https://www.yourdomain.com
define('HTTP_SERVER', 'http://holistictree.com');
define('HTTPS_SERVER', 'https://secure.stormer.us/~holistic/store/');
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'true');
------------------------------------------------------
...and here is part of the admin/includes/configure.php file.
define('HTTP_SERVER', 'http://holistictree.com');
define('HTTPS_SERVER', 'https://secure.stormer.us/~holistic/store/');
define('HTTP_CATALOG_SERVER', 'http://holistictree.com');
define('HTTPS_CATALOG_SERVER', 'https://secure.stormer.us/~holistic/store/');
// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'false');
define('ENABLE_SSL_ADMIN', 'false');
----------------------------------------------------------
When I make these changes, I can use the https link to go directly to my store, but I lose all formatting on the page. Then, whenever I click any link on the page, I go back to an unseceure page. I get no other errors and everything seems to work OK, except I cannot get a secure connection on either login or checkout.
Thanks!






Bookmarks