Uncaught exception 'Zend_Controller_Dispatcher_Exception'

18,570

Solution 1

In index.php file write

$frontController->setParam('useDefaultControllerAlways', true);
$frontController->dispatch();

Alternatively you can write following line in [production] section of application.ini file:

resources.frontController.params.useDefaultControllerAlways = 1

Solution 2

You have probably (re)moved/edited the ErrorController.php file, which can be found in

/application/controllers/

An other possibility is that you have configured your application to look after an not-existing Error controller.

Solution 3

Zend is looking for the view script inside the /application/views/scripts directory. If you do not want to use automatic rendering, then in the controller class use:

public function init()
{
    $this->_helper->viewRenderer->setNoRender();
}

This will stop automatic rendering and your problem will be solved.

Solution 4

I got a same error ,and then i find out the reason,it's just a syntax error in my code.

Share:
18,570
Admin
Author by

Admin

Updated on June 18, 2022

Comments

  • Admin
    Admin almost 2 years

    I am getting the following error on zend framework:

    Fatal error: Uncaught exception 'Zend_Controller_Dispatcher_Exception' with message 'Invalid controller specified (error)' in F:\wamp\www\helloworld\library\Zend\Controller\Dispatcher\Standard.php:245 
    Stack trace: 
    #0 F:\wamp\www\helloworld\library\Zend\Controller\Front.php(946):Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http), Object(Zend_Controller_Response_Http))  
    #1 F:\wamp\www\helloworld\library\Zend\Controller\Front.php(212): Zend_Controller_Front->dispatch()  
    #2 F:\wamp\www\helloworld\web_root\index.php(10): Zend_Controller_Front::run('../application/...')  
    #3 {main} thrown in F:\wamp\www\helloworld\library\Zend\Controller\Dispatcher\Standard.php on line 245
    

    What is causing this, and how can I fix it?