Magento: Access Denied errors after installing SUPEE-6285 or since Magento 1.9.2.1 – ACL Error – 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'); //e.g. 'admin/sales/productreturn'</pre>
}
Please share this article von facebook & google plus or where you want, thank you!

Kostenlose Open-Source Content-Management- (CMS), Blog-, Foren-, Groupware-, Portal- oder andere Systeme gibt es mittlerweile wie Sand am Meer. Den Überblick zu behalten ist eine Sache, jeweils eine Demo-Installation aufzusetzen um die Funktionalitäten des Systems im Detail zu analysieren, eine andere. Wer nicht gerade sein Urlaub oder andere kostbare Zeit damit verbringen möchte, dem empfehlen wir die Seite 
