MyBB Community Forums

Full Version: MySQL error
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

on my forum, I'm having trouble creating threads, an error that seems to be related to MySQL, this is the error:

MyBB SQL Error
MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
1054 - Unknown column 'threads' in 'field list'
Query:
UPDATE mybb_users SET threads='1' WHERE uid = 1
Please contact the MyBB Group for support.


Which solution to this? Thx
That's not a default MyBB field on the users table; what plugins do you use?
I'm use this plugins:

Advanced WYSIWYG Editor
Top Links Editor
Stop forum spam
Quacktacular Themes
MyShoutbox
Groups legend
Inline Downloads

Ps: I just put the ones that are enabled.

Well, it seems that my forum is back to normal after I disabled the "ezGallery" and "Downloads"

Anyway, thanks for the help: D
You needed to add "threads" column inside "mybb_users" table.

Run this Query :

ALTER TABLE mybb_users ADD threads VARCHAR(50);