The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
Show how much space each user is taking up in attachments
It would be cool if someone could make a small hack that would show the users total attachment totals, sortable by total amount and username
|
#2
|
|||
|
|||
If you go to your AdminCP/Attachment/Attachment Statistics you can get the top 5
|
#3
|
||||
|
||||
[sql]SELECT SUM( filesize ) AS total, user.username
FROM attachment LEFT JOIN user ON ( user.userid = attachment.userid ) GROUP BY attachment.userid ORDER BY total DESC [/sql] or ORDER BY total ASC, ORDER BY username DESC, ORDER BY username ASC |
#4
|
||||
|
||||
Quote:
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|