Good Day,
I see this has been asked a lot in the internet, but no clear way to resolve it. I am hoping someone here can help..
C:\htdocs\liveC:/htdocs
Warning: require_once(library/Zend/Loader.php) [function.require-once]: failed to open stream: No such file or directory in C:\htdocs\live\db_test.php on line 7
Fatal error: require_once() [function.require]: Failed opening required 'library/Zend/Loader.php' (include_path='.;C:\zend\ZendServer\share;C:\zend\ZendServer\share\ZendFramework\library;C:\htdocs') in C:\htdocs\live\db_test.php on line 7
It would appear that the paths are messed up, but I did change the include paths. Jut does not find any php includes.
Sample Code Used:
<?
echo getcwd();
echo $_SERVER['DOCUMENT_ROOT'];
require_once( "library/Zend/Loader.php" );
Zend_Loader::registerAutoload();
$test = new Zend_Config_Ini();
include_once("damin.php")
or die("no");
?>
The damin.php file is in the SAME directory as the test_db.php file (code above), the Loader.php is in a completely different location.
Any suggestions?