系統(tǒng)-系統(tǒng)設(shè)置-系統(tǒng)基本參數(shù)-其他選項-文檔標題最大長度:255
修改文檔表dede_archives中的title字段varchar(255)
系統(tǒng)-系統(tǒng)設(shè)置-SQL命令行工具,輸入代碼并執(zhí)行:
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);