3

I have accidentally disabled all of the modules from System>Configuration>Advanced. Now I can't access to my site or the admin panel. Both of them display a blank page. After that, I have found the database file from phymyadmin and run the following query:

DELETE FROM core_config_data WHERE path LIKE 'advanced/modules_disable_output/%'

But no luck. My site as well as the Admin panel is still blank. Can anyone please help me with that?

4
  • check core resource table if you want to add or upgarde , and update core_config_data and put disable_output/% to 0 Commented Jan 5, 2017 at 7:08
  • What should I check there? Can you please be specific? I am a newbie in Magento Commented Jan 5, 2017 at 7:09
  • Please Check Following file : App->etc->module->mage_All.xml. set <active>true</active> for all module Commented Jan 5, 2017 at 7:13
  • I have already tried that before. It won't enable the module until we enable it from the database. Commented Jan 5, 2017 at 7:20

1 Answer 1

3

Try to check the core_config_data table in your database:

SELECT * FROM core_config_data WHERE path LIKE "advanced/modules_disable_output/%"

I guess there will be "1" in the "value" column. Change it to "0" for modules you want to be enabled. Then you'll probably need to clear caches - not sure if you can do it via backend but you can still delete files under your var/cache folder if you are using file cache storage.

7
  • I described on my problem that I can't access my Admin panel. It's completely blank. So, there 's no way to enable the modules from Admin panel Commented Jan 5, 2017 at 7:12
  • go for edited answer Commented Jan 5, 2017 at 7:13
  • I have so many folders under var/cache. Approx. 16 folders. Should I delete them all for clearing the cache? Commented Jan 5, 2017 at 7:17
  • ya you can delete all the folders Commented Jan 5, 2017 at 7:19
  • is it solve your problem? Commented Jan 5, 2017 at 7:28

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.