我正在尝试运行zend框架,但是include路径不喜欢我;)
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]: 无法打开流:没有这样的文件或目录 第4行/var/www/www.mydomain.com/htdocs/zend/index.php
致命错误:require_once()[function.require]:打开失败 需要'Zend / Gdata / Youtube.php' (include_path ='/ var / www / www.mydomain.com / htdocs / zend / library /')in 第4行/var/www/www.mydomain.com/htdocs/zend/index.php
我在另一台服务器上有一个熟悉的设置,但这里有一些错误......
答案 0 :(得分:1)
我想你想要:
require_once 'Zend/Gdata/YouTube.php';
(注意大写字母T)。您工作的其他服务器可能使用不区分大小写的文件系统。