织梦DEDECMS5.7采集后导出的标题字数过少解决方法
首先增加采集标题长度:255 目的:原标题长度太小,影响文件采集
⑴修改系统参数设置(文档标题最大长度)
位置:系统-系统设置-系统基本参数-其他选项-文档标题最大长度:255
⑵修改文档表dede_archives 字段title 为varchar(255)
位置:系统-系统设置-SQL命令行工具
Alter table dede_archives change title title varchar(255)
⑶修改采集数据导入程序co_export.php
位置:D:\DedeAMPZ\WebRoot\Default\dede
改:$mainSql = str_replace('@title@',cn_substr($title, 60),$mainSql);
语句为:
$mainSql = str_replace('@title@',cn_substr($title,$cfg_title_maxlen),$mainSql);