Quote:
Originally Posted by NLP-er
No it was disabled. In translate.php You can find:
Code:
//MY CODE TO DISABLE SERVER LOAD CHEcKING
return 1;
//END
Just remove it to enable load checking. I disabled it when working on cache, I don't know does it goes to release by mistake or it was Dave decision - ask Dave 
|
OK, thanks

(Should have noticed that!)
I commented out your
return 1 and changed the loadavg amount from 1.5 to 5.5 in the condition check,
if(floatval(getServerLoad()) >= 5.5)
I think I will also change the function
getServerLoad() to return $load[1] instead of $load[0], to smooth things (remove noise) a bit.
Cheers and thanks for the reply.