web-dev-qa-db-ja.com

設定パネルにアクセスしようとすると、Magento system.xmlと404エラー

カスタムモジュールのいくつかの構成設定を実装しようとしています。左のナビゲーションバーにタブとセクションを追加できました。しかし、セクションを開きたい場合、詳細情報なしで404エラーページが表示されます。

これまでのところ、私はそれを機能させるために何でも試しました。たぶんあなたの誰かが私が間違っていることを私に説明することができます。

俺の adminhtml.xml

<?xml version="1.0" ?>
<config>
    <resources>
        <admin>
            <children>
                <system>
                    <children>
                        <config>
                            <children>
                                <tempest_section translate="title" module="Tempest">
                                    <title>Tempest</title>
                                </tempest_section>
                            </children>
                        </config>
                    </children>
                </system>
            </children>
        </admin>
    </resources>
</config>

俺の config.xml

<?xml version="1.0"?>

<config>
    <modules>
        <Polyvision_Tempest>
            <version>0.1.0</version>
        </Polyvision_Tempest>
    </modules>


    <global>
        <helpers>
            <Tempest>
                <class>Polyvision_Tempest_Helper</class>
            </Tempest>  
        </helpers>
    </global>        

    <admin>
        <routers>
            <adminhtml>
                <args>
                    <modules>
                        <tempest before="Mage_Adminhtml">Polyvision_Tempest_Adminhtml</tempest>
                    </modules>
                </args>
            </adminhtml>
        </routers>
    </admin>


    <adminhtml>
        <menu>
            <menu1 translate="title" module="Tempest">
                <title>polyvision</title>
                <sort_order>60</sort_order>
                <children>
                    <menuitem1 module="Tempest">
                        <title>Tempest - Export</title>
                        <action>adminhtml/tempest_main</action>
                    </menuitem1>
                </children>                
            </menu1>
        </menu>
    </adminhtml>    

    <default>
        <tempest>
            <settings>
                <export_directory>/tmp/</export_directory>
            </settings>
        </tempest>
    </default>
</config>

俺の system.xml

<?xml version="1.0" ?>
<config>
    <tabs>
        <polyvision module="Tempest" translate="label">
            <label>polyvision</label>
            <sort_order>100</sort_order>
        </polyvision>
    </tabs>
    <sections>
        <tempest_section module="Tempest" translate="label">
            <label>Tempest-Einstellungen</label>
            <sort_order>200</sort_order>
            <show_in_default>1</show_in_default>
            <show_in_website>1</show_in_website>
            <show_in_store>1</show_in_store>
            <tab>polyvision</tab>
            <groups>
                <settings translate="label">
                    <label>Settings</label>
                    <comment></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>
                        <export_directory 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_input>text</frontend_input>
                        <source_model>adminhtml/system_config_text</source_model>
                    </export_directory>
                </fields>
            </settings>
        </groups>
    </tempest_section>
</sections>

まあ、私のモジュール自体は手間をかけずに動作します。管理設定のみが機能していません:/

36
ghostrifle

Admin Consoleクロムの404である場合、問題はACLロールが欠落していることです。 設定方法に関するこの記事 を読んでください。 (セルフリンク)

また、ACLロールを設定した後、Magentoセッションをクリアする必要があります。 Magentoはセッション内の特定のロールをキャッシュし、スーパーセッションロールを持つユーザーのキャッシュに新しいセッションが自動的に追加されることはありません。

74
Alan Storm

こんにちはconfig.xmlのアクションタグに何か問題があると思います。

<action>adminhtml/tempest_main</action>

間違っていなければ、これはapp/code/core/Mage/Adminhtmlにあるadminhtmlモジュールを参照します。

モジュールの名前は何ですか?また、コントローラーフォルダーには何がありますか?.

アクションの最初のビットはコントローラーの名前であり、次に管理コントローラーとアクションのパスであると信じています

アクションタグは次の方法で構築されます。

<action>matrixrate/adminhtml_index/index</action>
       |--module--|--controller---|-action-|

HTH

2
Gabriel Spiteri

Config.xmlでacl許可を与えます。

<adminhtml>
        <acl>
            <resources>
                <all>
                    <title>Allow Everything</title>
                </all>
                <admin>
                    <children>
                        <system>
                            <children>
                                <config>
                                    <children>
                                        <tab_name>
                                            <title>Module - All</title>
                                        </tab_name>
                                    </children>
                                </config>
                            </children>
                        </system>
                    </children>
                </admin>
            </resources>
        </acl>
    </adminhtml>

キャッシュをフラッシュし、ログアウトしてから再度ログインします。

0
biplab rout