PDA

View Full Version : Active, non-active users


inetd
03-10-2002, 09:58 PM
Make, please, somebody hack which showed Active users: | Non-Active users: | Activity Level: As it is made in vbStats. Please!

inetd
03-11-2002, 05:20 PM
please, reply me. That very important!

inetd
03-15-2002, 07:50 PM
Hey, people! Help me :) I need this hack.

Robert9
03-15-2002, 07:59 PM
<a href="https://vborg.vbsupport.ru/showthread.php?s=&threadid=35729" target="_blank">https://vborg.vbsupport.ru/showt...threadid=35729</a>

read here plz!

Lesane
03-15-2002, 08:25 PM
Str8 from vbstats.php:

// Active/Non?
$snonposters=$DB_site->query_first('SELECT COUNT(*) AS users,MAX(userid) AS max FROM user WHERE posts=0');
$nonposters=$snonposters['users'];
$activemembers=$numbermembers-$nonposters;
$activityrate=sprintf("%.2f",(1000*$activemembers/$numbermembers));

Now u can do the rest ... ;)

inetd
03-15-2002, 09:00 PM
Big thanks, Lesane!!!
But I see:
Registered users: 553
Active: 279 | Non-active: 274 | Activity level: 504.52

How it can be corrected? You see such results can not be. :(

Bane
03-16-2002, 04:01 AM
What cannot be? The Active / Non-Active is right..

For the activity level try changing

$activityrate=sprintf("%.2f",(1000*$activemembers/$numbermembers));

to

$activityrate=sprintf("%.2f",(100*$activemembers/$numbermembers));

inetd
03-16-2002, 06:40 AM
Bane, thx!
And one more question. How to make, that in active users there were users for which more than one message per day? And in inactive for what less than one message per day.