Se dobbiamo convertire un installazione Prestashop da HTTP a HTTPS (o anche vice-versa) e non abbiamo l’accesso al pannello di amministrazione (perchè senza HTTPS non ci permette di accedere) possiamo intervenire nel database.
La tabella che ci interessa è : ps_configuration
I campi da modificare sono : PS_SSL_ENABLED e PS_SSL_ENABLED_EVERYWHERE.
Per attivare HTTPS:
update ps_configuration set value = ‘1’ where name = ‘PS_SSL_ENABLED’;
update ps_configuration set value = ‘1’ where name = ‘PS_SSL_ENABLED_EVERYWHERE’;
Per disattivare HTTPS:
update ps_configuration set value = ‘0’ where name = ‘PS_SSL_ENABLED’;
update ps_configuration set value = ‘0’ where name = ‘PS_SSL_ENABLED_EVERYWHERE’;
Seguici su:
Potrebbero Interessarti anche:
- Google Mobile First Index – Il tuo sito web è pronto?
- Google Webmaster – Improve the search presence of Your Site
- Google Maps introduce funzione Messaggi
- Effetto TikTok: perché le aziende dovrebbero essere sulla piattaforma?
- Ottimizzazione dei contenuti SEO: Scegli come target parole chiave pertinenti
Per maggiori informazioni, per suggerimenti e ottenere un preventivo gratuito per le tue esigenze, contatta la nostra Web Agency.
Il nostro staff di professionisti sarà lieto di fornire tutte le informazioni ed i costi riguardanti il servizio.
Attenzione : Webx.it non è un servizio di helpdesk “gratuito” a cui chiedere informazioni.
Fonti : How to enable/disable SSL for Prestashop, Prestashop disable https, https Prestashop, Prestashop https





