Windows (dev) to Linux (prod) Zend Framework Migration Errors

I am getting the following error porting my code from my windows dev machine to my linxu production machine. I know there are always delimiter and case sensitivity issues (which I have fixed), however it seems to be coming from the Framework itself.

My controllers follow the convention (top top camel).

I am using bootstrap provided by Zend_App and it all works (well, no errors) in my dev box.

Its collapsible plugins don't seem to be able to get into controllers.

Any ideas would be great. :-)


Fatal error: Uncaught exception 'Zend_Controller_Dispatcher_Exception' with message 'Invalid controller specified (error)' in /****mywebroot***/library/Zend/Controller/Dispatcher/Standard.php:242 Stack trace: #0 //****mywebroot***/library/Zend/Controller/Front.php(946): Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http), Object(Zend_Controller_Response_Http))
#1 /****mywebroot***/library/Zend/Application/Bootstrap/Bootstrap.php(77): Zend_Controller_Front->dispatch() #2 /****mywebroot***/public/index.php(26): Zend_Application->run() #4 {main} thrown in /****mywebroot***/library/Zend/Controller/Dispatcher/Standard.php on line 242

      


I hope this is the main mistake

+2


source to share


1 answer


Triple check in case of filename and directory where your controllers are located.



This particular exception can also be caused by the absence of a default controller.

+2


source







All Articles