MyBB Community Forums

Full Version: Help setting up SQL
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi i feel really stupid for putting this thread up. But i cannot figure out how to set up mySQL to work with MyBB if someone can help me.

MyBB has experienced an internal SQL error and cannot continue.

SQL Error:0 -Query:SQLSTATE[HY000]: General error: 1 no such table: mybb_datacache

That is what happenes when i go to index.php
The message says that the board can't find mybb_datacache table.

Try to execute this query in your PhpMyAdmin, although it's better to reinstall your forum.

CREATE TABLE IF NOT EXISTS `mybb_datacache` (
  `title` varchar(50) NOT NULL DEFAULT '',
  `cache` mediumtext NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

ALTER TABLE `mybb_datacache`
  ADD PRIMARY KEY (`title`);
That error means that your database info in inc/config.php is wrong.