Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Forum Statistics 0.3
http://lussumo.com/addons/?PostBackAction=AddOn&AddOnID=53
hey guys, i've updated the statistics version with a few extra features
Complete Reset
- This will reset your statistics file if it stuffs up
Multiple Statistics Capability
- Yes, now certain statistics like the largest posters can be ranked
Unique Guests Stat Fix
- Well... i wasn't grouping the data so you were getting a bloated number of guests...
I'm still trying to find some good, but mainly interesting statistics that i would be able to use, so if you have any ideas, please say.
hey guys, i've updated the statistics version with a few extra features
Complete Reset
- This will reset your statistics file if it stuffs up
Multiple Statistics Capability
- Yes, now certain statistics like the largest posters can be ranked
Unique Guests Stat Fix
- Well... i wasn't grouping the data so you were getting a bloated number of guests...
I'm still trying to find some good, but mainly interesting statistics that i would be able to use, so if you have any ideas, please say.
0
This discussion has been closed.
Comments
"A Complete Reset will NOT delete actual data!"
But it seems to, all stats are reset to "0"
What the message means is that it doesn't delete anything from the database
- Guests in the last 24 hours;
- Most active user(s);
- Total of posted comments in the last 24 hours and last 7 days.
if you have a forum that is at least semi active, would you be able to help me out by sending each of these queries to your database and letting me know if they work or not?
Order By Most Active (soon to be improved)
SELECT LUM_User.Name FROM `LUM_User` ORDER BY LUM_User.CountVisit DESC;
Guests in the last 24 hours
SELECT count(*) FROM `LUM_IpHistory` WHERE LUM_IpHistory.UserID = 0 AND LUM_IpHistory.DateLogged > (NOW() + 86400);
The rest of the asked queries will probably need to have MySQL5 installed, so unless someone figures that out, i'll keep with what i've got at the moment and upgrade the extension to allow links...
I'll also be fixing up the current statistics to exclude whispers
if anyone has any other queries that are available by default, dont hesitate to tell me
SELECT count(*) FROM `LUM_IpHistory` WHERE LUM_IpHistory.UserID = 0 AND DATE_SUB(NOW(),INTERVAL 1 DAY) <= LUM_IpHistory.DateLogged;
For registrated users use WHERE LUM_IpHistory.UserID > 0Number of posts in the last 24 hours:
SELECT count(*) FROM `LUM_Comment` WHERE DATE_SUB(NOW(),INTERVAL 1 DAY) <= LUM_Comment.DateCreated;
For the number of post in the last week use INTERVAL 7 DAYI'll put em in when i can but if you have any more don't be afraid cos i might think of something to make the next extension a bit more interesting.