首页

源码搜藏网

首页 > 开发教程 > dede教程 >

dede(织梦)不能下载远程图片实现图片本地化解决方案

创建时间:2017-08-01 10:18  

DEDE图片本地化失效的主要原因:
服务器上的运行环境中禁用了fsockopen()函数

解决方案一:

在用fsockopen()的地方用stream_socket_client()函数代替。

具体修改地方是 /include/dedehttpdown.class.php 第507行

$this->m_fp = @fsockopen($this->m_host, $this->m_port, $errno, $errstr,10);
替换为

$this->m_fp = @stream_socket_client($this->m_host . ':' . $this->m_port, $errno, $errstr,10);


解决方案二:

编辑php.ini,找到disable_functions,把其中的fsockopen去掉


若上述方案无法解决,那么分析下php.ini配置文件中allow_url_fopen是否是开启状态;
上一篇:dedecms专题内容页{dede:field.note /}节点排序的方法
下一篇:dedecms织梦cms 5.7SP1文章列表页怎么调用带链接的TAGS?

相关内容

热门推荐