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

Reply
 
Thread Tools
Cyb - Top Posters In Month X Details »»
Cyb - Top Posters In Month X
Version: 1.5, by Valter Valter is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Category: Statistics Modifications - Version: 3.6.8 Rating:
Released: 12-08-2006 Last Update: 09-14-2007 Installs: 220
Uses Plugins Template Edits
 
No support by the author.

vB 3.7 VERSION HERE:
https://vborg.vbsupport.ru/showthread.php?t=177963


===

Info:
Top posters statistics for any single month


Installation:
Import XML file (as product) through AdminCP: Plugin System > Manage Products > [Add/Import Product]


To set options go to:
vBulletin Options > Cyb - Top Posters In Month X


Versions:
v1.0 - Dec 09. 2006.
-Initial release
v1.1 - Mar 07. 2007.
-Text fields changed to menus
-Guests automatically excluded from stats
-Updated query for better compatibility with different servers
-Updated ACP settings to allow you to list available years and number of results in menus
v1.2 - May 01. 2007.
-Bug fix (post count in current month bigger than total post count for some users)
-Improved compatibility with right-to-left styles
-Some code optimizations
v1.3 - Aug 05. 2007.
-Added page navigation
-Added option to view top posters in whole year
-Added option to exclude users from stats
-Added option to exclude forums from counts
-Group membership checking works now for supplementary usergroups too
v1.4 - Aug 06. 2007.
-Fixed bug where guest posts are counted and shown as blank line in stats
-Page navigation also shown at the bottom of the page
v1.5 - Sep 15. 2007.
-Another "unknown poster" bug fix
-Fixed bug where month is switched to current one on page select
-Easier to set years (set starting year only, others are generated automatically)
-Several minor bug fixes...


Click INSTALL if you like this hack.

Show Your Support

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

Comments
  #12  
Old 12-09-2006, 04:27 PM
Valter Valter is offline
 
Join Date: Aug 2005
Location: Sarajevo
Posts: 2,432
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Live demo here:
http://www.bihforum.com/misc.php?do=cybtpimx

It's in Bosnian but you can see all you need.


Kihon,

Be sure you have put right usergroup IDs and separated them with ','.
Reply With Quote
  #13  
Old 12-09-2006, 04:37 PM
Quantnet Quantnet is offline
 
Join Date: Nov 2006
Location: NYC
Posts: 649
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

very nice. Installed.

It would be nicer if the month and year box have drop down menu instead of typing in. Just a suggestion
Reply With Quote
  #14  
Old 12-09-2006, 06:23 PM
lovelypk lovelypk is offline
 
Join Date: Oct 2005
Posts: 87
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

cool. Installed.
Reply With Quote
  #15  
Old 12-10-2006, 01:32 PM
Kihon Kata Kihon Kata is offline
 
Join Date: Nov 2003
Posts: 763
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

of course. This was an easy hack to understand and I thought I understood it correctly.

http://www.makeuptalk.com/images/temp/test1.jpg

http://www.makeuptalk.com/images/temp/test2.jpg

Many of my my moderators and admins are on that page

Not working

Quote:
Originally Posted by Cybernetec View Post
Kihon,

Be sure you have put right usergroup IDs and separated them with ','.
Reply With Quote
  #16  
Old 12-11-2006, 10:28 AM
Valter Valter is offline
 
Join Date: Aug 2005
Location: Sarajevo
Posts: 2,432
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi Kihon,

Screenshot 2 has nothing with my hack.
As I can see at the bottom of the table on screenshot it's some Paul M's hack.

To access top posters in month x page you need to point your browser to FORUMS/misc.php?do=cybtpimx
Reply With Quote
  #17  
Old 12-11-2006, 12:44 PM
Kihon Kata Kihon Kata is offline
 
Join Date: Nov 2003
Posts: 763
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Cybernetec View Post
Hi Kihon,

Screenshot 2 has nothing with my hack.
As I can see at the bottom of the table on screenshot it's some Paul M's hack.

To access top posters in month x page you need to point your browser to FORUMS/misc.php?do=cybtpimx
LMAO! You're right. OMG. Sorry! Looking/working good now.
Reply With Quote
  #18  
Old 12-15-2006, 07:24 PM
zethon zethon is offline
 
Join Date: May 2005
Posts: 137
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I changed the following query:
PHP Code:
            $cub_tpim_get $vbulletin->db->query_read_slave("
                SELECT COUNT(post.dateline) AS cybpcount, post.userid, user.username, user.usergroupid, post.visible, user.posts, user.joindate
                FROM " 
TABLE_PREFIX "post AS post
                LEFT JOIN " 
TABLE_PREFIX "user AS user ON (post.userid = user.userid)
                WHERE post.visible = '1' AND post.dateline > 
$fromtime AND post.dateline < $totime $cybexclgroups
                GROUP BY userid
                ORDER BY cybpcount
                DESC LIMIT 
$nrofresults
            "
); 
I changed it to:

Quote:
WHERE post.visible = '1' AND post.dateline > $fromtime AND post.dateline < $totime $cybexclgroups AND post.userid != 0
I allow some Guest posts. These were being included in the original script with blank usernames. This took care of the problem.
Reply With Quote
  #19  
Old 12-16-2006, 10:06 AM
Quantnet Quantnet is offline
 
Join Date: Nov 2006
Location: NYC
Posts: 649
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks Mike-D
Works great
Reply With Quote
  #20  
Old 12-31-2006, 09:06 PM
hoopsta hoopsta is offline
 
Join Date: Jan 2003
Posts: 84
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

what is the actual url to find this info? I have a custom template with no drop-down box
Reply With Quote
  #21  
Old 01-01-2007, 01:03 PM
Terminatoronly's Avatar
Terminatoronly Terminatoronly is offline
 
Join Date: Mar 2006
Posts: 313
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks for releasing this hack i need it much installed and nominated for mod of the month
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 07:39 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.04609 seconds
  • Memory Usage 2,312KB
  • 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
  • (3)pagenav_pagelink
  • (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