解決方案一:
在用fsockopen()的地方用stream_socket_client()函數(shù)代替。
具體修改地方是 /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去掉
下一篇:
版權(quán)聲明: 本站資源均來自互聯(lián)網(wǎng)或會員發(fā)布,如果侵犯了您的權(quán)益請與我們聯(lián)系,我們將在24小時內(nèi)刪除!謝謝!
轉(zhuǎn)載請注明: dede(織夢)不能下載遠程圖片實現(xiàn)圖片本地化解決方案