magento admin system configuration 404
magento admin configuration 404 error
There may be few reasons which throws the above error .
1. Cache Issue-
-Flush Magento Cache.
-Logout .
-Login Again.
2 . You Have not Defined the acl in config.php file. Make Sure You have added the field in acl.
example :
<acl> <resources> <admin> <children> <system> <children> <config> <children> <yourconfigsetting translate="title"> <title>Settings </title> <sort_order>100</sort_order> </yourconfigsetting> </children> </config> </children> </system> </children> </admin> </resources> </acl>
Your Fields should be defined in the acl children tag as :
<yourconfigsetting translate="title"> <title>Settings </title> <sort_order>100</sort_order> </yourconfigsetting>
Define the values and again clear cache, logout and login .
It Will Work As expected.