Okay so I have installed Zen Cart, everything works perfectly, and now another problem came. I have followed the guidelines for SSL configuration for the two files listed in the manual. And after I configured them and uploaded them, nothing happens. Even when I checkout or go to admin area, still no SSL is working. While when I type https://www.mysite.com, I see a lock in the web browser and all. I have bought a dedicated SSL 128bit. Please help me here, I tried lots of ways to fix this problem, still nothing.
ZenCart 1.38a
includes/dist-configure.php
// Define the webserver and path parameters
// HTTP_SERVER is your Main webserver: eg-http://www.yourdomain.com
// HTTPS_SERVER is your Secure webserver: eg-https://www.yourdomain.com
define('HTTP_SERVER', 'http://www.mysite.com');
define('HTTPS_SERVER', 'https://www.mysite.com');
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'true');
admin/includes/dist-configure.php
define('HTTP_SERVER', 'http://www.mysite.com');
define('HTTPS_SERVER', 'https://www.mysite.com');
define('HTTP_CATALOG_SERVER', 'http://www.mysite.com');
define('HTTPS_CATALOG_SERVER', 'https://www.mysite.com');
// secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'true');




