MyBB Community Forums

Full Version: Plz someone help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i was just goign to check my forum and this comes up plz help me

mySQL error: 1146
Table 'dtox_MyBB.mybb_datacache' doesn't exist
Query: SELECT title,cache FROM mybb_datacache
Did you change anything in your database? The table datacache seems to be missing. You can recreate the table by running the following query:
CREATE TABLE mybb_datacache (
  title varchar(50) NOT NULL default '',
  cache mediumtext NOT NULL default '',
  PRIMARY KEY(title)
) TYPE=MyISAM;
Michael83 Wrote:Did you change anything in your database? The table datacache seems to be missing. You can recreate the table by running the following query:
Code:
CREATE TABLE mybb_datacache (
��title varchar(50) NOT NULL default '',
��cache mediumtext NOT NULL default '',
��PRIMARY KEY(title)
) TYPE=MyISAM;

i have the same problem as this guy after running an upgrade where do i run this code. sorry i am a bit of a noob.
Upload the attached file into your forums directory and open it in your browser.
that didnt do anything sadly; i just get the same error.
I updated the file above. Please retry.