我是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-&gt; Configuration就可以了。
system.xml路径为:
应用程序/代码/本地/年底Packt /的HelloWorld的/ etc /的system.xml
adminhtml.xml也无效,因为它返回一个空的magento管理页面。我做错了什么?
答案 0 :(得分:0)
试试这段代码:
<?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>