互联网技术 · 2024年2月10日

解决织梦DeDecms无法自动提取缩略图问题

什么是缩略图?缩略图是指网页上或计算机中图片经压缩方式处理后的小图 ,其中通常会包含指向完整大小的图片的超链接。一篇完整高质量的文章包含,文章标题、原创内容、图片、缩略图。缩略图功能也是常见的功能,在主流网站内,都能看到它的影子。今天无忧主机小编将结合日常处理客户问题整理出两种解决DeDecms无法自动提取缩略图的方法供大家学习。

方法一:

php虚拟主机禁用fsockopen() 函数导致,将fsockopen() 函数替换成stream_socket_client()函数(无忧主机全线产品都支持以上两种函数更多函数支持请移步至香港空间PHP探针)

文本编辑器打开文件目录:/include/dedehttpdown.class.php

查找:

$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

查找:

imtypes=array

修改为:

imgtypes = array

OpenMagic API

Need more than content? Move into the product flow.

If you are here for model access, pricing, developer docs, or the future API console, the dedicated product path now lives on api.openmagic.ai.

登录免费注册