0

Hi i have this zend framework project i already setup my web server and added the hosts on it when i tried to open the link on the browser this is what ive got and error message

Warning: require_once(Zend/Application.php) [function.require-once]: failed to open stream: No such file or directory in C:\xampp\htdocs\soomedia_test\website\htdocs\index.php on line 20

Fatal error: require_once() [function.require]: Failed opening required 'Zend/Application.php' (include_path='C:\xampp\htdocs\soomedia_test\website\library;;;.;C:\xampp\php\PEAR') in C:\xampp\htdocs\soomedia_test\website\htdocs\index.php on line 20

can someone help me figured this out the zend/application.php? where will i find this file?Any help is muchly appreciated.

maco
  • 27
  • 1
  • 3
  • 8

2 Answers2

2

This is happening because your system isn't finding Zend Framework library. Try to put the library under /yourproject/library

ital0
  • 334
  • 2
  • 8
  • Same issue that I had -- this works as Zend needs these files in the /project/library/ folder unless you change your /public/index.php file manually, @maco please mark the question as answered if it answered your question too. – Devon Kiss Mar 10 '15 at 06:10
0

Your new project doesn't have the zend folder. Simply copy the library/zend folder of your downloaded zend framework to your new project library/zend.

This will definitely solve your problem.

sth
  • 222,467
  • 53
  • 283
  • 367