Last Updated: February 25, 2016
·
1.227K
· ekupelian

Magento: list enabled/disabled XML module's files

If you want to know which Magento modules have been disabled via their XML file just get in the console and type the following line to get only the files:

{document_root}/app/etc/modules# grep -li "false" *

The opposite will work just fine too:

{document_root}/app/etc/modules# grep -li "true" *