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去掉文章来源:https://www.toymoban.com/news/detail-423801.html
若上述方案无法解决,那么分析下php.ini配置文件中allow_url_fopen是否是开启状态;文章来源地址https://www.toymoban.com/news/detail-423801.html
到了这里,关于织梦dedecms不能下载远程图片实现图片本地化解决方法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!