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
HITCounter - Link Forum Counter Details »»
HITCounter - Link Forum Counter
Version: 1.3, by b6gm6n b6gm6n is offline
Developer Last Online: Aug 2014 Show Printable Version Email this Page

Version: 3.5.0 Rating:
Released: 08-04-2005 Last Update: 10-11-2005 Installs: 88
DB Changes Uses Plugins Template Edits
Additional Files  
No support by the author.

This is a port originally By Zajako and Mone.

With kind permission i've updated the mod for vBulletin 3.5, this version comes with an enhancement, i.e via your ACP (forum manager) you can adjust the starting value for any counter.

Installation is done easily via the importing of an xml file.

See screenshots!

Enjoy!

Update : Huge Respect to KirbyDE who really is the genius behind this mod, cheers dude.

Update 1.3 : optimized code - (no more updates to totals) - Thanx KirbyDE

If you use this mod please click Install - cheers!

Show Your Support

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

Comments
  #12  
Old 08-05-2005, 11:37 AM
b6gm6n's Avatar
b6gm6n b6gm6n is offline
 
Join Date: Aug 2002
Location: UK
Posts: 691
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by FleaBag
b6gm6n - is the username Kingpin related?
Kingpin the game/film? - well that would be telling!

-b6
Reply With Quote
  #13  
Old 08-06-2005, 12:37 AM
FleaBag's Avatar
FleaBag FleaBag is offline
 
Join Date: Dec 2001
Posts: 1,674
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The game...

If it is was just wondering if you were familiar with what was poisonville.com / is now poisonville.org. If not then you're probably wondering what the hell I'm talking about.
Reply With Quote
  #14  
Old 08-07-2005, 09:09 AM
Andreas's Avatar
Andreas Andreas is offline
 
Join Date: Jan 2004
Location: Germany
Posts: 6,863
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Just an idea to get rid of the remaining File Edit:
As Forums that act as Links don't have Threads, what about using the threadcount or replycount field for the Counter?
This way it would be automatically queried by cache_ordered_forums().
Reply With Quote
  #15  
Old 08-07-2005, 09:13 AM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by KirbyDE
Just an idea to get rid of the remaining File Edit:
As Forums that act as Links don't have Threads, what about using the threadcount or replycount field for the Counter?
This way it would be automatically queried by cache_ordered_forums().
But the link counter would show how many times the link had been clicked.
Reply With Quote
  #16  
Old 08-07-2005, 09:50 AM
Andreas's Avatar
Andreas Andreas is offline
 
Join Date: Jan 2004
Location: Germany
Posts: 6,863
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

And that wouldn't change if it just used another database field
Reply With Quote
  #17  
Old 08-07-2005, 09:53 AM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by KirbyDE
And that wouldn't change if it just used another database field
That'll work.
Reply With Quote
  #18  
Old 08-07-2005, 12:40 PM
b6gm6n's Avatar
b6gm6n b6gm6n is offline
 
Join Date: Aug 2002
Location: UK
Posts: 691
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i see what you mean...(i think) so i'd have to alter the template, i already have the extra database field... i dunno if this is possible using my limited knowledge of php/modding etc... i'd need some more advice

-b6
Reply With Quote
  #19  
Old 08-07-2005, 07:43 PM
Andreas's Avatar
Andreas Andreas is offline
 
Join Date: Jan 2004
Location: Germany
Posts: 6,863
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Install Code for new Version (I'd suggest to remove the old Install Code)
PHP Code:
$db->hide_errors();
$db->query_write("UPDATE " TABLE_PREFIX "forum SET replycount=linkhits WHERE link != ''");
$db->query_write("ALTER TABLE " TABLE_PREFIX "forum DROP linkhits");
$db->show_errors(); 
Uninstall-Code
PHP Code:
$db->query_write("UPDATE " TABLE_PREFIX "forum SET replycount=0 WHERE link != ''"); 
Then in the Plugins and Template change all references to linkhits into replycount - Done.
The File-Edit then will not be necessary any longer.
Reply With Quote
  #20  
Old 08-07-2005, 11:52 PM
Boofo's Avatar
Boofo Boofo is offline
 
Join Date: Mar 2002
Location: Des Moines, IA (USA)
Posts: 15,776
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by KirbyDE
Install Code for new Version (I'd suggest to remove the old Install Code)
PHP Code:
$db->hide_errors();
$db->query_write("UPDATE " TABLE_PREFIX "forum SET replycount=linkhits WHERE link != ''");
$db->query_write("ALTER TABLE " TABLE_PREFIX "forum DROP linkhits");
$db->show_errors(); 
Uninstall-Code
PHP Code:
$db->query_write("UPDATE " TABLE_PREFIX "forum SET replycount=0 WHERE link != ''"); 
Then in the Plugins and Template change all references to linkhits into replycount - Done.
The File-Edit then will not be necessary any longer.
And this will count link hits, too?
Reply With Quote
  #21  
Old 08-07-2005, 11:54 PM
Andreas's Avatar
Andreas Andreas is offline
 
Join Date: Jan 2004
Location: Germany
Posts: 6,863
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nah, that would only be the new Install/Uninstall Code for the Product.
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 10:47 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04999 seconds
  • Memory Usage 2,314KB
  • 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
  • (4)bbcode_php
  • (4)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
  • (1)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