2

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

  1. Re-logging into the dashboard.
  2. Using ACL.
  3. Clearing var/session/* and var/cache/*

Code(system.xml):

enter image description here

Code(adminhtml.xml):

enter image description here

Mohit Kumar Arora
10.2k7 gold badges29 silver badges57 bronze badges
asked May 14, 2019 at 5:26
1
  • 1
    Add code, not screenshot Commented May 14, 2019 at 6:33

2 Answers 2

1

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.

answered May 14, 2019 at 13:11
0
0

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>
 ........
answered May 14, 2019 at 5:39
1
  • thanks for your response but Mage_CancelPendingOrder_Helper_Data error on the changeing module name Commented May 14, 2019 at 5:47

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.