MyBB Community Forums

Full Version: 1366 - Incorrect integer value: 'NULL' for column 'gid' at row 1
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

Iam trying to activate plugin. i will get this error.what's the problem?
Pls helpme.


MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
1366 - Incorrect integer value: 'NULL' for column 'gid' at row 1
Query:
INSERT INTO mybb_1settinggroups (gid,name,title,description,disporder,isdefault) VALUES ('NULL','postad','PostAd','Displays advertisement in the first post of every thread','15','no')



thanks
apking
This looks like a plugin problem, I'd recommend removing the plugin from your forum completely and then installing it again.

The SQL error suggests that when the plugin is trying to be activated, it's trying to add a setting group to the database, but inserting a NULL value into a field which is expecting an integer and thus the activation fails.
The SQL error is that NULL should not be quoted. Let the plugin author know so s/he can fix it.