I believe you are not adding it correctly...
Open global.php (not the one in the mod or admin folder)
Find this:
PHP Code:
// check to see if server is too busy. this is checked at the end of session.php
if ($servertoobusy AND $bbuserinfo['usergroupid'] != 6) {
$useforumjump = 0; // If load limiting options stop us, we aren't including sessions.php which breakes permissions
eval("standarderror(\"".gettemplate('error_toobusy')."\");");
exit;
}
Replace it with this:
PHP Code:
// check to see if server is too busy. this is checked at the end of session.php
if ($servertoobusy AND $bbuserinfo['usergroupid'] != 6 AND $bbuserinfo['usergroupid'] != 5 AND $bbuserinfo['usergroupid'] != 7) {
$useforumjump = 0; // If load limiting options stop us, we aren't including sessions.php which breakes permissions
eval("standarderror(\"".gettemplate('error_toobusy')."\");");
exit;
}
I did notice they added that // check that board is active bit.
Perhaps that is preventing you, someone else can crack that bad boy open for you.