解決方法:
1:可以下載1.7補丁包覆蓋后 再次升級。
或者
易優助手-數據庫校驗下即可
也可以直接數據庫執行下以下數據庫表
-- -----------------------------
-- Table structure for `ey_language_archives_copy_log`
-- -----------------------------
DROP TABLE IF EXISTS `ey_language_archives_copy_log`;
CREATE TABLE `ey_language_archives_copy_log` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`channel` int(10) DEFAULT '0',
`typeid` int(10) DEFAULT '0' COMMENT '分類ID',
`new_typeid` int(10) DEFAULT '0',
`oldid` int(10) DEFAULT '0',
`newid` int(10) DEFAULT '0',
`lang` varchar(20) DEFAULT '' COMMENT '生成語言',
`add_time` int(11) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `index_oldid` (`oldid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;