Details
Description
I've enabled the fallback autoloader in my application bootstrap.
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap {
protected function _initFallbackAutoload() {
Zend_Loader_Autoloader::getInstance()
->setFallbackAutoloader(true)
;
}
[...]
}
This leads to the following error messages.
Warning: include(Module/Bootstrap.php) [function.include]: failed to open stream: No such file or directory in /path/to/library/Zend/Loader.php on line 83
Warning: include() [function.include]: Failed opening 'Module/Bootstrap.php' for inclusion (include_path='/path/to/library:.:/usr/local/lib/php') in /path/to/library/Zend/Loader.php on line 83
Warning: include(FrontController.php) [function.include]: failed to open stream: No such file or directory in /path/to/library/Zend/Loader.php on line 83
Warning: include() [function.include]: Failed opening 'FrontController.php' for inclusion (include_path='/path/to/library:.:/usr/local/lib/php') in /path/to/library/Zend/Loader.php on line 83
But the module bootstrap and the front controller would be loaded.
I have same problem, I think you have to have also set suppressNotFoundWarnings(false) for "global" autoloader to see this warnings.