Skip to content

Instantly share code, notes, and snippets.

@mzeis
Created September 26, 2013 20:29
Show Gist options
  • Save mzeis/6720067 to your computer and use it in GitHub Desktop.
Save mzeis/6720067 to your computer and use it in GitHub Desktop.
Shrink Magento by deactivating core modules. File list: - app/etc/modules/Zzz_Emzee.xml - README.md

I was just playing around with CE 1.8 and tested how many of the more important modules (catalog, checkout, sales, ...) you can deactivate without running into apparent problems. Turns out: pretty much all of them.

I'll put the list of my deactivated modules here just in case I want to move my blog from WordPress to Magento sometime. :P

This would be a healty base for general purpose websites. If you want you could disable even more modules.

<?xml version="1.0"?>
<config>
<modules>
<Mage_AdminNotification>
<active>false</active>
</Mage_AdminNotification>
<Mage_Api>
<active>false</active>
</Mage_Api>
<Mage_Api2>
<active>false</active>
</Mage_Api2>
<Mage_Authorizenet>
<active>false</active>
</Mage_Authorizenet>
<Mage_Backup>
<active>false</active>
</Mage_Backup>
<Mage_Bundle>
<active>false</active>
</Mage_Bundle>
<Mage_Captcha>
<active>false</active>
</Mage_Captcha>
<Mage_Catalog>
<active>false</active>
</Mage_Catalog>
<Mage_CatalogIndex>
<active>false</active>
</Mage_CatalogIndex>
<Mage_CatalogInventory>
<active>false</active>
</Mage_CatalogInventory>
<Mage_CatalogRule>
<active>false</active>
</Mage_CatalogRule>
<Mage_CatalogSearch>
<active>false</active>
</Mage_CatalogSearch>
<Mage_Centinel>
<active>false</active>
</Mage_Centinel>
<Mage_Checkout>
<active>false</active>
</Mage_Checkout>
<Mage_Compiler>
<active>false</active>
</Mage_Compiler>
<Mage_Connect>
<active>false</active>
</Mage_Connect>
<Mage_CurrencySymbol>
<active>false</active>
</Mage_CurrencySymbol>
<Mage_Customer>
<active>false</active>
</Mage_Customer>
<Mage_Downloadable>
<active>false</active>
</Mage_Downloadable>
<Mage_GiftMessage>
<active>false</active>
</Mage_GiftMessage>
<Mage_GoogleCheckout>
<active>false</active>
</Mage_GoogleCheckout>
<Mage_ImportExport>
<active>false</active>
</Mage_ImportExport>
<Mage_Log>
<active>false</active>
</Mage_Log>
<Mage_Newsletter>
<active>false</active>
</Mage_Newsletter>
<Mage_Oauth>
<active>false</active>
</Mage_Oauth>
<Mage_Paygate>
<active>false</active>
</Mage_Paygate>
<Mage_Payment>
<active>false</active>
</Mage_Payment>
<Mage_Paypal>
<active>false</active>
</Mage_Paypal>
<Mage_PaypalUk>
<active>false</active>
</Mage_PaypalUk>
<Mage_Persistent>
<active>false</active>
</Mage_Persistent>
<Mage_Poll>
<active>false</active>
</Mage_Poll>
<Mage_ProductAlert>
<active>false</active>
</Mage_ProductAlert>
<Mage_Rating>
<active>false</active>
</Mage_Rating>
<Mage_Reports>
<active>false</active>
</Mage_Reports>
<Mage_Review>
<active>false</active>
</Mage_Review>
<Mage_Rss>
<active>false</active>
</Mage_Rss>
<Mage_Rule>
<active>false</active>
</Mage_Rule>
<Mage_Sales>
<active>false</active>
</Mage_Sales>
<Mage_SalesRule>
<active>false</active>
</Mage_SalesRule>
<Mage_Sendfriend>
<active>false</active>
</Mage_Sendfriend>
<Mage_Shipping>
<active>false</active>
</Mage_Shipping>
<Mage_Sitemap>
<active>false</active>
</Mage_Sitemap>
<Mage_Tag>
<active>false</active>
</Mage_Tag>
<Mage_Tax>
<active>false</active>
</Mage_Tax>
<Mage_Usa>
<active>false</active>
</Mage_Usa>
<Mage_Weee>
<active>false</active>
</Mage_Weee>
<Mage_Wishlist>
<active>false</active>
</Mage_Wishlist>
<Mage_XmlConnect>
<active>false</active>
</Mage_XmlConnect>
<Phoenix_Moneybookers>
<active>false</active>
</Phoenix_Moneybookers>
<Zzz_Emzee>
<active>true</active>
<codePool>community</codePool>
</Zzz_Emzee>
</modules>
</config>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment