去数据库查一下有无表pre_common_connect_guest,如果没有,手动添加一下看看能不能恢复:- CREATE TABLE IF NOT EXISTS pre_common_connect_guest (
- twid char(16) NOT NULL,
- tid mediumint(8) unsigned NOT NULL DEFAULT '0',
- conopenid char(32) NOT NULL,
- pagetime int(10) unsigned DEFAULT '0',
- lasttwid char(16) DEFAULT NULL,
- nexttime int(10) unsigned DEFAULT '0',
- updatetime int(10) unsigned DEFAULT '0',
- dateline int(10) unsigned DEFAULT '0',
- PRIMARY KEY (twid),
- KEY nexttime (tid,nexttime),
- KEY updatetime (tid,updatetime)
- ) TYPE=MyISAM;
复制代码 |