My hosting company proved that I have SSL certificate installed on my server, but I can't enable secure connection on my site.
My hosting company proved that I have SSL certificate installed on my server, but I can't enable secure connection on my site.
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',
$config['https_path'] = '';
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