Go Back   vb.org Archive > vBulletin Modifications > Archive > Modification Graveyard
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Most Ever Users / Members / Guests / Chatters etc Details »»
Most Ever Users / Members / Guests / Chatters etc
Version: 1.10, by Paul M Paul M is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Category: Forum Home Enhancements - Version: 3.0.17 Rating:
Released: 05-08-2005 Last Update: Never Installs: 11
 
No support by the author.

This modification is no longer available or supported.

This hack performs two functions ;

Firstly - it seperately counts the most ever users, members & guests [and the timestamp they happened] for display in the Forumhome "What's Going On" section. At the moment this only records and displays the 'most ever users' (which is members + guests, and if often inflated by spiders etc).

To avoid cluttering the display it only displays one of the counts at a time - changing which one is displayed every 10 seconds. The existing 'most ever users' count [and timestamp] remain untouched, but obviously the new members and guests counts will only start from when you install the hack.

Secondly - this provides a most ever chatters/visitors/posters count for the three hacks I have released on vb.org (see my sig to find them). The code for these three 'plugins' is commented out by default - and can be removed if you don't require it (if you are unsure, then leave it - it won't do anything while commented out) . If you have one or more of these hacks installed, and want this extra functionality, then uncomment the relevant section of code for each hack.

This has been running for a week on our test system, and a couple of days live, without any problems, any support questions should be posted in this thread (read the sig first ).

Oh, and for the paranoid among you - no it doesn't add any queries to index.php.

Show Your Support

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

Comments
  #12  
Old 05-27-2005, 12:11 PM
oz_moses oz_moses is offline
 
Join Date: Oct 2004
Location: Sydney
Posts: 115
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi Paul, thanks for another great hack.
I'm wondering if there is any way to show both members and guest on consecutive lines?
Reply With Quote
  #13  
Old 05-27-2005, 02:41 PM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by oz_moses
Hi Paul, thanks for another great hack.
I'm wondering if there is any way to show both members and guest on consecutive lines?
There are always ways - I'm just not quite sure what you mean.
Reply With Quote
  #14  
Old 06-08-2005, 01:09 PM
oz_moses oz_moses is offline
 
Join Date: Oct 2004
Location: Sydney
Posts: 115
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Paul M
To avoid cluttering the display it only displays one of the counts at a time - changing which one is displayed every 10 seconds. The existing 'most ever users' count [and timestamp] remain untouched, but obviously the new members and guests counts will only start from when you install the hack.
Sorry, what I mean is I like cluttered! What's involved in showing most users and most guests all the time?
Reply With Quote
  #15  
Old 06-08-2005, 03:09 PM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by oz_moses
Sorry, what I mean is I like cluttered! What's involved in showing most users and most guests all the time?
Do you actually mean users or members (or both, meaning three lines in total with the guests ?).
Reply With Quote
  #16  
Old 06-08-2005, 03:28 PM
oz_moses oz_moses is offline
 
Join Date: Oct 2004
Location: Sydney
Posts: 115
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Sorry for been so unclear! I guess I would like to see:
Currently Active Users: 6 (2 members and 4 guests)
Moses , Ellie+ , yahoo! slurp(2) , msnbot
The most ever members online was 4 (Today at 11:50 AM)
The most ever guests online was 20 (05-31-2005 at 01:33 AM)
Reply With Quote
  #17  
Old 06-08-2005, 05:45 PM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

So you want them after the list of names.

Replace ;

PHP Code:
    switch(substr(date(s),0,1)) 
    {
        case 
0:
        case 
3:
            
$activeusers $maxonlinetext."<br />".$activeusers
            break;
        case 
1:
        case 
4:
            
$activeusers $maxgueststext."<br />".$activeusers
            break;
        case 
2:
        case 
5:
            
$activeusers $maxmemberstext."<br />".$activeusers
            break;
    } 
With ;

PHP Code:
            $activeusers $activeusers."<br />".$maxmemberstext."<br />".$maxgueststext 
Reply With Quote
  #18  
Old 10-12-2005, 10:50 AM
microzott microzott is offline
 
Join Date: Jan 2005
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

perfect paul
when (or where) for vb 3.5.0 gold ?
Reply With Quote
  #19  
Old 10-12-2005, 05:06 PM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Up to now no one has shown an interest in the 3.5 version - so I've not released it.

I'll see if I can package it up for posting this weekend.
Reply With Quote
  #20  
Old 10-13-2005, 05:23 AM
microzott microzott is offline
 
Join Date: Jan 2005
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks paul
Reply With Quote
  #21  
Old 10-20-2005, 06:25 AM
microzott microzott is offline
 
Join Date: Jan 2005
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

no news paul?
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 02:26 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.05476 seconds
  • Memory Usage 2,315KB
  • 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
  • (2)bbcode_php
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)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