Difference between revisions of "Disable Magento Modules"
From Brian Nelson Ramblings
(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...") |
(No difference)
|
Latest revision as of 18:10, 25 March 2013
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>