解決方法:
找到:/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);
原因:為服務器上禁用了fsockopen() 與pfsockopen() 函數(shù)造成的,在用fsockopen()或fsockopen() 的地方用 stream_socket_client()代替就可以了
未經允許不得轉載:445IT之家 » DEDECMS采集 提示讀取網址失敗的原因與解決方法