Recently the SSL have expired, so I tried to change it on Configuration>web>HTTPS and the URL Base for: "http://" and it broke completly my dashboard with HTML. I've retried to login again, but now I can't save or do anything!
If anyone can help me out, I would be so grateful, I don't know what else to do!
The Save button just dosen't work. I've already tried to enable flash, enter the Http:// before (but when I do this, just tell me that the site cannot open)
Solved! Go to Solution.
Hi @lucas_graf
You can check browser console to see if there are any errors.
To revert back to previous state d o as following.
You should run following query in MySql to get the details from core_config_data table
select * from core_config_data where path like '%base_url%';
then accordingly update using following query
UPDATE `core_config_data` SET `value`='http://www.example.com/' WHERE path = 'web/unsecure/base_url' AND config_id ='' UPDATE `core_config_data` SET `value`='https://www.example.com/' WHERE path = 'web/secure/base_url' AND config_id =''
In above query value will contain your website address and config_id you will get from first query.
Hi @lucas_graf
You can check browser console to see if there are any errors.
To revert back to previous state d o as following.
You should run following query in MySql to get the details from core_config_data table
select * from core_config_data where path like '%base_url%';
then accordingly update using following query
UPDATE `core_config_data` SET `value`='http://www.example.com/' WHERE path = 'web/unsecure/base_url' AND config_id ='' UPDATE `core_config_data` SET `value`='https://www.example.com/' WHERE path = 'web/secure/base_url' AND config_id =''
In above query value will contain your website address and config_id you will get from first query.
@Mukesh Tiwari wrote:Hi @lucas_graf
You can check browser console to see if there are any errors.
To revert back to previous state d o as following.
You should run following query in MySql to get the details from core_config_data table
select * from core_config_data where path like '%base_url%';then accordingly update using following query
UPDATE `core_config_data` SET `value`='http://www.example.com/' WHERE path = 'web/unsecure/base_url' AND config_id ='' UPDATE `core_config_data` SET `value`='https://www.example.com/' WHERE path = 'web/secure/base_url' AND config_id =''In above query value will contain your website address and config_id you will get from first query.
Thanks, I'll try it out and as soon as I have results, I'll respond it!