Currently, my includes/configure.php
Code:
define('HTTP_SERVER', 'http://www.*********.com');
define('HTTPS_SERVER', 'https://www.*********.com');
define('ENABLE_SSL', 'true');
I should make the HTTP_SERVER to be 'https'? So it would be as this:
Code:
define('HTTP_SERVER', 'https://www.*********.com');
define('HTTPS_SERVER', 'https://www.*********.com');
define('ENABLE_SSL', 'true');
Bookmarks