本文主要讲解《dede(织梦)不能下载远程图片实现图片本地化解决方案》的详细内容
解决方案一:
在用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);
解决方案二:
编辑php.ini,找到disable_functions,把其中的fsockopen去掉
本网刊登的文章均仅代表作者个人观点,并不代表本网立场。文中的论述和观点,敬请读者注意判断。
2021-02-24
2021-02-08
2021-02-08
2021-02-08
2021-02-08
2021-02-08
2021-02-08
2021-02-24