gaugeboson Posted April 21, 2008 Share Posted April 21, 2008 Warning: Zend_Loader::include_once(Zend\Config\Ini.php) [function.Zend-Loader-include-once]: failed to open stream: No such file or directory in C:\xampp\htdocs\phpweb20\include\Zend\Loader.php on line 83 Warning: Zend_Loader::include_once() [function.include]: Failed opening 'Zend\Config\Ini.php' for inclusion (include_path='.;C:\xampp\php\pear\') in C:\xampp\htdocs\phpweb20\include\Zend\Loader.php on line 83 Warning: Zend_Loader::require_once(Zend/Exception.php) [function.Zend-Loader-require-once]: failed to open stream: No such file or directory in C:\xampp\htdocs\phpweb20\include\Zend\Loader.php on line 87 Fatal error: Zend_Loader::require_once() [function.require]: Failed opening required 'Zend/Exception.php' (include_path='.;C:\xampp\php\pear\') in C:\xampp\htdocs\phpweb20\include\Zend\Loader.php on line 87 This is the output of my index page. I don't really know where to go from here! Link to comment https://forums.phpfreaks.com/topic/102212-zend-configuration-problem/ Share on other sites More sharing options...
hitman6003 Posted April 21, 2008 Share Posted April 21, 2008 your include path isn't set correctly...where is the zend library installed at? set_include_path("/full/path/to/zend/directory" . PATH_SEPARATOR . get_include_path()); Link to comment https://forums.phpfreaks.com/topic/102212-zend-configuration-problem/#findComment-523439 Share on other sites More sharing options...
gaugeboson Posted April 22, 2008 Author Share Posted April 22, 2008 The Zend folder is located here: C:\xampp\htdocs\phpweb20\include\Zend I started over again and got this error message: Warning: require_once(Zend/Loader.php) [function.require-once]: failed to open stream: No such file or directory in C:\xampp\htdocs\phpweb20\htdocs\index.php on line 2 Fatal error: require_once() [function.require]: Failed opening required 'Zend/Loader.php' (include_path='.;C:\xampp\php\pear\') in C:\xampp\htdocs\phpweb20\htdocs\index.php on line 2 <?php require_once('Zend/Loader.php'); Zend_Loader::registerAutoload(); I change the file(don't know if it matters) to the full path: C:\xampp\htdocs\phpweb20\include\Zend\loader.php Doing that created this error then: Warning: Zend_Loader::include_once(Zend\Config\Ini.php) [function.Zend-Loader-include-once]: failed to open stream: No such file or directory in C:\xampp\htdocs\phpweb20\include\Zend\Loader.php on line 83 Warning: Zend_Loader::include_once() [function.include]: Failed opening 'Zend\Config\Ini.php' for inclusion (include_path='.;C:\xampp\php\pear\') in C:\xampp\htdocs\phpweb20\include\Zend\Loader.php on line 83 Warning: Zend_Loader::require_once(Zend/Exception.php) [function.Zend-Loader-require-once]: failed to open stream: No such file or directory in C:\xampp\htdocs\phpweb20\include\Zend\Loader.php on line 87 Fatal error: Zend_Loader::require_once() [function.require]: Failed opening required 'Zend/Exception.php' (include_path='.;C:\xampp\php\pear\') in C:\xampp\htdocs\phpweb20\include\Zend\Loader.php on line 87 Link to comment https://forums.phpfreaks.com/topic/102212-zend-configuration-problem/#findComment-523565 Share on other sites More sharing options...
hitman6003 Posted April 22, 2008 Share Posted April 22, 2008 So, you didn't set the include path using the code I provided? And it's still not working..... Link to comment https://forums.phpfreaks.com/topic/102212-zend-configuration-problem/#findComment-524331 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.