The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
![]() |
|||||||||||||||||||||||||||
Who Downloaded This Attachment - for Gold
![]() Developer Last Online: Sep 2006 ![]() ![]()
// **********************************************
// ********************************************** // Hack to track Who Downloaded attachments // Old vb2 hack modified to vbulletin 3.0 Gold // Credit to TWTCommish for the original vb2 hack // https://vborg.vbsupport.ru/showthread.php?t=36900 // ********************************************** // ********************************************** 4 new templates 2 modified templates 1 modified php file 1 new php file This hack allows admins, supermods, and mods to see who downloads each file. If you want to allow other groups, just add/subtract them from whodownloaded.php on the top line as desired. Although I rewrote and tested this myself, and it works like a charm now, I'm not offering support for this. I'm just a Joe Average. This is an old old hack. I just had to change some words like "gettemplate" to "fetch_template" and "dooutput" to "print_output" and one instance of "post" changed to "attachment". Also had to modify table structures and of course figure out where to put everything. I'm fairly certain that this is up-to-snuff but don't take my word for it. It doesn't track IP's or how many times a user may have downloaded. It just brings up a popup window with the usernames that have downloaded this atachment. Who knows, maybe someone else will build upon this. Forgive me if I posted this in the wrong place or if it shouldn't be here at all. Mods, feel free to do what you wish with this. Just trying to give a little back to those who have taught me. // ********************************************** // create a new template - whodownloads // ********************************************** Code:
<html> <head> <title>Who Downloaded This?</title> $headinclude <script language="JavaScript">self.focus();</script> </head> <body> <table cellpadding="10" cellspacing="0" border="0" width="100%"><tr><td> <table cellpadding="4" cellspacing="$stylevar[cellspacing]" border="0" width="100%"> <tr> <td class="tcat" width="100%"><b>Total Downloads: $total</b></td> </tr> <tr> <td class="alt1" width="100%"><b>User</b></td> </tr> $whodownloadsbit <tr id="cat"> <td class="thead" width="100%" align="center"><a href="javascript:window.close();">Close Window</a></td> </tr> </table> </td></tr></table> </body> </html> // ********************************************** // ********************************************** // create a new template - whodownloadsbit // ********************************************** Code:
<tr> <td class="thead"><a href="member.php?s=$session[sessionhash]&action=getinfo&userid=$download[userid]" target="_blank">$download[username]</a></td> </tr> // ********************************************** // ********************************************** // create a new template - whodownloads_error // ********************************************** Code:
<tr> <td class="thead">No downloads found.</td> </tr> // ********************************************** // ********************************************** // create a new template - whodownloads_error_nop // ********************************************** Code:
<tr> <td class="thead">Sorry, no Permisson.</td> </tr> // ********************************************** // ********************************************** // Find this in template - headinclude // ********************************************** Code:
<script type="text/javascript" src="clientscript/vbulletin_global.js"></script> <if condition="$show['popups']"><script type="text/javascript" src="clientscript/vbulletin_menu.js"></script></if> // Change it to this // ********************************************** Code:
<script type="text/javascript" src="clientscript/vbulletin_global.js"></script> <if condition="$show['popups']"><script type="text/javascript" src="clientscript/vbulletin_menu.js"></script></if> <script language="JavaScript"> <!-- START HIDE function whodownloaded(attachmentid) { window.open ("whodownloaded.php?s=$session[sessionhash]&attachmentid=" + attachmentid, "whodownloaded", "toolbar=no, scrollbars=yes, resizable=no, width=240, height=300, top=50, left=50"); } --> </script> // ********************************************** // ********************************************** // Find this in template - postbit_attachment // ********************************************** Code:
<tr> <td><img class="inlineimg" src="$stylevar[imgdir_attach]/$attachment[attachmentextension].gif" alt="<phrase 1="$attachment[attachmentextension]">$vbphrase[file_type_x]</phrase>" width="16" height="16" border="0" style="vertical-align:baseline" /></td> <td><a href="attachment.php?$session[sessionurl]attachmentid=$attachment[attachmentid]" target="_blank">$attachment[filename]</a> ($attachment[filesize], <phrase 1="$attachment[counter]">$vbphrase[x_views]</phrase></td> </tr> // Change it to this // ********************************************** Code:
<tr> <td><img class="inlineimg" src="$stylevar[imgdir_attach]/$attachment[attachmentextension].gif" alt="<phrase 1="$attachment[attachmentextension]">$vbphrase[file_type_x]</phrase>" width="16" height="16" border="0" style="vertical-align:baseline" /></td> <td><a href="attachment.php?$session[sessionurl]attachmentid=$attachment[attachmentid]" target="_blank">$attachment[filename]</a> ($attachment[filesize], <phrase 1="$attachment[counter]">$vbphrase[x_views], </phrase></td> <td><a href="javascript:whodownloaded($attachment[attachmentid])">Who Downloaded This?</a>)</td> </tr> // ********************************************** // ********************************************** // create a new php file - whodownloaded.php // place it in the main forum (upload) directory // (same directory that has attachment.php) // ********************************************** Code:
<?php require("./global.php"); if (($bbuserinfo[usergroupid] == 6 OR $bbuserinfo[usergroupid] == 5 OR $bbuserinfo[usergroupid] == 7) AND $attachmentid) { $downloads = $DB_site->query("SELECT u.userid, u.username FROM user u WHERE u.downloads LIKE \"$attachmentid%\" OR u.downloads LIKE \"%$attachmentid%\" OR u.downloads LIKE \"%$attachmentid\" ORDER BY u.username ASC"); $total = $DB_site->query_first("SELECT counter FROM attachment WHERE attachmentid = $attachmentid"); $total = $total[counter]; if (!$DB_site->num_rows($downloads)) { eval("\$whodownloadsbit .= \"".fetch_template("whodownloads_error",1,0)."\";"); } else { while ($download = $DB_site->fetch_array($downloads)) { eval("\$whodownloadsbit .= \"".fetch_template("whodownloadsbit",1,0)."\";"); } } } else { eval("\$whodownloadsbit .= \"".fetch_template("whodownloads_error_nop",1,0)."\";"); } eval('print_output("' . fetch_template('whodownloads') . '");'); ?> // ********************************************** // ********************************************** // Find this in attachment.php // ********************************************** Code:
// or doing it once an hour $DB_site->shutdown_query(" INSERT INTO " . TABLE_PREFIX . "attachmentviews (attachmentid) VALUES ($attachmentid) "); } } // Change it to this // ********************************************** Code:
// or doing it once an hour $DB_site->shutdown_query(" INSERT INTO " . TABLE_PREFIX . "attachmentviews (attachmentid) VALUES ($attachmentid) "); } } // here's the who downloaded hack $dl = $DB_site->query_first("SELECT downloads FROM user WHERE userid = $bbuserinfo[userid]"); $comma = ($dl[downloads]) ? ',' : ''; $DB_site->query(" UPDATE user SET downloads = '$dl[downloads]$comma$attachmentid' WHERE userid = $bbuserinfo[userid] "); // ********************************************** // ********************************************** // Run this SQL Query from Admincp // ********************************************** Code:
ALTER TABLE user ADD COLUMN downloads TEXT NOT NULL; The query didn't change so I'D SUSPECT the old and new data is compatible. And make sure you have completely removed the old vb2 hack beforehand or I suspect this would create a conflict. Show Your Support
|
Comments |
#12
|
|||
|
|||
![]()
I couldnt find any of that code in my attachment.php file....
Where should I add this code since it's not in the file? |
#13
|
|||
|
|||
![]() Quote:
It's right above this line..... Code:
$extension = strtolower(file_extension($attachmentinfo['filename'])); |
#14
|
|||
|
|||
![]()
No, ur right. I found it. I was looking in admincp/attachment.php. I used my text scanner and it didnt find it at all.....
[high]* Fi_InCogNiTo goes off to look for another good scanner ![]() [/high] EDIT: Works ![]() |
#15
|
||||
|
||||
![]()
I had to change the postbit code a bit in order for the template ot work.
<a href="java_script_:whodownloaded($attachment[attachmentid])">Who Downloaded This?</a> The java_script_:whodownloaded($attachment[attachmentid]) should be changed to javascript:whodownloaded($attachment[attachmentid]); |
#16
|
|||
|
|||
![]()
Vivi, I'm confused.
What do you click now to get the popup?? That href line you modified is the click. The phrase "who downloaded this?" is the text I click to get the popup. Or are you saying you just added a semi-colon inbetween ) and " And if this semi colon is neccessary, then wouldn't it go after the question mark in the phrase?? Forgive me for questioning you. I'm just trying to learn why. And moreso, why mine works for me. |
#17
|
||||
|
||||
![]()
It's already been done for vB3...
![]() |
#18
|
|||
|
|||
![]() Quote:
I pulled all kinds of searches here over the last few months. I'd love to see a more advanced version if there is one floating around. |
#19
|
||||
|
||||
![]()
I wouldn't call this a "Major Addition" But it's useful.
/me Clicks install |
#20
|
|||
|
|||
![]()
Hi
Seems all members can see this , where do u delete the usergroup that you do NOT want to see this ? Im looking around the .php file but wanna make sure I do this correct . Thanks XJ |
#21
|
|||
|
|||
![]()
Hrm..
Anyone manage to get this working on Version 3.0.6? o_o |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|