MyBB Community Forums

Full Version: MyBB has experienced an internal SQL error and cannot continue.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Apologies for making two topics so soon, but I still have yet to start my forums. I receive the following error whilst trying to access my domain.

MyBB has experienced an internal SQL error and cannot continue.

SQL Error:0 -Query:SQLSTATE[HY000]: General error: 1 no such table: mybb_datacache
can you tell us which type of database you are using ..
looks like datacache table is missing in the database.
you may have to manually insert it or try reinstalling the forum

SQL query :
CREATE TABLE mybb_datacache (
	title varchar(50) NOT NULL default '' PRIMARY KEY,
	cache mediumTEXT NOT NULL
);

Edit: see if required => common sql queries guidance
(2017-10-07, 07:44 AM).m. Wrote: [ -> ]can you tell us which type of database you are using ..
looks like datacache table is missing in the database.
you may have to manually insert it or try reinstalling the forum

SQL query :
CREATE TABLE mybb_datacache (
	title varchar(50) NOT NULL default '' PRIMARY KEY,
	cache mediumTEXT NOT NULL
);

Edit: see if required =>  common sql queries guidance

I believe I am using the light one. Apologies for not knowing the name.
can you try using above given SQL query & post back its result ..