POST TIME:2019-03-19 17:12
在使用dedecms發(fā)布文章時有的朋友可能會遇到 發(fā)布文章時不能下載遠程圖片并提取第一個圖片為縮略圖的問題,下面是解決方法:
可能是因為服務(wù)器上禁用了fsockopen() 函數(shù)造成的,在用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);
以上文章希望對您有用