如何修改DedeCMS关键词字段长度

栏目关键词长度问题自行解决了,一切OK了

直接在数据库表:dede_arctype 修改参数

(关键词) keywords char(30) 原30被修改成200了

(描 述) description char(150) 原150被修改成255了

=============================================================================

文档关键词,描述,文章来源,作者长度修改方法直接找数据库表:dede_archives

(关键词) keywords char(30) 30我修改成200了

(描 述) description char(250) 250我修改成300了

(文章来源)source char(30) 30我修改成200了

(作 者) writer char(30) 30我修改成200了

修改完文档上述内容后进入系统文件dede/ 找到 article_add.php,article_edit.php,archives_add.php,archives_edit.php 这四个文件打开后找到下面内容进行相应修改(红字处):

//对保存的内容进行处理

if(empty($writer))$writer=$cuserLogin->getUserName();

if(empty($source))$source='未知';

$pubdate = GetMkTime($pubdate);

$senddate = time();

$sortrank = AddDay($pubdate,$sortup);

$ismake = $ishtml==0 ? -1 : 0;

$title = htmlspecialchars(cn_substrR($title,$cfg_title_maxlen));

$shorttitle = cn_substrR($shorttitle,36);

$color = cn_substrR($color,7);

$writer = cn_substrR($writer,200);

$source = cn_substrR($source,200);

$description = cn_substrR($description,300);

$keywords = cn_substrR($keywords,200);

$filename = trim(cn_substrR($filename,40));

$userip = GetIP();

注明:本文为星速云原创版权所有,禁止转载,一经发现将追究版权责任!

(0)
上一篇 2022年8月9日 上午9:17
下一篇 2022年8月9日 上午9:17

相关推荐

发表评论

登录后才能评论
问答社区 QQ客服
微信客服
微信客服
分享本页
返回顶部