admin 发表于 2021-7-22 14:35

Discuz can‘t find “pre_forum_rsscache“的解决方案

DROP TABLE IF EXISTS pre_forum_rsscache;
CREATE TABLE pre_forum_rsscache (
lastupdate int(10) unsigned NOT NULL DEFAULT '0',
fid mediumint(8) unsigned NOT NULL DEFAULT '0',
tid mediumint(8) unsigned NOT NULL DEFAULT '0',
dateline int(10) unsigned NOT NULL DEFAULT '0',
forum char(50) NOT NULL DEFAULT '',
author char(15) NOT NULL DEFAULT '',
`subject` char(80) NOT NULL DEFAULT '',
description char(255) NOT NULL DEFAULT '',
guidetype char(10) NOT NULL DEFAULT '',
UNIQUE KEY tid (tid),
KEY fid (fid,dateline)
) ENGINE=MYISAM DEFAULT CHARSET=utf8;网上很多代码最后一行有问题,其实应该在phpmyadmin里运行

页: [1]
查看完整版本: Discuz can‘t find “pre_forum_rsscache“的解决方案