Quote:
Originally Posted by Primal Rage
This is great, Is there any way i can implement this into vb 3.0.X ... I assume it would be possible just don't know how.
Any help would be appreciated, thank you.
|
It's possible, but not as a plugin

You can try this, but I have not tested it, so make sure you test:
Edit global.php
Find:
PHP Code:
$servertoobusy = true;
Add after it:
PHP Code:
if (BYPASS_BUSY_ERROR == 1) {
$servertoobusy = FALSE;
}
Find:
PHP Code:
if (!$vboptions['bbactive'] AND THIS_SCRIPT != 'login')
Replace with:
PHP Code:
if (!$vboptions['bbactive'] AND THIS_SCRIPT != 'login' AND BYPASS_INACTIVE_ERROR != 1)