Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.5 > vBulletin 3.5 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Top 'X' Stats Details »»
Top 'X' Stats
Version: 1.2.2, by InfiniteWebby InfiniteWebby is offline
Developer Last Online: Aug 2007 Show Printable Version Email this Page

Version: 3.5.0 RC1 Rating:
Released: 07-27-2005 Last Update: 09-03-2006 Installs: 538
Uses Plugins Template Edits
Additional Files  
No support by the author.

[high]Security Fix: The uploaded version fixes all issues concerned with the recent security vulnerabilities. Sorry I haven't been around I don't really do anything plugin wise anymore.[/high]

Oh this version also works with all current version of vB 3.6. So feel free to use it on that version.

- InfiniteWebby

The low down

Well this is the vB 3.5.0 version of my hack. It is much the same as the original except that for some added stuff that I never released

Basically what it does is show the Top 'X' (edited via the vBulletin options in the admincp) newest members, top posters and newest replies on the Forumhome.

So what's new in this version?

Well for one all settings, which include amount of stats to show on forumhome and the extended page, thread title and username truncation, excluded forums and 'new' and 'old' thread prefixes.

Secondly there is now an extra page where you are able to choose exactly how many stats to show.

And lastly and most importantly it only takes 3 simple steps to install =)

What's on the horizon?

- More "stat blocks" including top reputation and top thread based on views or replies. If you have a suggestion please let me know, prefferably via pm.
- Proper can view other users threads permissions. At the moment I cannot think of how to block other people threads while still showing your own without totally re-writing the hack =(.

Version 1.2.1 is a re-release with who's online additions as well as some template changes. So you are best to reinstall the whole thing all over again.

So anyway enjoy and click install.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #282  
Old 04-13-2006, 12:35 AM
fanhost.com fanhost.com is offline
 
Join Date: Mar 2006
Location: New Hampshire
Posts: 26
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

anyone else having issues with this killing their server?
Reply With Quote
  #283  
Old 04-13-2006, 11:57 AM
DementedMindz DementedMindz is offline
 
Join Date: Jan 2006
Posts: 1,474
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by fanhost.com
anyone else having issues with this killing their server?
nope not at all..
Reply With Quote
  #284  
Old 04-17-2006, 03:47 AM
SCORPION1's Avatar
SCORPION1 SCORPION1 is offline
 
Join Date: Sep 2005
Location: mars i think
Posts: 66
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

whooooooo i have been looking for this hack nice one m8 went in like a dream:banana:
Reply With Quote
  #285  
Old 04-17-2006, 08:53 AM
vBB-vietnam vBB-vietnam is offline
 
Join Date: Apr 2006
Posts: 56
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I don't want forums isn't active appear the latest replies column. How to ?

Forum isn't Active mean: Will not appear but remains accessible if the forum's URL is known
(Edit in ACP -> Forum Manager -> Chose Forum, see blow:
Forum is Active (Will not appear if set to no, but remains accessible if the forum's URL is known)
)
Reply With Quote
  #286  
Old 04-25-2006, 02:36 PM
vBB-vietnam vBB-vietnam is offline
 
Join Date: Apr 2006
Posts: 56
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Help me, Please
Thank !
Reply With Quote
  #287  
Old 04-26-2006, 07:11 AM
plateau plateau is offline
 
Join Date: Apr 2005
Posts: 131
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by vBB-vietnam
I don't want forums isn't active appear the latest replies column. How to ?

Forum isn't Active mean: Will not appear but remains accessible if the forum's URL is known
(Edit in ACP -> Forum Manager -> Chose Forum, see blow:
Forum is Active (Will not appear if set to no, but remains accessible if the forum's URL is known)
)
i guess what u want is to exclude some forums from being calculated, and the current hack does not support this requirement.

what u need to do is to find out that part of code in php, and in the SQL try to exclude the those forums that u dont wanna be included in the statistic.

e.g.

search ......... where forumid != 1..............

hope the concept helps.
Reply With Quote
  #288  
Old 04-26-2006, 11:37 PM
obmob obmob is offline
 
Join Date: Nov 2001
Posts: 580
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hey, great mod, thanks... i was looking to translate it to spanish, but somehow i can't find the "Statistics - Top X" phrase
Reply With Quote
  #289  
Old 04-26-2006, 11:45 PM
vBB-vietnam vBB-vietnam is offline
 
Join Date: Apr 2006
Posts: 56
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by plateau
i guess what u want is to exclude some forums from being calculated, and the current hack does not support this requirement.

what u need to do is to find out that part of code in php, and in the SQL try to exclude the those forums that u dont wanna be included in the statistic.

e.g.

search ......... where forumid != 1..............

hope the concept helps.
I write small code:

PHP Code:
//List all forum isn't active & child
$childlist $db->query_first("SELECT childlist     FROM " TABLE_PREFIX " forum    WHERE displayorder='0' "); 
if(
$childlist['childlist'])
 {
 
$excludedforums $excludedforums ',' $childlist['childlist'];
 } 
but query_first "Executes a data-reading SQL query, then returns an array of the data from the first row from the result set". Now I want returns an array of the data from the all row from the result set. How to ? I don't know about mysql & vBulletin.
THank !
Reply With Quote
  #290  
Old 05-08-2006, 01:49 AM
e DoGG 4 sHo e DoGG 4 sHo is offline
 
Join Date: Jun 2005
Posts: 13
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi guys I have installed this Top 'X' Stats by InfiniteWebby hack on my board, and it works great on the default skin, but when I went to purchase a new skin for my site the hack does not appear on the forums at all. 1.2.1 is the version that I currently have on my site and I was told by another fellow vbulletin member that the hack should have automatically installed itself on to the new skin like the hide hack did. Is the hack just incompatible with the top x stat hack or am I doing something wrong.

Thanks for the help, I will really appreciate it.
Reply With Quote
  #291  
Old 05-11-2006, 08:46 PM
Puntal Puntal is offline
 
Join Date: May 2006
Posts: 47
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have just installed this also,but how do i show it at the top?It's Showing at the bottom of the page...

Cumps
Puntal
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 11:43 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.06112 seconds
  • Memory Usage 2,308KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)bbcode_php
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • 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
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete