Skip to content

Instantly share code, notes, and snippets.

@agrogeek
Created September 30, 2021 05:35
Show Gist options
  • Save agrogeek/46984bf40566a3291575c5d0dfa8387e to your computer and use it in GitHub Desktop.
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.
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