Note that there are some explanatory texts on larger screens.

plurals
  1. POZend Framework : Invalid contrller specified (error) ??? Help
    primarykey
    data
    text
    <p>I moved my project from windows to ubuntu and had this error while trying to run the project:</p> <pre><code>Fatal error: Uncaught exception 'Zend_Controller_Dispatcher_Exception' with message 'Invalid controller specified (error)' in /home/truong/webdev/qtcmsv2/library/Zend/Controller/Dispatcher/Standard.php:248 Stack trace: #0 /home/truong/webdev/qtcmsv2/library/Zend/Controller/Front.php(954): Zend_Controller_Dispatcher_Standard-&gt;dispatch(Object(Zend_Controller_Request_Http), Object(Zend_Controller_Response_Http)) #1 /home/truong/webdev/qtcmsv2/library/Zend/Application/Bootstrap/Bootstrap.php(97): Zend_Controller_Front-&gt;dispatch() #2 /home/truong/webdev/qtcmsv2/library/Zend/Application.php(366): Zend_Application_Bootstrap_Bootstrap-&gt;run() #3 /home/truong/webdev/qtcmsv2/index.php(56): Zend_Application-&gt;run() #4 {main} thrown in /home/truong/webdev/qtcmsv2/library/Zend/Controller/Dispatcher/Standard.php on line 248 </code></pre> <p>I did have ErrorController.php file in my default module :</p> <pre><code>class ErrorController extends Zend_Controller_Action { /** * This action handles * - Application errors * - Errors in the controller chain arising from missing * controller classes and/or action methods */ public function errorAction() { $errors = $this-&gt;_getParam('error_handler'); switch ($errors-&gt;type) { case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_CONTROLLER: case Zend_Controller_Plugin_ErrorHandler::EXCEPTION_NO_ACTION: // 404 error -- controller or action not found $this-&gt;getResponse()-&gt;setRawHeader('HTTP/1.1 404 Not Found'); $this-&gt;view-&gt;title = 'HTTP/1.1 404 Not Found'; break; default: // application error; display error page, but don't change // status code $this-&gt;view-&gt;title = 'Application Error'; break; } $this-&gt;view-&gt;message = $errors-&gt;exception; } } </code></pre> <p>My project ran very smoothly in Windows, but the error above always occurs when running in Ubuntu. How can I solve this problem?? Please help me! ps : Sorry for my bad English.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload