2013-03-09 84 views

回答

1

在/應用/ etc/modules中你有Mage_Module.xml文件 在這個文件中,你有一個真正激活節點,其設置爲false;)

就是這樣

0

幾個模塊可以禁用但不是全部。 例如法師核心不應該被禁用。

同時禁用任何模塊檢查是否有其他模塊依賴於此模塊。因爲依賴的模塊也將被禁用。

e.g在Mage_Module.xml

<Mage_Customer> 
    <active>true</active> 
    <codePool>core</codePool> 
    <depends> 
     <Mage_Eav/> 
     <Mage_Dataflow/> 
     <Mage_Directory/> 
    </depends> 
</Mage_Customer> 

改變這

<Mage_Customer> 
    <active>flase</active> 
    <codePool>core</codePool> 
    <depends> 
     <Mage_Eav/> 
     <Mage_Dataflow/> 
     <Mage_Directory/> 
    </depends> 
</Mage_Customer> 

將禁用客戶模塊。

+0

我寧願推薦在'app/etc/module/Your_Own.xml'中執行該操作,只需在同一個xml結構中複製要禁用的節點,並將活動更改爲非活動狀態。這樣,即使您進行升級,您的模塊也不會被更新重新啓用 – 2016-02-11 17:32:26