Discuz!官方免费开源建站系统

 找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索

[求助] 缺少数据表,该如何手动修复

[复制链接]
sunsihui 发表于 2018-6-13 15:47:21 | 显示全部楼层 |阅读模式
缺少的数据表 (为了保证站点的正常运行,请立即补充以下缺少的数据表)
discuz_forum_rsscache
字符集错误的数据表 (字符集不一致可能会导致乱码,请手动修复以下数据表,当前字符集 UTF8)
discuz_forum_rsscache()


请问 碰到这种情况,该如何补充缺少的数据表啊?

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
xiaoyuwxz 发表于 2018-6-13 15:53:35 | 显示全部楼层
后台,站长,数据库,升级


  1. DROP TABLE IF EXISTS `pre_forum_rsscache`;
  2. CREATE TABLE IF NOT EXISTS `pre_forum_rsscache` (
  3.   `lastupdate` int(10) unsigned NOT NULL DEFAULT '0',
  4.   `fid` mediumint(8) unsigned NOT NULL DEFAULT '0',
  5.   `tid` mediumint(8) unsigned NOT NULL DEFAULT '0',
  6.   `dateline` int(10) unsigned NOT NULL DEFAULT '0',
  7.   `forum` char(50) NOT NULL DEFAULT '',
  8.   `author` char(15) NOT NULL DEFAULT '',
  9.   `subject` char(80) NOT NULL DEFAULT '',
  10.   `description` char(255) NOT NULL DEFAULT '',
  11.   `guidetype` char(10) NOT NULL DEFAULT '',
  12.   UNIQUE KEY `tid` (`tid`),
  13.   KEY `fid` (`fid`,`dateline`)
  14. ) ENGINE=MyISAM DEFAULT CHARSET=gbk;

复制代码

回复

使用道具 举报

 楼主| sunsihui 发表于 2018-6-14 16:20:25 | 显示全部楼层
xiaoyuwxz 发表于 2018-6-13 15:53
后台,站长,数据库,升级

你好,我有这个表pre_forum_rsscache

但是我现在缺少的是这个表discuz_forum_rsscache
回复

使用道具 举报

crx349 发表于 2018-6-15 13:08:25 | 显示全部楼层
  1. DROP TABLE IF EXISTS `discuz_forum_rsscache`;
  2. CREATE TABLE IF NOT EXISTS `discuz_forum_rsscache` (
  3.   `lastupdate` int(10) unsigned NOT NULL DEFAULT '0',
  4.   `fid` mediumint(8) unsigned NOT NULL DEFAULT '0',
  5.   `tid` mediumint(8) unsigned NOT NULL DEFAULT '0',
  6.   `dateline` int(10) unsigned NOT NULL DEFAULT '0',
  7.   `forum` char(50) NOT NULL DEFAULT '',
  8.   `author` char(15) NOT NULL DEFAULT '',
  9.   `subject` char(80) NOT NULL DEFAULT '',
  10.   `description` char(255) NOT NULL DEFAULT '',
  11.   `guidetype` char(10) NOT NULL DEFAULT '',
  12.   UNIQUE KEY `tid` (`tid`),
  13.   KEY `fid` (`fid`,`dateline`)
  14. ) ENGINE=MyISAM DEFAULT CHARSET=gbk;
复制代码
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|Discuz! 官方站 ( 皖ICP备16010102号 )star

GMT+8, 2024-11-27 19:46 , Processed in 0.017207 second(s), 5 queries , Gzip On, Redis On.

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.

快速回复 返回顶部 返回列表