hello all....
please see your admin.inc.php
.
see this function
function get_users_online_number ( $who = 0, $country = "")
.
and then see this code on that function :
switch ( $who )
{
// chatting
case 't':
case 'T':
$onl_arr = db_arr("SELECT count(DISTINCTROW IDFrom) AS count_onl FROM IMessages WHERE `When` > SUBDATE(NOW(), INTERVAL $min MINUTE)");
break;
.
.
.
i think that code doesn't return a right value.
it should return "number of chatter" if we invoke this "echo get_users_online_number ('t');" to our php files.
.
.
my chatter that online are 1 person, but when i execute this function , it still diksplays 0 member.