0

I'm trying to upgrade a MyBB forum and at the end of the upgrade I get this error message:

MyBB has experienced an internal SQL error and cannot continue.

SQL Error: 1146 - Table 'abualbd_mybb40.mybb_usertitles' doesn't exist Query: SELECT utid, posts, title, stars, starimage FROM mybb_usertitles ORDER BY posts DESC

What does it mean and how can I fix it? Thanks

I'm upgrading from 1.6.10

4

1 回答 1

0

您收到此错误是因为您的数据库中没有名为mybb_usertitles的表, 并且您的 sql 查询正在尝试SELECT从该表中获取不存在的数据。

一个快速的解决方案是,如果你去你的数据库并创建名为 mybb_usertitles的新表

CREATE TABLE mybb_usertitles (
utid int(11) auto_increment primary key,
posts text not null,
title varchar(255) not null,
stars varchar(255) not null,
starimage varchar(255) not null )
于 2014-05-10T17:51:51.697 回答