To enable SSL in PrestaShop 1.7, go to
Admin > Shop Parameters > General
On this page, you need to set YES for Enable SSL. After saving, you can enable “Enable SSL on all pages”.
Using phpMyAdmin/MySQL
You can run following SQL query to enable SSL.
select * from ps_configuration where name="PS_SSL_ENABLED"; select * from ps_configuration where name="PS_SSL_ENABLED_EVERYWHERE"; update ps_configuration set value="1" where name="PS_SSL_ENABLED"; update ps_configuration set value="1" where name="PS_SSL_ENABLED_EVERYWHERE";
See PrestaShop
Leave a Reply