首页 >

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

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

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

直接在数据库表: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();


如何修改织梦DedeCMS关键词字段长度
  • 关于后台更新广告而前台没有改变的搞定方式
  • 关于后台更新广告而前台没有改变的搞定方式 | 关于后台更新广告而前台没有改变的搞定方式 ...

    如何修改织梦DedeCMS关键词字段长度
  • 织梦DedeCMS单页模块生成目录和链接的修改方法
  • 织梦DedeCMS单页模块生成目录和链接的修改方法 | 织梦DedeCMS单页模块生成目录和链接的修改方法 ...

    如何修改织梦DedeCMS关键词字段长度
  • 织梦DedeCMS修改广告代码后前台不更新的搞定方式
  • 织梦DedeCMS修改广告代码后前台不更新的搞定方式 | 织梦DedeCMS修改广告代码后前台不更新的搞定方式 ...