Php 在zend框架中开发helloworld应用程序

Php 在zend框架中开发helloworld应用程序,php,zend-framework,Php,Zend Framework,我正在zend框架中开发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.req

我正在zend框架中开发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在哪里?我已经包含了library文件夹

如果我对autoloader类行进行注释并运行,则会出现此错误

.;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文件(从站点下载)解压framweork是不够的,您需要的库目录位于该文件的子目录中

通过完成

好的,我已经将库设置为subdirectroy,但是这个zend/loader/autoloader.php在哪里?以及为什么找不到zend_控制器_front。