To make it look nicer in Who's Online:
Open online.php
Find:
Code:
case 'gallery':
$userinfo[where] = "Viewing Picture <a href='gallery.php?s=$session[sessionhash]'>Gallery</a>";
break;
Under that, add:
Code:
// HTTP Errors
case 'httperror':
$userinfo[where] = "Experiencing an HTTP Error";
break;
// End HTTP Errors
Find:
Code:
case 'gallery.php':
$userinfo[activity] = 'gallery';
break;
Under that, add:
Code:
// HTTP Errors
case 'error.php':
$userinfo[activity] = "httperror";
break;
// End HTTP Errors
That's it.