Post Reply 
Deleting Old Attachments
Author Message
ZiNgA BuRgA
Smart Alternative

Posts: 17,022.2988
Threads: 1,174
Joined: 19th Jan 2007
Reputation: -1.71391
E-Pigs: 446.1274
Online
Post: #9
RE: Deleting Old Attachments
I don't really mind space usage, and there's enough bandwidth for now.

I have a feeling MyBB may be screwing up the bandwidth estimation from overflowing or similar.

EDIT: uh, I see the problem - looks like whoever coded the attachment statistics code had a brain fart:

PHP Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
	$end = $start + $perpage;
	$lower = $start+1;

	$query = $db->query("
		SELECT a.*, p.subject, p.dateline, t.tid, t.subject AS threadsubject
		FROM ".TABLE_PREFIX."attachments a
		LEFT JOIN ".TABLE_PREFIX."posts p ON (a.pid=p.pid)
		LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid)
		WHERE a.uid='".$mybb->user['uid']."'
		ORDER BY p.dateline DESC LIMIT {$start}, {$perpage}
	");

	$bandwidth = $totaldownloads = 0;
	while($attachment = $db->fetch_array($query))
	{
// ...
			// Add to bandwidth total
			$bandwidth += ($attachment['filesize'] * $attachment['downloads']);
			$totaldownloads += $attachment['downloads'];
	}


I presume the stats are different if you're viewing a different page?

The space used should be correct in the above picture.  If you're interested in the real stats for you:
# attachments: 235
Total # downloads: 91967
Estimated bandwidth usage (which is just # downloads × size of attachment): 135.76GB

(This post was last modified: 28/06/2011 04:21 PM by ZiNgA BuRgA.)
28/06/2011 04:11 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Post Reply 


Messages In This Thread
Deleting Old Attachments - Mr. Shizzy - 28/06/2011, 10:32 AM
RE: Deleting Old Attachments - Joom - 28/06/2011, 10:40 AM
RE: Deleting Old Attachments - Mr. Shizzy - 28/06/2011, 10:49 AM
RE: Deleting Old Attachments - Mr. Shizzy - 28/06/2011, 10:58 AM
RE: Deleting Old Attachments - Joom - 28/06/2011, 11:02 AM
RE: Deleting Old Attachments - I ♥ GUCCI - 28/06/2011, 11:09 AM
RE: Deleting Old Attachments - lembas - 28/06/2011, 11:40 AM
RE: Deleting Old Attachments - xBu - 28/06/2011, 11:44 AM
RE: Deleting Old Attachments - ZiNgA BuRgA - 28/06/2011 04:11 PM
RE: Deleting Old Attachments - bsanehi - 28/06/2011, 04:32 PM
RE: Deleting Old Attachments - squee666 - 28/06/2011, 06:05 PM
RE: Deleting Old Attachments - S7* - 29/06/2011, 10:40 AM

Forum Jump:


User(s) browsing this thread: 1 Guest(s)

 Quick Theme: