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...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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>