After migrating to from ZF 1.0.4 to ZF 1.5.0, the controllers in my modules, which extend the controllers in the default module, are unable to load.
My layout:
app\default\controllers\IndexController.php: classname IndexController extends BaseController)
app\module1\controllers\IndexController (classname Module1_IndexController extends IndexController)
This results in:"Class 'IndexController' not found in DIR\module1\controllers\IndexController.php"
In my bootstrap I have properly added the controller directory to the frontend controller using. Did something concerning the naming conventions for modules change? It resembles the problem discussed in
this thread. Switching back to ZF 1.0.4 solved this issue. Any tips?