I modified the base URL of the magento and it disappeared

0

I created a virtual store everything in meudominio.com.br/aroma2/ma_pharmacy/ and now I wanted to change everything to only dominio.com.br .

I was in configuração/web and I changed the base URL thinking that it would work, but besides the site disappears I can not access the magento's admin anymore.

What do I do now? I lost all my work?

    
asked by anonymous 06.06.2014 / 16:03

2 answers

1

Check the app_config_data table Change urls in hand if needed.

Just one question, is your ecommerce in a directory within another website? if this is the case you will have to create a sub-domain and redirect your domain to it

I hope I have helped

    
29.07.2014 / 22:01
0

Good afternoon,

It is possible to cache, delete the files in the var / cache folder and also clear your browser's cache.

Open your database and TRUMCATE the following tables: log_url log_url_info log_visitor log_visitor_info

If you have entered the wrong URL, you can change it by running the following SQL in your database:

UPDATE core_config_data SET value = 'http://urlteste.com.br/' WHERE path = 'web/unsecure/base_url'; 

UPDATE core_config_data SET value = 'http://urlteste.com.br/' WHERE path = 'web/secure/base_url';

After these procedures test your store again.

    
06.08.2014 / 20:47