MyBB Community Forums

Full Version: MySubscriptions Plugin is TRASH!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
IMG: https://i.hizliresim.com/DOMqmO.png
I Got This EROR!

[text]
MyBB has experienced an internal SQL error and cannot continue.
SQL Error:1364 - Field 'order' doesn't have a default valueQuery:INSERT INTO mybb_mysubs (
) VALUES ('ewq','','',0,'N;','USD',8,1,'all','ewq','sub_{$sid}')
Please contact the MyBB Group for technical support.
[end]
add a default value to the order (bad choice of column name) field:
alter table mybb_mysubs modify `order` int(11) default 0
Correct the int(11) to the good definition and adapt the default value if it's not an integer.