Hello:

I am having trouble with my SSL. I am using a shared SSL certificate. I thought I had both configure files set up correctly but I am still getting an error that the website does not supply ownership information and that the connection is not encrypted. When I place https://www.mygiftsite.com into the address bar the site map shows up. I am able to go to the actual site by clicking on “Home.”

The define path parameters that I have set up for includes/configure.php are:

define('HTTP_SERVER', 'http://www.mygiftsite.com');
define('HTTPS_SERVER', 'URL for my certificate’);

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

The define path parameters that I have set up for admin/includes/configure.php are:

define('HTTP_SERVER', 'http://www.mygiftsite.com');
define('HTTPS_SERVER', 'URL for my certificate');
define('HTTP_CATALOG_SERVER', 'http://www.mygiftsite.com');
define('HTTPS_CATALOG_SERVER', 'https://www.mygiftsite.com');

// secure webserver for admin? Valid choices are 'true' or 'false' (including quotes).
define('ENABLE_SSL_ADMIN', 'true');

// secure webserver for storefront? Valid choices are 'true' or 'false' (including quotes).
define('ENABLE_SSL_CATALOG', 'true');


I apparently don’t have this set correctly or something else is wrong. Can someone put me on the right path?

Thanks much for your help,

Silver