Am using youngbuzz script but after 6min the user is removed from online list can anyone help me fix this error.
timeout error
Collapse
X
-
i have it at 999 and it still time out and i use this in core.php
Added after 8 minutes:
//////////////////////////////////////////////is online
function isonline($uid)
{
$timeout=time()-9999;
$uon = mysql_fetch_array(mysql_query("SELECT
COUNT(*) FROM ibwf_online WHERE userid='".
$uid."' AND actvtime>$timeout"));
if($uon[0]>0)
{
return true;
}else
{
return false;
}
}Last edited by wap-lord; 22.07.10, 19:08.
Comment
Comment