Log in

View Full Version : Long game name fix


stangger5
09-27-2014, 01:19 PM
This is a problem in vbulletin ibproarcade and new games having long names..

Error #011 -> gid=10714|ui[a_sess_gid]=10714|g[gid]=10714|vs[mid]=31|vs[gname]=SummerWarsHiddenObjectsAS3v2cl|gamename=SummerWar sHiddenObjectsAS3v2class

If you look at the error code from above..
Look at the gname and gamename...They have to match or the system thinks your cheating..
The gname is shorter..
To fix this you have to up the limit of the games_session data base, gname, varchar(30)..
or you can use this simple query,,run it from vbulletin admincp..
alter table `games_session` modify `gname` varchar(40) NOT NULL;

Games with (40 characters or less ) names should work now..

If you have any game names with 41 or more characters..
You`ll have to up the limit of the gname, varchar in the games_session and games_list..

stangger5
09-25-2016, 09:56 PM
There's some games out now with more than 40 characters..

These two queries should help.
alter table `games_session` modify `gname` varchar(60) NOT NULL;


alter table `games_list` modify `gname` varchar(60) NOT NULL;

:)

MarkFL
09-25-2016, 11:32 PM
Thanks for the heads up! I just ran them, glad to have that fixed. :up:

MrZeropage
10-26-2018, 04:17 PM
Problem solved in ibProArcade v2.7.5+