Created
September 30, 2021 05:35
-
-
Save agrogeek/46984bf40566a3291575c5d0dfa8387e to your computer and use it in GitHub Desktop.
Deshabilitar HTTPS (SSL) desde la base de datos en instalación de Prestashop. Revisar también .htaccess. To disable HTTPS (SSL) from data base in Prestashop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UPDATE `ps_configuration` | |
SET `value` = 0 | |
WHERE `name` = 'PS_SSL_ENABLED'; | |
UPDATE `ps_configuration` | |
SET `value` = 0 | |
WHERE `name` = 'PS_SSL_ENABLED_EVERYWHERE'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment