MyBB Community Forums

Full Version: cannot registry
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hi helpers,

on my forum, people cannot registry to be a member. there is a message pop up after filout the registry form:

Quote:MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
1054 - Unknown column 'remember' in 'field list'
Query:
INSERT INTO mybb_users

Can someone help me to fix this? Thank you in advance
thx much
Your welcome. ^_^
i did delete all the plugins that was not compatible with 1.6
and re-upload all the files once again, but it is still the same problem
Did you upgrade any plugins your self? Using the "Compatibly => 14*" and changing it to "Compatibly => 16*"?
You're not running 1.6 code if that error is appearing. What plugins do you actually use??

As blake said, you'll need to update the compatibility of 1.4 plugins yourself.
As a test...

In ./inc/init.php, find:
define("TIME_NOW", time()); 

Add after:
define("NO_PLUGINS", 1); 

If the error goes after adding that then it's a plugin causing it, if it doesn't then you still have 1.4 core files.

(2010-10-23, 06:34 PM)Kyuubi Wrote: [ -> ]As blake said, you'll need to update the compatibility of 1.4 plugins yourself.

That won't stop this error occurring.
Thank you AJS.

It works only after adding the code
define("NO_PLUGINS", 1);
Then you've still got a 1.4 plugin running.
Pages: 1 2