View Single Post
  #2  
Old 23rd June 2011, 12:06
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
yes its noavatar.gif
yes go to admin pannel=>settings and set site as private
PHP Code:
<?php
/*
*----------------------------phpMyBitTorrent V 2.0-----------------------------*
*--- The Ultimate BitTorrent Tracker and BMS (Bittorrent Management System) ---*
*--------------   Created By Antonio Anzivino (aka DJ Echelon)   --------------*
*-------------               http://www.p2pmania.it               -------------*
*------------ Based on the Bit Torrent Protocol made by Bram Cohen ------------*
*-------------              http://www.bittorrent.com             -------------*
*------------------------------------------------------------------------------*
*------------------------------------------------------------------------------*
*--   This program is free software; you can redistribute it and/or modify   --*
*--   it under the terms of the GNU General Public License as published by   --*
*--   the Free Software Foundation; either version 2 of the License, or      --*
*--   (at your option) any later version.                                    --*
*--                                                                          --*
*--   This program is distributed in the hope that it will be useful,        --*
*--   but WITHOUT ANY WARRANTY; without even the implied warranty of         --*
*--   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          --*
*--   GNU General Public License for more details.                           --*
*--                                                                          --*
*--   You should have received a copy of the GNU General Public License      --*
*--   along with this program; if not, write to the Free Software            --*
*-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA --*
*--                                                                          --*
*------------------------------------------------------------------------------*
*------              ©2005 phpMyBitTorrent Development Team              ------*
*-----------               http://phpmybittorrent.com               -----------*
*------------------------------------------------------------------------------*
*-----------------   Sunday, September 14, 2008 9:05 PM   ---------------------*
*/
OpenTable("Newest Members");
global 
$db_prefix;
$file "cache/cache_newestmemberblock.txt";
$expire 60// time in seconds
if (file_exists($file) &&
    
filemtime($file) > (time() - $expire)) {
    
$newestmemberrecords unserialize(file_get_contents($file));
}else{ 
    
$sql "SELECT id AS id, avatar AS avatar, can_do AS can_do, IF(name IS NULL, username, name) as name FROM ".$db_prefix."_users WHERE active = 1 AND ban ='0' ORDER BY id DESC LIMIT 5";
    
$newestmemberquery $db->sql_query($sql);
    
    while (
$newestmemberrecord $db->sql_numrows($newestmemberquery) ) {
        
$newestmemberrecords[] = $newestmemberrecord;
    }
    
$OUTPUT serialize($newestmemberrecords);
    
$fp fopen($file,"w");
    
fputs($fp$OUTPUT);
    
fclose($fp);
// end else 
$new_users = array();
if (
$newestmemberrecords == ""){
echo 
"No new members";
}else{
echo 
"<table width=\"100%\" class=\"torrenttable\" border=\"0\" cellpadding=\"3\" ><tr>";
    foreach (
$newestmemberrecords as $id=>$row) { 
        echo 
"<td padding=\"0\">\n<center>";
                        if (
$row["avatar"] != "blank.gif") echo "<img height=\"50px\" src=\"avatars/".$row["user_avatar"]."\" alt=\"".str_replace("**user**",$row["name"],_btalt_avatar)."\" border=\"0\">";
                        else echo 
pic("noavatar.png");
       echo 
"<br />";
        echo 
"<a href='user.php?op=profile&id=".$row['id']."'><font color=\"".getusercolor($row["can_do"])."\">".htmlspecialchars($row["name"])."</font></a>\n</center></td>\n";

    }
echo 
"</tr></table>\n";
}
CloseTable();
?>
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/

Last edited by joeroberts; 26th June 2011 at 14:19.
Reply With Quote