Okay, since I'm wickedly impatient I decided to see about figuring this out on my own. After disabling virtually everything and still having the problem, I realized that the hack was rotating improperly and therefore throwing people into COPPA - problem is, they weren't IN the COPPA usergroup. The query had somehow created a NEW usergroup with no name and no id number that can't be modified. All as a result of a simple -1
So, change:
PHP Code:
$rndid = $rndgroups[rand(0,count($rndgroups) + 1) - 1];
to:
PHP Code:
$rndid = $rndgroups[rand(0,count($rndgroups) + 1)];
and there should be no more problems.
I tested it no less than 5 times and was able to keep it working even with re-activating my image verification