View Single Post
  #1  
Old 08-22-2005, 08:49 AM
Mu5icMan Mu5icMan is offline
 
Join Date: Aug 2003
Posts: 55
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Need help with this code 3.0.1 -> 3.5 rc2

I have this code to display a log of who has downloaded what attachments and need help modifying it to work with 3.5 rc2.

PHP Code:
<?php

// SETUP SECURITY BELOW

$fs = array(
        
        
// "1" => "22" ... 1 is the forum ID and 22 is the userID. This line will allow access
        //                 to the report for forum 1 only to userID 22. Make sure to add a comma
        //                 if you add a new line.
        //                 Separate userid's with |22|

        
);

// Nothing to edit below this line...................................

require_once('./global.php');

if (empty(
$f) or empty($bbuserinfo['userid'])) {
    exit;
}

if (!
strstr($fs[$f],"|".$bbuserinfo['userid']."|")  and $bbuserinfo['usergroupid']!=6) {
    
show_nopermission();
    exit;
}

?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> Download Report </TITLE>
<style type="text/css">
td,body {
    FONT-FAMILY: Verdana,Arial,Helvetica,sans-serif;
    FONT-SIZE: 11px;
    COLOR: #000000;
}
</style>
</HEAD>

<BODY>
<font face="arial" size="2">
<?

switch($sort) {

    case "username":
        $orderby="username DESC";
        break;
    case "at":
        $orderby="attachmentid DESC";
        break;
    case "dl":
        $orderby="total DESC";
        break;
    case "ld":
        $orderby="dateline DESC";
        break;
    case "ip":
        $orderby="ipaddress ASC";
        break;
    
    default:
        $orderby="username DESC";
    
}

$forum=$DB_site->query_first("SELECT title FROM forum WHERE forumid='$f'");

echo "<b>".$bbtitle." download report - Forum: <i>".$forum['title']."</i><br /><br />";

echo "<table cellspacing=12><tr><td><a href=\"client_report.php?f=$f&sort=username\">Username</a></td><td><a href=\"client_report.php?f=$f&sort=at\">Attachment</a></td><td><a href=\"client_report.php?f=$f&sort=dl\"># of DL's</a></td><td><a href=\"client_report.php?f=$f&sort=ld\">Last Download</a></td><td><a href=\"client_report.php?f=$f&sort=ip\">IP Address</a></td></tr>";

$reports = $DB_site->query("SELECT u.userid, u.username, d.attachmentid, d.total, d.dateline, d.ipaddress, p.threadid, t.forumid
FROM user u 
LEFT JOIN downloads d ON u.userid=d.userid 
LEFT JOIN attachment AS a ON a.attachmentid=d.attachmentid 
LEFT JOIN post AS p ON p.postid=a.postid 
LEFT JOIN thread t ON p.threadid=t.threadid
 WHERE t.forumid='$f' ORDER BY $orderby");

while ($report=$DB_site->fetch_array($reports)) 
{    
    echo "<tr>";
    echo "<td align=\"left\"><a href=\"member.php?action=getinfo&userid=$report[userid]\" target=\"_blank\">".$report['username']."</a></td>";
    //echo "<td align=\"center\">".$report['userid']."</td>";
    echo "<td align=\"center\"><a href=\"showthread.php?threadid=$report[threadid]\" target=\"_blank\">".$report['attachmentid']."</a></td>";
    echo "<td align=\"center\">".$report['total']."</td>";
    echo "<td align=\"center\">".date("F j, Y, g:i a",$report['dateline'])."</td>";
    echo "<td align=\"center\">".$report['ipaddress']."</td>";
    echo "</tr>";
}


?>
</font>
</BODY>
</HTML>
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01616 seconds
  • Memory Usage 1,798KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_php
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete