MyBB Community Forums

Full Version: threadprefixes error
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Mistakenly erased threadprefixes table.
Now gives this error.
Error image :
[Image: KIB1.png]

What should I do?
Go to: CPanel > Database Management > PHPMyAdmin > Select your database > click on SQL Tab > and paste the following code and hit "Go" button;
CREATE TABLE mybb_threadprefixes (
	pid int unsigned NOT NULL auto_increment,
	prefix varchar(120) NOT NULL default '',
	displaystyle varchar(200) NOT NULL default '',
	forums text NOT NULL,
	groups text NOT NULL,
	PRIMARY KEY(pid)
) ENGINE=MyISAM;

make sure that your table prefix is mybb_
Thank you very much. Problem solved. Smile