I tried recalculating the users money, and I got this error:
Code:
MySQL error: 1064
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'Shop,Games Consoles,Apple Store,avatar,avatardimensions,avatartype,usergroup,add' at line 1
Query: REPLACE INTO mybb_users(uid,username,password,salt,loginkey,email,postnum,Celebrity Shop,Games Consoles,Apple Store,avatar,avatardimensions,avatartype,usergroup,additionalgroups,displaygroup,usertitle,regdate,lastactive,lastvisit,lastpost,website,icq,aim,yahoo,msn,birthday,signature,allownotices,hideemail,emailnotify,invisible,receivepms,pmpopup,pmnotify,remember,threadmode,showsigs,showavatars,showquickreply,showredirect,ppp,tpp,daysprune,dateformat,timeformat,timezone,dst,buddylist,ignorelist,style,away,awaydate,returndate,awayreason,pmfolders,notepad,referrer,reputation,regip,language,timeonline,showcodebuttons,totalpms,newpms,unreadpms,mybank,mybanktime,mybankcheck,Games Console,money,purchases,inventory,bankmoneyoffset,bankbasetime) VALUES
Followed by every member and other info such as avatar URL etc.
It looks like you have a very odd modification to your board.
I cannot guarantee that this won't prevent any further errors, as MyBB (1.2.x) itself was never designed to handle field names with spaces, but you can try this:
In inc/myplaza/myplaza_general.php
Find:
Code:
('.implode(',', $fields).')
Replace with:
Code:
(`'.implode('`,`', $fields).'`)
See if that works.
Just out of interest - which modification adds the "Celebrity Shop,Games Consoles,Apple Store" fields to your users table?