Disable Magento Modules
From Brian Nelson Ramblings
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>