Disable Magento Modules
From Brian Nelson Ramblings
Revision as of 18:10, 25 March 2013 by Brian (Talk | contribs) (Created page with "==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 r...")
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>
After you are done with your debugging, just switch it back to false
<disable_local_modules>false</disable_local_modules>