If I try to access my admin panel using the https:// URL, it redirects to the http:// URL.
Any ideas why this is happening?
Https works fine on the catalog side (when checking out), and the configure looks to be ok as well.
This is a discussion on https:// Admin redirects to http:// within the osCmax v2 Installation issues forums, part of the osCmax v2.0 Forums category; If I try to access my admin panel using the https:// URL, it redirects to the http:// URL. Any ideas ...
If I try to access my admin panel using the https:// URL, it redirects to the http:// URL.
Any ideas why this is happening?
Https works fine on the catalog side (when checking out), and the configure looks to be ok as well.
You do not have the http (yes http, not https) url set correctly in the admin/includes/configure.php. The http url should be set to the actual ssl url. This will keep it from switching to non-ssl.
Michael Sasek
osCMax Developer
osCmax installation service - Have our professionals install osCmax on your server - same day service!
osCmax 2.0 User Manual - the must have beginners guide to osCmax v2.0
Stay Up To Date with everything osCMax:
Free osCMax Newsletters - Security notices, New Releases, osCMax News
osCMax on Twitter - Up to the minute info as it happens. Know it first.
osCmax Documentation
Thanks for the quick reponse, but unfortunately that doesn't fix the problem. Now, it just redirects to the http: version of the https URL. Here's my defines in admin/includes/configure.php:
define('HTTP_SERVER', 'http://driwashnguard.biz/atoolcrib');
define('HTTP_CATALOG_SERVER', 'http://driwashnguard.biz/atoolcrib');
define('HTTPS_CATALOG_SERVER', 'https://driwashnguard.biz/atoolcrib/');
define('ENABLE_SSL_CATALOG', 'true');
You did not do what I suggested.
Change this :
define('HTTP_SERVER', 'http://driwashnguard.biz/atoolcrib');
to this:
define('HTTP_SERVER', 'https://driwashnguard.biz/atoolcrib');
Michael Sasek
osCMax Developer
osCmax installation service - Have our professionals install osCmax on your server - same day service!
osCmax 2.0 User Manual - the must have beginners guide to osCmax v2.0
Stay Up To Date with everything osCMax:
Free osCMax Newsletters - Security notices, New Releases, osCMax News
osCMax on Twitter - Up to the minute info as it happens. Know it first.
osCmax Documentation
Bookmarks