Disable Magento Modules

From Brian Nelson Ramblings
Jump to: navigation, search

Disable All Local Magento Modules

If you are looking to disable all your local modules for debugging. You need to edit your local.xml

 vim app/etc/local.xml

Now just replace the false to with true

<disable_local_modules>false</disable_local_modules>
<disable_local_modules>true</disable_local_modules>

Disable-local-modules.png

After you are done with your debugging, just switch it back to false

<disable_local_modules>false</disable_local_modules>