when doing the following:
Step 2: Update the Configuration file
After the SSL certificate is installed, the “configure.php” file has to be updated to enable SSL. The code shown below is the configuration options in the “configure.php” file. The ‘ENABLE_SSL’ constant must be set to true and in the “HTTPS_SERVER” the “https” protocol must be used.
<?php
define('HTTP_SERVER', '
www.thewebsite.com');
define('HTTPS_SERVER', '
www.thewebsite.com');
define('ENABLE_SSL',
true);
define('HTTP_COOKIE_DOMAIN', '
www.thewebsite.com');
define('HTTPS_COOKIE_DOMAIN', '
www.thewebsite.com');
?>
the admin does not load at all and the front end does not open under ssl ....its still without secured connect....any ideas???????