0

我试图让 zend 框架运行,但包含路径不喜欢我;)
zend 目录在这里http://mydomain.com/zend/

<?php
set_include_path('/var/www/www.mydomain.com/htdocs/zend/library/');

require_once 'Zend/Gdata/Youtube.php';
require_once 'Zend/Loader.php'; // the Zend dir must be in your include_path

Zend_Loader::loadClass('Zend_Gdata_YouTube');
Zend_Loader::loadClass('Zend_Gdata_ClientLogin');

?>

我得到这个错误:

警告:require_once(Zend/Gdata/Youtube.php) [function.require-once]:无法打开流:/var/www/www.mydomain.com/htdocs/zend/index.php 中没有这样的文件或目录第 4 行

致命错误:require_once() [function.require]:无法在 /var 中打开所需的 'Zend/Gdata/Youtube.php' (include_path='/var/www/www.mydomain.com/htdocs/zend/library/') /www/www.mydomain.com/htdocs/zend/index.php 第 4 行

我在另一台可以运行的服务器上进行了类似的设置,但是这里一定有问题..

4

1 回答 1

1

我想你想要:

require_once 'Zend/Gdata/YouTube.php';

(注意大写 T)。它工作的其他服务器可能正在使用不区分大小写的文件系统。

于 2012-05-31T15:16:20.950 回答