我正在通过this文章
在zend框架中开发hello world app我遇到了这个问题
Warning: require_once(Zend/Loader/Autoloader.php) [function.require-once]: failed to open stream: No such file or directory in C:\wamp\www\helloworld\index.php on line 11
Fatal error: require_once() [function.require]: Failed opening required 'Zend/Loader/Autoloader.php' (include_path='C:\wamp\www\helloworld/library;.;C:\php5\pear') in C:\wamp\www\helloworld\index.php on line 11
这个autoloader.php在哪里我已经包含了库文件夹。
如果我评论自动加载器类行并运行,则会出现此错误。
.;C:\php5\pear // this is my set_include_path();
Fatal error: Class 'Zend_Controller_Front' not found in C:\wamp\www\helloworld\index.php on line 17
请帮帮我解决问题。
谢谢
答案 0 :(得分:1)
您似乎没有正确设置set_include_path()
以指向Zend库所在的基目录。只是从.zip文件(从Zend Framework站点下载)解压缩framweork是不够的,你需要的库目录是在它的子目录中。
答案 1 :(得分:0)
由this
完成