Magento custom admin module 404 after security patch installation
Magento custom admin module 404 after security patch installation :
This error occurs when you install security patch. Because security path overrides the method is_allowed which return false.
Add the following method in your controller to override the default method to fix the 404 error.
protected function _isAllowed() { return true; }
Which will solve your problem.
Advertisements