I am using Magento 1 to create a system configuration left menu is created successfully but when I click on that getting 404. what I have tried
- Re-logging into the dashboard.
- Using ACL.
- Clearing
var/session/*andvar/cache/*
Code(system.xml):
Code(adminhtml.xml):
-
1Add code, not screenshotSohel Rana– Sohel Rana2019年05月14日 06:33:11 +00:00Commented May 14, 2019 at 6:33
2 Answers 2
First, when you should replace each occurence of module='Ranosys_CancelPendingOrder' with module='the_alias_of_your_helper'. The alias is defined in your config.xml ine the helper section.
Then you should replace Ranosys with ranosys in your adminhtml file. (because the section is called ranosys in your system.xml file.
After changes, you have to clear cache and logout/login.
try to Change module="CancelPendingOrder"
Try to add below code in after adminhtml.xml
<?xml version="1.0"?>
<config>
<acl>
<resources>
<all>
<title>Allow Everything</title>
</all>
<admin>
........
-
thanks for your response but Mage_CancelPendingOrder_Helper_Data error on the changeing module nameAdarsh Shukla– Adarsh Shukla2019年05月14日 05:47:49 +00:00Commented May 14, 2019 at 5:47
Explore related questions
See similar questions with these tags.