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..
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..