Hi: I've had the SSL installed on our website...
http://blinddogcoffee.com...and looks like https is working ok...
https://blinddogcoffee.com

The store is locatetd inside the zen directory...
http://blinddogcoffee.com/zen

Problem: When I click on "Go To Checkout" the "www" is dropped and my browser shows a Certificate Error. Example
https://blinddogcoffee.com/zen/index...ain_page=login

If I add "www" manually in the browser it looks fine
https://www.blinddogcoffee.com/zen/i...ain_page=login

Question: Have I done something wrong on my install? Or, did our hosting company install the SSL wrong? Here's my include config code for both files.

INCLUDE FILE CODE:
define('HTTP_SERVER', 'http://blinddogcoffee.com');
define('HTTPS_SERVER', 'https://blinddogcoffee.com');

// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'true');

ADMIN INCLUDE CODE:
define('HTTP_SERVER', 'http://blinddogcoffee.com');
define('HTTPS_SERVER', 'https://blinddogcoffee.com');
define('HTTP_CATALOG_SERVER', 'http://blinddogcoffee.com');
define('HTTPS_CATALOG_SERVER', 'https://blinddogcoffee.com');

// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'false');

Regards,
Mitch