织梦采集标题不完整修改文章标题长度

系统-系统设置-系统基本参数-其他选项-文档标题最大长度:255

修改文档表dede_archives中的title字段varchar(255)

系统-系统设置-SQL命令行工具,输入代码并执行:

Alter table dede_archives change title title varchar(255) 

打开/dede/co_export.php文件

找到

$mainSql = str_replace('',cn_substr($title, 60),$mainSql); 

改成

$mainSql = str_replace('',cn_substr($title, cfg_title_maxlen),$mainSql); 

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zydzdf.html