欢迎访问服务器技术网-www.fuwuqijishu.com

解决织梦CMS Tag中文字太多/太长失效无法添加的问题

网站建设 fuwuqijishu 2年前 (2022-09-04) 23次浏览 0个评论 扫描二维码

最近看到群里网友在使用织梦CMS程序还是比较多的,尤其是有做范文类内容网站比较多,毕竟大数据网站是不适合WP这种程序的。不过在织梦CMS程序提交文章过程中,他们如果提交的TAG字符过长,或者中文字太多的话会会无法被写入数据库,这个是什么问题呢?

备注:我们在修改之前记得备份。

第一、修改数据库

ALTER TABLE dede_tagindex modify column tag char(251) not null;
ALTER TABLE dede_taglist modify column tag char(251) not null;

这里我们修改数据库字段的长度。

第二、修改文件

找到这个文件:

/include/helpers/archive.helper.php

查找:if(isset($tag[12]) 修改为:if(isset($tag[255])

查找:if(isset($tag[20]) 修改为:if(isset($tag[255])

这样我们再看看问题是不是解决了。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2513.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900