Help needed with ssl configuration
I have a SSL certificate which is mapped to "hobbyhillfarm.com" NOT "www.hobbyhillfarm.com"
My cart is access from http://www.hobbyhillfarm.com/cart/
When trying to checkout, the cart does not change to https (ssl)
To see what I'm talking about, I setup a test category with a widget for sale.
SSL does work for the site.
Code:cut-n-paste from /cart/includes/configure.php // Define the webserver and path parameters // Main webserver: eg, http://localhost - should not be empty for productive servers define('HTTP_SERVER', 'http://www.hobbyhillfarm.com'); // Secure webserver: eg, https://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://hobbyhillfarm.com'); // secure webserver for checkout procedure? define('ENABLE_SSL', 'TRUE'); // NOTE: be sure to leave the trailing '/' at the end of these lines if you make changes! // * DIR_WS_* = Webserver directories (virtual/URL) // these paths are relative to top of your webspace ... (ie: under the public_html or httpdocs folder) define('DIR_WS_CATALOG', '/cart/'); define('DIR_WS_HTTPS_CATALOG', '/cart/');Code:cut-n-paste from /cart/admin/includes/configure.php // Define the webserver and path parameters // Main webserver: eg, http://localhost - should not be empty for productive servers define('HTTP_SERVER', 'http://www.hobbyhillfarm.com'); // Secure webserver: eg, https://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://hobbyhillfarm.com'); // eg, https://localhost define('HTTP_CATALOG_SERVER', 'http://www.hobbyhillfarm.com'); define('HTTPS_CATALOG_SERVER', 'https://hobbyhillfarm.com'); define('ENABLE_SSL', 'TRUE'); // secure webserver for catalog module and/or admin areas? define('ENABLE_SSL_CATALOG', 'TRUE'); define('ENABLE_SSL_ADMIN', 'TRUE');



