I had change the enable_ssl setting in admin\includes\configure.php:
define('ENABLE_SSL_ADMIN', 'true');
define('ENABLE_SSL_CATALOG', 'true');
but there is no effect.
clear install, no any modification.
I had change the enable_ssl setting in admin\includes\configure.php:
define('ENABLE_SSL_ADMIN', 'true');
define('ENABLE_SSL_CATALOG', 'true');
but there is no effect.
clear install, no any modification.
.
Zen Cart - putting the dream of business ownership within reach of anyone!
Donate to: DrByte directly or to the Zen Cart team as a whole
Remember: Any code suggestions you see here are merely suggestions. You assume full responsibility for your use of any such suggestions, including any impact ANY alterations you make to your site may have on your PCI compliance.
Furthermore, any advice you see here about PCI matters is merely an opinion, and should not be relied upon as "official". Official PCI information should be obtained from the PCI Security Council directly or from one of their authorized Assessors.
When I installed the zen cart, I have not SSL. So, I selected no SSL. Now, I install SSL and couldn't swtich the https on. All the links on admin end are http.
In admin/includes/configure.php
Generally speaking with 1.5.4 and below, if SSL is to be used then each of the four HTTPx_ settings at the top of the file are to have https: in them except the "third" one. Which is typically the HTTP_CATALOG_SERVER.
So for example:
Code:define('HTTP_SERVER', 'https://your_domain.com'); define('HTTPS_SERVER', 'https://your_domain.com'); define('HTTP_CATALOG_SERVER', 'http://your_domain.com'); define('HTTPS_CATALOG_SERVER', 'https://your_domain.com');
ZC Installation/Maintenance Support <- Site
Contribution for contributions welcome...
Thanks, mc12345678. I get it!
Another question, I set all server definition as https (2 in including and 4 in admin\including). All the internal links are https. If I manually set the https to http in the location bar and reload the page, in the admin end, url was redirected to https. However, in the frontend, page reload as http. What make the different between the backend and frontend? Does it means if I want https only, I should force to redirect in .htaccess?