cancel
Showing results for 
Search instead for 
Did you mean: 

Changed HTTPS post and now my dashboard crashed

SOLVED

Changed HTTPS post and now my dashboard crashed

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!

erro magento.PNGThe 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)

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Changed HTTPS post and now my dashboard crashed

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.

---
Problem Solved Click Accept as Solution!:Magento Community India Forum

View solution in original post

2 REPLIES 2

Re: Changed HTTPS post and now my dashboard crashed

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.

---
Problem Solved Click Accept as Solution!:Magento Community India Forum

Re: Changed HTTPS post and now my dashboard crashed


@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!