这个是搜索结果缓存数据表丢失,重建一下就可以了
后台,站长,数据库,升级
- CREATE TABLE pre_common_searchindex (
- searchid int(10) unsigned NOT NULL AUTO_INCREMENT,
- srchmod tinyint(3) unsigned NOT NULL,
- keywords varchar(255) NOT NULL DEFAULT '',
- searchstring text NOT NULL,
- useip varchar(15) NOT NULL DEFAULT '',
- uid mediumint(10) unsigned NOT NULL DEFAULT '0',
- dateline int(10) unsigned NOT NULL DEFAULT '0',
- expiration int(10) unsigned NOT NULL DEFAULT '0',
- threadsortid smallint(6) unsigned NOT NULL DEFAULT '0',
- num smallint(6) unsigned NOT NULL DEFAULT '0',
- ids text NOT NULL,
- PRIMARY KEY (searchid),
- KEY srchmod (srchmod)
- ) TYPE=MyISAM;
复制代码 |