[AViO 07]: Actually there's a html error there.
Shouldn't this:
PHP Code:
case 'itemshop':
$userinfo[where] = "Viewing <a href='itemshop.php?s=$session[sessionhash]'>Itemshop<a>";
break;
Be this:
PHP Code:
case 'itemshop':
$userinfo[where] = "Viewing <a href='itemshop.php?s=$session[sessionhash]'>Itemshop</a>";
break;
The close <a> tag was missing a '/'. This would have lead there to be an infinite link, no?
Dave.
PS: I'll install afresh now and see if I still get the errors.