How do I install my shared SSL with opencart 1.5
Posted: Fri Dec 02, 2011 10:08 am
Hi every one I would like to know exsactly what do I need to do to set up my shared SSL on opencart. I read I need to defin htt on configuration file and the admin. Then turn on the ssl on admin. My question is how do I define or what line in the configuration file do I need to change.
this is my SSL url
https://mydomain.myhost.com/
now this is my configuration file
do I change it to this?
thank you
this is my SSL url
https://mydomain.myhost.com/
now this is my configuration file
Code: Select all
// HTTP
define('HTTP_SERVER', 'http://mydomain/');
define('HTTP_IMAGE', 'http://mydomain/image/');
define('HTTP_ADMIN', 'http://mydomain/admin/');
// HTTPS
define('HTTPS_SERVER', 'http://mydomain/');
define('HTTPS_IMAGE', 'http://mydomain/image/');
Code: Select all
// HTTP
define('HTTP_SERVER', 'http://mydomain/https://mydomain.myhost.com/');
define('HTTP_IMAGE', 'http://mydomain/image/https://mydomain.myhost.com/');
define('HTTP_ADMIN', 'http://mydomain/admin/https://mydomain.myhost.com/');
// HTTPS
define('HTTPS_SERVER', 'http://mydomain/https://mydomain.myhost.com/');
define('HTTPS_IMAGE', 'http://mydomain/image/https://mydomain.myhost.com/');