문제

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

도움이 되었습니까?

해결책

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top