Question

I am creating a list of Enabled 3rd party modules in magento 1.

What is the quick way to find them & get it in note ?

Thankyou

Was it helpful?

Solution

Module enable or disable file here

app/etc/modules/Vendor_Module.xml

<?xml version="1.0"?>
<config>
<modules>
<Vendor_Module>
<active>true</active>
<codePool>local</codePool> // here local or community 
</Vendor_Module>
</modules>
</config>

You could browse through app/code/local and app/code/community. For each module go to etc/ and open config.xml.

and other way..

System -> Configuration -> Advanced -> Disable Modules Output

Licensed under: CC-BY-SA with attribution
Not affiliated with magento.stackexchange
scroll top