05-03-2009, 08:04 AM
|
#1 (permalink)
|
|
The Prestige
Join Date: Dec 2007
Posts: 1,044
Thanks: 193
|
Zend_Loader fails.
I'm getting into Zend Framework and so far I'm loving it, but.. I cannot load any classes cause of the Zend_Loader having problems with the inclusion paths, I've tried many different ways of doing this including changing the file's directory location, set inclusion paths, everything, no go.
I fail to see why replacing the underlines with trailing slashes is such a good idea for loading classes..
My current code:
Code:
require_once( "library/Zend/Loader.php" );
Zend_Loader::registerAutoload();
$test = new Zend_Config_Ini();
My Errors:
Code:
Warning: Zend_Loader::include_once(Zend\Config\Ini.php) [zend-loader.include-once]: failed to open stream: No such file or directory in \library\Zend\Loader.php on line 83
Warning: Zend_Loader::include_once() [function.include]: Failed opening 'Zend\Config\Ini.php' for inclusion (include_path='.;C:\php5\pear') in \library\Zend\Loader.php on line 83
Warning: Zend_Loader::require_once(Zend/Exception.php) [zend-loader.require-once]: failed to open stream: No such file or directory in \library\Zend\Loader.php on line 87
Fatal error: Zend_Loader::require_once() [function.require]: Failed opening required 'Zend/Exception.php' (include_path='.;C:\php5\pear') in \library\Zend\Loader.php on line 87
__________________
VillageIdiot can have my babbies ;d
|
|
|
|