After installing the SUPEE-6285 patch on our Magento 1.7.0.2 store the system is showing an "Access Denied" error when attempting to access all custom modules for users who have selective permissions (not all permissions). Screenshot below.
————————————————————————————–
Solution:
If you use restricted admin accounts, some menus of third party extensions might not work anymore for them. The reason is that the default return value of Mage_Adminhtml_Controller_Action::_isAllowed()
has been changed from true
to Mage::getSingleton('admin/session')->isAllowed('admin')
. Extensions that do not override this method in their admin controllers because they don't use the ACL, now need the "ALL"privilege.
The only solution is to patch the extensions and add this method to all their admin controllers:
protected function _isAllowed()
{
return true;
}
Or if they actually have an ACL resource defined in etc/adminhtml.xml
:
protected function _isAllowed()
{
return Mage::getSingleton('admin/session')->isAllowed('ENTER RESOURCE IDENTIFIER HERE');
}
How to determine the resource identifier
This is how an adminhtml.xml
might look like:
Take the node names below acl/resources/admin/children
, skipping following children
nodes.
How to create missing resource identifiers
If there is only a <menu>
definition but no <acl>
definition, you can also define your own (it does not have to be within the same module, so no 3rd party files have to be modified)::
Copy everything below menu
to acl/resources/admin/children
and remove the <action>
nodes.
Revisions
- April 5, 2016 @ 11:55:11 [Current Revision] by admin
- April 5, 2016 @ 11:55:11 by admin
No comments yet.