The code I am trying to insert into index.php from vbstats.php is:
Code:
// #########################################
// vBStats by Bane Macleod (http://www.talkloud.net/)
// (c) influx9.Design
// For vBulletin version 2.0.3
// (c) 2001 Jelsoft Enterprises, Ltd.
// #########################################
// Thanks for trying out vbStats. I would appreciate you leaving
// everything as is (including gratis) and if you do that you certainly
// deserve a thank you, and I do, however I know most of you
// won't so here is the one thing I ask. Please do not claim this work
// as your own or remove the header/hack notifications. This is
// peoples work and they should get credit.
// #########################################
// ###############################
// Other Vars (DO NOT MODIFY!!!)
// ###############################
$tl_statsv="203.2";
$tl_statsu="talkloud.net/vbstats/";
$tltoday=time()-(86400);
// ###############################
require('./global.php3'); // vBulletin Globals
require('./vbslang_en.php3'); // Future Language File
if (!isset($action) or $action=="") {
$action="stats";
}
// ###############################
// Stats Page
// ###############################
// Hacks Incorperated:
// Colored Users Online Hack by Afterburner
// Top Referrer by FireFly
// ###############################
if ($action=="stats") {
// ########## Breadcrumb
$tl_title=""._STATS."";
$breadcrumb=""._SITESTATS."";
$statistic=$DB_site->query_first("SELECT statloc,useonnow,usequeue,usevbp,usevbpl,queuemax,color1,color2,color3,color4,acolor,scolor,mocolor,mecolor,ucolor,norefer1 FROM vbstats_options");
$startdate=$statistic[startdate];
$statloc=$statistic[statloc];
$useonnow=$statistic[useonnow];
$usequeue=$statistic[usequeue];
$usevbp=$statistic[usevbp];
$usevbpl=$statistic[usevbpl];
$queuemax=$statistic[queuemax];
$color1=$statistic[color1];
$color2=$statistic[color2];
$color3=$statistic[color3];
$color4=$statistic[color4];
$acolor=$statistic[acolor];
$scolor=$statistic[scolor];
$mocolor=$statistic[mocolor];
$mecolor=$statistic[mecolor];
$ucolor=$statistic[ucolor];
$norefer1=$statistic[norefer1];
// ########## Member Stats
// How Many?
$numbersmembers=$DB_site->query_first('SELECT COUNT(*) AS users,MAX(userid) AS max FROM user');
$numbermembers=$numbersmembers['users'];
// Active/Non?
$snonposters=$DB_site->query_first('SELECT COUNT(*) AS users,MAX(userid) AS max FROM user WHERE posts=0');
$nonposters=$snonposters['users'];
$activemembers=$numbermembers-$nonposters;
$activityrate=sprintf("%.2f",(1000*$activemembers/$numbermembers));
// Newest Member
$getnewestusers=$DB_site->query_first("SELECT userid,username FROM user WHERE userid=$numbersmembers[max]");
$newusername=$getnewestusers['username'];
$newuserid=$getnewestusers['userid'];
// PM Totals
$totalpms = $DB_site->query_first("SELECT count(*) as pmcount FROM privatemessage");
$totalpm = $totalpms[pmcount];
// Staff
$anum = mysql_num_rows(mysql_query("select * from user WHERE usergroupid=5 or usergroupid=6 or usergroupid=7"));
// Top Referrer
if ($usereferrer) {
$topref = $DB_site->query_first("SELECT COUNT(*) AS referrals, user.username, user.userid FROM user AS users
LEFT JOIN user ON (users.referrerid = user.userid)
WHERE users.referrerid <> 0 AND
user.userid NOT IN ($norefer1)
GROUP BY users.referrerid
ORDER BY referrals DESC
LIMIT 1");
$tl_refid = $topref[userid];
$tl_refname = $topref[username];
$tl_refnum = $topref[referrals];
}
// ########## Post/Thread Stats
// Total
$countposts=$DB_site->query_first('SELECT COUNT(*) AS posts FROM post');
$totalposts=$countposts['posts'];
if ($totalposts=='') { $totalposts=0; }
$countthreads=$DB_site->query_first('SELECT COUNT(*) AS threads FROM thread');
$totalthreads=$countthreads['threads'];
if ($totalthreads=='') { $totalthreads=0; }
// Today [FireFly]
$getpoststoday=$DB_site->query_first("SELECT count(*) AS count FROM post WHERE dateline>='$tltoday'");
$poststoday=$getpoststoday[count];
$getthreadstoday=$DB_site->query_first("SELECT count(*) AS count FROM thread WHERE dateline>='$tltoday'");
$threadstoday=$getthreadstoday[count];
// Views
$boardviews = $DB_site->query_first("SELECT SUM(views) AS threadviews FROM thread");
$totalviews = number_format($boardviews[threadviews]);
// ########## Visits Today
$vbs_atviews = $DB_site->query_first("SELECT count FROM vbstats_date WHERE date = '$vbs_date'");
$todayviews = number_format($vbs_atviews[count]);