In my application I have created an ErrorController with the default
errorAction to handle the exception related to invalid controllers, invalid
action and other. Earlier this was working fine but now it sis not working
fine. I think this is due to the ACL and/or Router plugin which I have
injected before final dispatch in the front controller. Can any one suggest,
how I can resolve this issue? 

I have explicitly redirected the User to the errorAction of the
errorController by defining the code as follows in one of my Action
controller file (indexController)..

function __call ($function, $args)
{
 $URL = "/module/lang/error/error";
 $this->_redirect($URL);
}

But the above code is going to the Default case in errorAction in
errorController and NOT in ..

Case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_CONTROLLER: and/or ..

Case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_ACTION:  


Kindly advice ..


-- 
View this message in context: 
http://www.nabble.com/Issue-with-default-error-handler---Zend_Controller_Plugin_ErrorHandler-tf4279184s16154.html#a12179935
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to