我爱萌萌

怎么没法用

作者:我爱萌萌   发布时间:2016-11-15 08:06   回复数:4   浏览数:291
我爱萌萌
2914我爱萌萌年费ViP
热门 2016-11-15 08:06:06
2914 热门 2016-11-15 08:06:06
https://www.cgzz8.cn/t-24218-1-1.html

图片:QQ图片20161115080549.png






民审-M
沙发民审-M金牌草根 2016-11-15 09:17
跟模板一丁点关系都木有哦,看下字典再说吧:https://www.cgzz8.cn/library/database/x25/x25_index.htm
我爱萌萌
板凳我爱萌萌年费ViP 2016-11-15 10:24
民审-M 发表于 2016-11-15 09:17
跟模板一丁点关系都木有哦,看下字典再说吧:https://www.cgzz8.cn/library/database/x25/x25_index.htm


看不懂,怎么办吖,能不能指点下!
民审-M
地板民审-M金牌草根 2016-11-15 10:33
你论坛的 pre_forum_thread 主题表不存在啊,论坛不完整撒,后台校验下文件用官方文件覆盖下,缺少的数据库表,自己手工建立下撒~
手机建表SQL语句:【以下SQL语句请在phpmyadmin中你的论坛数据库下执行SQL,或论坛后台——站长——数据库——升级】
DROP TABLE IF EXISTS pre_forum_thread;
CREATE TABLE pre_forum_thread (
  tid mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
  fid mediumint(8) unsigned NOT NULL DEFAULT '0',
  posttableid smallint(6) unsigned NOT NULL DEFAULT '0',
  typeid smallint(6) unsigned NOT NULL DEFAULT '0',
  sortid smallint(6) unsigned NOT NULL DEFAULT '0',
  readperm tinyint(3) unsigned NOT NULL DEFAULT '0',
  price smallint(6) NOT NULL DEFAULT '0',
  author char(15) NOT NULL DEFAULT '',
  authorid mediumint(8) unsigned NOT NULL DEFAULT '0',
  `subject` char(80) NOT NULL DEFAULT '',
  dateline int(10) unsigned NOT NULL DEFAULT '0',
  lastpost int(10) unsigned NOT NULL DEFAULT '0',
  lastposter char(15) NOT NULL DEFAULT '',
  views int(10) unsigned NOT NULL DEFAULT '0',
  replies mediumint(8) unsigned NOT NULL DEFAULT '0',
  displayorder tinyint(1) NOT NULL DEFAULT '0',
  highlight tinyint(1) NOT NULL DEFAULT '0',
  digest tinyint(1) NOT NULL DEFAULT '0',
  rate tinyint(1) NOT NULL DEFAULT '0',
  special tinyint(1) NOT NULL DEFAULT '0',
  attachment tinyint(1) NOT NULL DEFAULT '0',
  moderated tinyint(1) NOT NULL DEFAULT '0',
  closed mediumint(8) unsigned NOT NULL DEFAULT '0',
  stickreply tinyint(1) unsigned NOT NULL DEFAULT '0',
  recommends smallint(6) NOT NULL DEFAULT '0',
  recommend_add smallint(6) NOT NULL DEFAULT '0',
  recommend_sub smallint(6) NOT NULL DEFAULT '0',
  heats int(10) unsigned NOT NULL DEFAULT '0',
  `status` smallint(6) unsigned NOT NULL DEFAULT '0',
  isgroup tinyint(1) NOT NULL DEFAULT '0',
  favtimes mediumint(8) NOT NULL DEFAULT '0',
  sharetimes mediumint(8) NOT NULL DEFAULT '0',
  stamp tinyint(3) NOT NULL DEFAULT '-1',
  icon tinyint(3) NOT NULL DEFAULT '-1',
  pushedaid mediumint(8) NOT NULL DEFAULT '0',
  cover smallint(6) NOT NULL DEFAULT '0',
  replycredit smallint(6) NOT NULL DEFAULT '0',
  relatebytag char(255) NOT NULL DEFAULT '0',
  maxposition int(8) unsigned NOT NULL DEFAULT '0',
  bgcolor char(8) NOT NULL DEFAULT '',
  comments int(10) unsigned NOT NULL DEFAULT '0',
  hidden smallint(6) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (tid),
  KEY digest (digest),
  KEY sortid (sortid),
  KEY displayorder (fid,displayorder,lastpost),
  KEY typeid (fid,typeid,displayorder,lastpost),
  KEY recommends (recommends),
  KEY heats (heats),
  KEY authorid (authorid),
  KEY isgroup (isgroup,lastpost),
  KEY special (special)
) TYPE=MyISAM;


民审-M
4楼民审-M金牌草根 2016-11-15 10:38
本帖最后由 民审-M 于 2016-11-15 10:39 编辑

对了,还有一可能性,你论坛数据库表前缀不是默认的“pre_”,你需要用dw文件夹内源码查找替换该模板打包内的所有“pre_”替换为你自己的论坛数据库表前缀。 该可能性比较大~
游客
登录后才可以回帖,登录 或者 注册