accidentalmente seleccione la opcion de https force y ahora no puedo acceder, busque en la base de datos ost_config y no aparece force_http, he visto que recomiendan la query UPDATE ost_config SET value = '' WHERE key = 'force_https'; pero busque en esa tabla y no existe, podrian ayudarme?
Https force
- Edited
It would definitely be in the ost_config
table and would definitely be by the key
of force_https
. You can even sort by the updated
column to make things easier.
Cheers.
- Best Answerset by KevinTheJedi
obtuve una solución con la siguiente consulta: SELECT * FROM ost_config WHERE key
LIKE '%https%';
luego le hice el cambio con la query: UPDATE ost_config SET value
= 'off' WHERE key
= 'force_https'; y me funciona muchas gracias por tu ayuda.