Quote:
Today at 09:59 PM gohanssj2 said this in Post #19
Found the fix
Find
Code:
}
$guests[$count][lastactivity] = $user[lastactivity];
$count++;
}
$userinfo[$key]['useragent'] = $user['useragent'];
$userinfo[$key]['actualurl'] = $user['location'];
}
Replace with
Code:
}
$guests[$count][lastactivity] = $user[lastactivity];
$count++;
}
}
$userinfo[$key]['useragent'] = $user['useragent'];
$userinfo[$key]['actualurl'] = $user['location'];
|
I tried doing it that way and I lost the useragent and url info.