在系统配置中创建自定义组和字段时出现404找不到错误


14

我正在尝试为“自定义”标签下的“自定义”部分创建一个组和一些字段

标签和部分正在创建。但是当我单击内容区域中的部分时,它显示404 not found错误

我的system.xml文件如下

<config>
    <tabs>
        <!--node is just an identifier-->
        <animala translate="label" module="training_animal">
            <label>Training</label>
            <sort_order>1</sort_order>
        </animala>
    </tabs>
    <sections>
        <animals translate="label" module="training_animal">
            <class>seperator-top</class>
            <label>Training</label>
            <!--node vlaue should match the tabs node name-->
            <tab>animala</tab>
            <frontend_type>text</frontend_type>
            <sort_order>100</sort_order>
            <show_in_default>1</show_in_default>
            <show_in_website>1</show_in_website>
            <show_in_store>1</show_in_store>

            <groups>
                <training_animal_group translate="label">
                    <label>My Custom Group</label>
                    <comment>Some comment about my group</comment>
                    <sort_order>10</sort_order>
                    <show_in_default>1</show_in_default>
                    <show_in_website>1</show_in_website>
                    <show_in_store>1</show_in_store>
                    <fields>
                        <training_animal_field translate="label tooltip comment">
                            <label>My Custom Field</label>
                            <comment>Some comment about my field</comment>
                            <tooltip>Field ToolTip</tooltip>
                            <show_in_default>1</show_in_default>
                            <show_in_website>1</show_in_website>
                            <show_in_store>1</show_in_store>
                            <frontend_type>text</frontend_type>
                        </training_animal_field>
                    </fields>
                </training_animal_group>
            </groups>
        </animals>
    </sections>
</config>

我的部分的网址是

http://localhost/mage2/index.php/admin/system_config/edit/section/animal/

模块config.xml

<modules>
    <Training_Animal>
        <version>0.2.0</version>
    </Training_Animal>
</modules>

Training_Animal_Block

    <training_animal>
        <class>Training_Animal_Helper</class>
    </training_animal>

</helpers>


我要感谢参与此主题的每个人都为我提供了极大的帮助:)
Siliconrockstar 2014年

Answers:


31

您还应该为自定义系统配置组设置ACL资源。我假设您使用的是Magento> 1.5。在您的adminhtml.xmlapp/code/{codepool}/Training/Animal/etc/adminhtml.xml)中:

<config>
    <acl>
        <resources>
            <admin>
                <children>
                    <system>
                        <children>
                            <config>
                                <children>
                                    <animals translate="title" module="training_animal">
                                        <title>Animals</title>
                                        <sort_order>999</sort_order>
                                    </animals>
                                </children>
                            </config>
                        </children>
                    </system>
                </children>
            </admin>
        </resources>
    </acl>
</config>

在Magento的早期版本中,此信息存储在中config.xml


6
此外,添加此文件后,注销并再次登录,以使Magento刷新ACL规则。
fmrng 2013年

2
其实我已经设置了我的ACL资源。但是我没有注销并登录。现在工作正常。谢谢
zamil

谢谢。这对我有帮助。早些时候我缺少ACL资源中的某些标签...
Pavan Kumar 2014年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.