后端magento system.xml

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了后端magento system.xml相关的知识,希望对你有一定的参考价值。

我是magento的新手,我有很多问题。我正在尝试在后端添加一个新部分,但是当我进入System-> Configuration时,我收到错误:

'This page is not working'

的system.xml

<config>
<tabs>
    <packt>
        <label>Packt</label>
        <sort_order>400</sort_order>
    </packt>
</tabs>
<sections>
    <helloworld translate="label" module="helloworld">
        <label>Helloworld</label>
        <tab>packt</tab>
        <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>
        <groups>
        </groups>
    </helloworld>
</sections>

我必须说,如果我删除system.xml,系统 - >配置工作。

system.xml路径是:

应用程序/代码/本地/年底Packt /的HelloWorld的/ etc /的system.xml

adminhtml.xml也无法正常工作,因为它返回一个空的magento管理页面。我做错了什么?

答案

试试这段代码:

<?xml version="1.0" encoding="UTF-8"?>
<config>
        <tabs>
            <packt translate="label">
                <label>Packt</label>
                <sort_order>400</sort_order>
            </packt>
        </tabs>
        <sections>
            <helloworld translate="label" module="helloworld">
                <label>Helloworld</label>
                <tab>packt</tab>
                <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>

                <groups>
                    <options translate="label" module="helloworld">
                        <label>Configuration</label>
                        <frontend_type>text</frontend_type>
                        <sort_order>20</sort_order>
                        <show_in_default>1</show_in_default>
                        <show_in_website>1</show_in_website>
                        <show_in_store>1</show_in_store>
                        <fields>
                            <mytext translate="label">
                                <label>My Text</label>
                                <frontend_type>text</frontend_type>
                                <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>
                            </mytext>
                        </fields>
                    </options> 
                 </groups>
            </helloworld>
        <sections>
     </config>

以上是关于后端magento system.xml的主要内容,如果未能解决你的问题,请参考以下文章

Magento的SEO丰富片段

使用 chrome 浏览器登录后端时 Magento 显示错误

Magento使用网格创建管理(后端)模块

用于不安全地址更改的致命错误 Magento 后端

xml 缓存后端#redis #magento(local.xml)

如何判断 Magento 请求是针对前端页面还是后端页面?