You need to redo this part right here.
PHP Code:
if ($vbulletin->userinfo['usergroupid']==6) {
$loadavg = @file_get_contents("/proc/loadavg");
if ($loadavg) {
$regs = explode(" ",$loadavg);
$serverload=' [Server Loads: <b>'.$regs[0].'</b> '.$regs[1].' : '.$regs[2].']';
$debughtml .= iif($_TEMPLATEQUERIES, " (<b>" . sizeof($_TEMPLATEQUERIES) . "</b> queries for uncached templates)", '') . "$serverload";
}
}
Like me im on windows so I dont have proc meaning that I dont get to see any of the admin stats becuase of the way you have it laid out.