MyBB Community Forums

Full Version: Register Problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
there is a problem with the registration, 

[Image: Screenshot-2020-04-06-at-8-58-33-PM.png]

i did try all the sol of https://community.mybb.com/thread-227101.html, this worked, 
set global sql_mode='';
but after few hours it began again
Hey I did some research for you!

@.m. already gave an answer to the same error in a previous thread.

Here is the answer:
https://community.mybb.com/thread-223174...pid1329455

Hopefully it helps!
(2019-05-29, 12:45 AM).m. Wrote: [ -> ]basically the problem appears to be due to strict mode of your database server.
perhaps it would be better to contact your webhost & request to disable that strict mode

you may also try below method but not sure it would work

uninstall the plugin.
open the plugin file mytabs.php with notepad++ or editor at webhost panel

around line 116 find
$db->add_column('users', 'default_tab', 'TEXT NOT NULL');
change to
$db->add_column('users', 'default_tab', 'TEXT NOT NULL DEFAULT 0');
save the file & try using it

btw, this MyTabs plugin was NOT coded in a perfect manner. better to not use it.