システム構成でカスタムグループとフィールドを作成中に404 not foundエラーが発生しました


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>

私のセクションのURLは

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 14年

回答:


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

2
実際、私はaclリソースを設定していました。しかし、私はログアウトしてログインしませんでした。現在は正常に動作しています。ありがとう
zamil

ありがとう、fmrng。これは私を助けました。以前の私は... ACLリソースのタグの一部に欠落していた
Pavanクマー
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.