The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
User with most posts in X days??
I have searched to my little hearts content and haven't been able to find anything.
Is there a plugin or product I can download that can tell me what user posted the most amount in a certain number of days?? |
#2
|
|||
|
|||
You could try doing a query, like from phpMyAdmin. Maybe like:
Code:
SELECT userid, username, COUNT( * ) AS count FROM post WHERE visible =1 AND dateline >= UNIX_TIMESTAMP( CURDATE( ) - INTERVAL 7 DAY ) GROUP BY userid ORDER BY count DESC ETA: I think "CURDATE( ) - INTERVAL 7 DAY" with >= would actually include all posts in the 7 days before today, plus any posted today. |
#3
|
||||
|
||||
You can also try this mod, https://vborg.vbsupport.ru/showthread.php?t=232021
|
Благодарность от: | ||
kh99 |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|