The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Details »» | |||||||||||||||||||||||||
For vBulletin version: 2.3.x
Files added: vbs_counter.php, vbstats.php, vbstats_admin.php, vbstats_set.php Files to edit: None! (all hacking is optional) Current Version: 230.b (02.14.03 - 3am CST) What does it do?
Check the samples: Stats http://www.talkloud.net/forums/vbstats.php Incoming Referrals http://www.talkloud.net/forums/vbsta...ction=incoming Member Referrals http://www.talkloud.net/forums/vbsta...on=memberrefer Top Posters http://www.talkloud.net/forums/vbsta...ion=topposters Top Threads/Forums http://www.talkloud.net/forums/vbsta...ion=topthreads Top Visitors Countries http://www.talkloud.net/forums/vbsta...action=country Here's the newest version, it's only been a year and a half since the last update! Translations have been removed as it just made it easy for people to get the hack even without a license. I am hoping people who make translations will be kind enough to post here. Special Note: I am about as far as it gets from a PHP guru. This is my first hack or addon or whatchamacallit. If this somehow nukes your system Im quite apologetic, but I know you will all be smart enough to BACK UP YOUR DATABASE BEFORE INSTALLING THIS.. I have faith Brad and Chen have both checked this out and given their stamps on it but that doesnt mean it will all Gel for you. Be smart, back it up. Install: There is a self install file that takes care of the templates and tables, simply unzip the package and upload it (with paths) to your vbulletin directory. Then run the install. Please be sure you add your site (yoursite.com) to the excluded urls in the CP. If you dont your site will get counted as a referrer and that can get messy. Demo: You can of course see the demo at http://www.talkloud.net/ however if you'd like to see it in use on some other boards check out vbstats page where I will try to keep a list of installs for you to check out. If you do install it please let me know so I can put your site up! I tested this on my test forum, and on one public forum, and all went well, if there are any problems you notice please report them here as soon as possible. ------- CHANGELOG [230.b] Changed Active Users to fix a small bug. [230.b] Like, tested it and stuff.. [230.a] The MySQL Row=O error is now customized to say add to the template!!!! hopefully no more "where did I go wrong?" posts! Muahahaha! [230.a] Fixed Upgrade Counter (?action=upgrade) [230.a] Set Excluded URL.. Now lists URLS [230.a] Updated Istall to be compatible with vB 2.3.0 [230.a] Changed Most Number Results to Have a , format (ie 1,000 instead of 1000) [230.a] I decided Frosted Flakes really are pretty tasty. [230.a] Implemented Kurafires Member Referrer Changes, thanks Kura [230.a] Implemented Kurafires Top Posters rewrite. DEAR GOD CHECK THE SECOND POST OF THIS THREAD BEFORE YOU ASK A QUESTION!!!! Show Your Support
|
Comments |
#312
|
||||
|
||||
Quote:
|
#313
|
||||
|
||||
Well when I grab the code I want from vbstats and add it just about anywhere in index.php I get a parse error on the last line of index.php which is ?>
|
#314
|
||||
|
||||
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]); |
#315
|
||||
|
||||
Quote:
|
#316
|
||||
|
||||
Yep, I had noticed that and removed that. I also tried putting the variables part up at the top of index.php with the other variables and then the relevant other vbstat code below elsewhere in index but every time I get a parse error on whatever line number ?> happens to be on. What exactly does a parse error means. Doesn't that mean I coded something wrong?
|
#317
|
||||
|
||||
Quote:
that is awesome man, how did you do that? |
#318
|
||||
|
||||
Thanks.
I just placed this code into my index.php: PHP Code:
|
#319
|
||||
|
||||
Quote:
i think you should make this a mini-release i am not smart enough to figure all that myself......but i am smart enough to follow detailed directions |
#320
|
||||
|
||||
I'm not sure if vbstats added this to global.php, or if I did, but this is in there above the "// ###################### Start sessions #######################" section.
PHP Code:
|
#321
|
||||
|
||||
Thanks for making me look into that. I was right, I moved the code I had in global.php to index.php, and now threads load considerably faster again.
I placed the section I quoted from global.php to the same place, just after, I had the other code in index.php. |
Thread Tools | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|