Quote:
Originally posted by assassingod
This error when trying to enter battle (0.56, 2.2.9)
|
Are you on a free/shared server? Did you try re-uploading battlefight.php? The cause of that error is the user item loop. I have never had that error on my forums, but a temporary fix is to do the following (I think):
In battlefight.php, find twice:
PHP Code:
while ($count <= $totalcats[0]) {
and BELOW it, add:
PHP Code:
if($count > 50)
break;
There are two places you need to do this. They should be right after one another and should look very similar.
Let me know if that helps.