It does not look like you have your certificate installed correctly
as adding htpps to your domain times out & no lock
https ://www.shopshogun.com
See the highlights I added and remove/correct
Code:
/ Define the webserver and path parameters
// HTTP_SERVER is your Main webserver: eg-http://www.your_domain.com
// HTTPS_SERVER is your Secure webserver: eg-https://www.your_domain.com
define('HTTP_SERVER', 'http://www.shopshogun.com');
define('HTTPS_SERVER', 'https://(www.)shopshogun.com');
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'true');
admin config:
* If you desire your *entire* admin to be SSL-protected, make sure you use a "https:" URL for all 4 of the following:
*/
define('HTTP_SERVER', 'http://www.shopshogun.com');
define('HTTPS_SERVER', 'https://(www.)shopshogun.com');
define('HTTP_CATALOG_SERVER', 'http://'.$_SERVER['HTTP_HOST']);
define('HTTPS_CATALOG_SERVER', 'https://'.$_SERVER['HTTP_HOST']);
// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'false');
define('ENABLE_SSL_ADMIN', 'true');