为什么我无法使用系统配置高级禁用模块?

时间:2012-10-29 22:48:56

标签: magento

我现在面对这个问题了很长时间。我无法使用config-> Advanced(不禁用输出)禁用模块。 选择禁用并保存后,输出仍会显示。

每次我必须跳到代码中才能禁用它。

有谁知道问题是什么?

2 个答案:

答案 0 :(得分:2)

您需要在位置/app/etc/modules

的xml文件中执行以下操作
<?xml version="1.0"?>
<config>
    <modules>
        <Magentocustmod_HideEmptyCategories>
            <active>true</active>
            <codePool>local</codePool>
        </Magentocustmod_HideEmptyCategories>
    </modules>
</config>

现在在代码中将<active>true</active>更改为<active>false</active>

答案 1 :(得分:1)

您可能需要刷新缓存才能禁用模块输出

请注意:所有后端都会禁用输出,而不是模块本身。

要禁用模块本身,您需要转到app / etc / modules中的模块XML文件并将活动标记变为'false'