我正在使用 本文在 Zend Framework 中开发一个“hello world”应用程序。
我遇到这个问题:
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
有什么问题吗?
您似乎没有正确设置
set_include_path()
来指向 Zend 库所在的基本目录。仅从 .zip 文件(从 Zend Framework 站点下载)解压 framweork 是不够的,您需要的库目录位于该文件的子目录中。
通过这个
完成了