编程语言
首页 > 编程语言> > php – ZendGdata框架路径设置错误

php – ZendGdata框架路径设置错误

作者:互联网

您好我正在使用ZendGdata-1.12.5框架在youtube上传视频

我在我的PHP代码中使用了以下内容

$path = './ZendGdata-1.12.5/library/';
set_include_path(get_include_path() . PATH_SEPARATOR . $path);

require_once('Zend/Loader.php');  

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

但似乎没有任何工作!救命 ?

PHP Warning: require_once(Zend/Xml/Security.php): failed to open
stream: No such file or directory in
/var/www/youtube_upload_video/ZendGdata-1.12.5/library/Zend/Gdata/App/Base.php
on line 30

PHP Fatal error: require_once(): Failed opening required
‘Zend/Xml/Security.php’
(include_path=’.:/usr/share/php:/usr/share/pear:./ZendGdata-1.12.5/library/’)
in
/var/www/youtube_upload_video/ZendGdata-1.12.5/library/Zend/Gdata/App/Base.php
on line 30

解决方法:

路径是正确的,问题是Zend Gdata库没有Zend / xml文件夹.这是一个包含2个文件的小文件夹.您需要做的就是:

1)转到:http://framework.zend.com/downloads/latest

2)下载1.12(或任何你的版本)MINIMAL包.

3)将其解压缩到硬盘上.

4)将/ library / Zend / Xml文件夹上传到服务器的/ZendGdata-1.12.5/library/文件夹,以便在/ZendGdata-1.12.5/library/Zend文件夹中有Xml文件夹.

5)就是这样.请享用.

标签:php,zend-framework,gdata
来源: https://codeday.me/bug/20190717/1491123.html