POST TIME:2019-03-20 14:29
dedecms不能下載遠(yuǎn)程圖片和資源 提取第一個(gè)圖片為縮略圖可能是因?yàn)榉?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);