Bonjour,
Après recherche sur le forum sans succès.. j'ai créé ce post pour les raison suivante: j'ai un souci dans mon projet voici mon erreur:
je vous joint la ligne 384 dans Application.php
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2 Invalid controller specified (js)\n#0 /home/vagrant/web/.git/externals/zend/src/Zend/Controller/Front.php(954): Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http), Object(Zend_Controller_Response_Http))\n#1 /home/vagrant/web/.git/externals/zend/src/Zend/Application/Bootstrap/Bootstrap.php(105): Zend_Controller_Front->dispatch()\n#2 /home/vagrant/web/.git/externals/zend/src/Zend/Application.php(384): Zend_Application_Bootstrap_Bootstrap->run()\n#3 /home/vagrant/web/.git/externals/library/src/module/Application/start.php(254): Zend_Application->run()\n#4 /home/vagrant/web/public/index.php(29): require('/home/vagrant/w...')\n#5 {main}
et ligne 254 de start.php
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10 /** * Run the application * * @return void */ public function run() { $this->getBootstrap()->run(); }
er a la ligne 29 dans index.php:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6 if (MACQ_APPLICATION_RUN) { $application->run(); macq_trigger_hook('run', array($application)); }
merci pour vos réactions.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3 chdir('../'); require 'library/monmodule/Application/start.php';
Partager