2024-11-23, 07:36 PM
(This post was last modified: 2024-11-23, 07:37 PM by Roberth. Edited 1 time in total.)
I have a database from 2015 called name_forum.sql. How do I restore it? I tried by installing the latest version of MyBB and uploaded the database through phpMyAdmin. The users show up in the database, but there’s no change on the forum. I’ve checked the link, cookies, and all settings, and everything seems correct. However, the users still don’t appear on the forum.
I also installed the 2015 version 1.8.6, but I’m getting an error.
I tried to fix the error with:
How can I restore the old database?
I also installed the 2015 version 1.8.6, but I’m getting an error.
SQL Error:
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'groups text NOT NULL, type char(1) NOT NULL default '', postoptions text NOT N' at line 6
Query:
CREATE TABLE mybbtest_modtools ( tid smallint unsigned NOT NULL auto_increment, name varchar(200) NOT NULL, description text NOT NULL, forums text NOT NULL, groups text NOT NULL, type char(1) NOT NULL default '', postoptions text NOT NULL, threadoptions text NOT NULL, PRIMARY KEY (tid) ) ENGINE=MyISAM CHARACTER SET utf8 COLLATE utf8_general_ci;
I tried to fix the error with:
CREATE TABLE mybbtest_modtools (
tid smallint unsigned NOT NULL auto_increment,
name varchar(200) NOT NULL,
description text NOT NULL,
forums text NOT NULL,
`groups` text NOT NULL,
type char(1) NOT NULL default '',
postoptions text NOT NULL,
threadoptions text NOT NULL,
PRIMARY KEY (tid)
) ENGINE=MyISAM CHARACTER SET utf8 COLLATE utf8_general_ci;
How can I restore the old database?