The Secure Connection Check Has Failed

My hosting company proved that I have SSL certificate installed on my server, but I can't enable secure connection on my site.

Warning
The secure connection check has failed. Please check HTTPS settings in the "config.php" file and make sure that SSL certificate is installed on your server.

1. check if the ssl certificate is installed for your domain name at https://www.sslshopper.com/ssl-checker.html

2. check your 'config.local.php' file and the line 71-72:

// Host and directory where software is installed on secure server
$config['https_host'] = '%HTTPS_HOST%';
$config['https_path'] = '%HOST_DIR%';

3. check your ssl settings in your CS-Cart admin area

Thanks for the help.

I have the following in my 'config.local.php',

// Host and directory where software is installed on secure server
$config['https_host'] = 'www.mysite.com';
$config['https_path'] = '';
What should I change it to?
$config['https_path'] = '';

If it's installed in the web root, then the path is right. What's about the point 1 and 3 I mentionted before?

[attachment=12692:Screenshot_2.jpg]


https://www.sslshopper.com/ssl-checker.html

Screenshot_2.jpg

The SSL Checker shows that a SSL certificate is installed for my domain but when I select to "Enable secure connection at checkout" in the admin, the Warning message pops up after I chick Save.

I'm still running CS-Cart 2.2.4, does it have anything to do with this problem?

Thanks for the help.

I have the following in my 'config.local.php',

// Host and directory where software is installed on secure server
$config['https_host'] = 'www.mysite.com';
$config['https_path'] = '';
What should I change it to?

// Host and directory where software is installed on no-secure server
$config['http_host'] = 'www.yoursite.com';
$config['http_path'] = '';

// Host and directory where software is installed on secure server
$config[‘https_host’] = ‘www.yoursite.com’;
$config[‘https_path’] = ‘’;

Make database backup and open the following file

addons/seo/schemas/settings/actions.post.php

change

		if (strpos($result[0]['RESPONSE'], '200 OK') === false) {
			$new_value = 'D';
			fn_set_notification('W', fn_get_lang_var('warning'), fn_get_lang_var('warning_seo_urls_disabled'));
		}

with

/*		
		if (strpos($result[0]['RESPONSE'], '200 OK') === false) {
			$new_value = 'D';
			fn_set_notification('W', fn_get_lang_var('warning'), fn_get_lang_var('warning_seo_urls_disabled'));
		}
*/

and check the result