本文主要讲解《织梦不能自动提取缩略图解决方法》的详细内容
方法一:
各种改法,各种尝试,后来其实只要改一句代码就可以了
可能是因为服务器上禁用了fsockopen() 函数造成的,在用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);
方法二:
请修改 /include/c.php 第45行
imtypes=array改成imgtypes = array【你会发现少了个“g”】
本网刊登的文章均仅代表作者个人观点,并不代表本网立场。文中的论述和观点,敬请读者注意判断。
2021-02-08
2021-02-08
2021-02-24
2021-02-08
2021-02-08
2021-02-08
2021-02-24
2021-02-08