Quote:
Originally Posted by blitzkrg
yes it's a windows 2003 dedicated server
running
php 4.3.5
apache 1.3.26
mysql 3.23.57
vbulliten 3.0.1
i had no problems with the install.
i rdp'd to the server and ran task mgr. then from another computer launched a bbmessenger session and the cpu on the server went to 100% right away and stayed there until i closed the bbmssgr seesion.
anything i should try?
|
Try the following:
open bbm_messenger.php and find:
// choose processing delay, 1 second for windows, 0.2 seconds for everyone else (windows does not support usleep)
if (ONWINDOWS)
{
sleep(1);
} else
{
usleep(2000000);
}
replace with:
sleep(1);