在使用dedecms发布文章时有的朋友可能会遇到 发布文章时不能下载远程图片并提取第一个图片为缩略图的问题,下面是解决方法:
可能是因为服务器上禁用了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);
以上文章希望对您有用
本文由织梦者(www.genban.org)转自网络
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!