If you enabled secure connection under Settings → Security in the administration panel, you might get the following warning:
Important
Warning: The secure connection check has failed. Please ensure that SSL certificate is installed on your server. Check out the Documentation article for more details.
Follow these steps to resolve the issue:
Use the 2 links below, replacing www.your_store.com with your domain name:
http://www.your_store.com/store_closed.html
https://www.your_store.com/store_closed.html
If the opened pages have the same content, it means that SSL certificate is installed on the server. If you see the Not Found error (404 page), but your browser indicates the page as viewed through a secure connection, then there is probably a separate secure directory on your server, and it does not point to the regular web root directory.
If your server is Unix-based and the secure directory is on the same server as the public_html directory, there must be a symbolic link in the secure directory to public_html: that way you only need one CS-Cart installation on your server for both HTTP and HTTPS.
If your server is Windows-based, or your secure directory is on a different server, it is required to copy all the files of the existing CS-Cart installation from the regular server to the secure one. Don’t make a new CS-Cart installation for that purpose. Both CS-Cart installations must have access to the same MySQL database.
Note
It is inconvenient to have 2 separate CS-Cart installations:
// Host and directory where software is installed on non-secure server
$config['http_host'] = 'YOUR_HTTP_DOMAIN';
$config['http_path']= '/store';
// Host and directory where software is installed on secure server
$config['https_host'] = 'YOUR_HTTPS_DOMAIN';
$config['https_path'] = '/your_secure_directory';
Questions & Feedback
Have any questions that weren't answered here? Need help with solving a problem in your online store? Want to report a bug in our software? Find out how to contact us.