Go Back   vb.org Archive > vBulletin Modifications > vBulletin 3.8 Modifications > vBulletin 3.8 Add-ons

Reply
 
Thread Tools
[AJAX] Who's Online Details »»
[AJAX] Who's Online
Version: 1.4, by mad@Max mad@Max is offline
Developer Last Online: Jun 2013 Show Printable Version Email this Page

Category: Mini Mods - Version: 3.8.x Rating:
Released: 02-12-2009 Last Update: 03-04-2009 Installs: 162
Uses Plugins Template Edits Auto-Templates
 
No support by the author.

Continue of this mod https://vborg.vbsupport.ru/showthread.php?t=105233

Modification allows to you refresh list of active users without reload main page.

Features:
  • button "refresh" for manual refresh (optional)
  • autorefresh (set in second), disable if set by "0"
  • permission user groups (excluding now) to use
  • compatible with legends and splitters of user groups
  • refresh string "Currently Active Users: ..."

Video on it (because it's ajax): http://www.youtube.com/watch?v=A3rsK8Th1ms

Spanish translate: https://vborg.vbsupport.ru/attachmen...2&d=1234675167
French translate (v1.3): https://vborg.vbsupport.ru/attachmen...9&d=1236427472

Download Now

File Type: xml product-awio Eng.xml (6.5 KB, 797 views)

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
2 благодарности(ей) от:
CheS06, TTayfun

Comments
  #12  
Old 02-14-2009, 01:13 AM
dothanhtrung dothanhtrung is offline
 
Join Date: May 2007
Posts: 41
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hey mad@Max,

I think you can use Yahoo's java package will better
Code:
<script type="text/javascript">
<!-- // Hack by Sinister -->
vBulletin.events.systemInit.subscribe(function()
{
	online.req();
});

online = {
	req:function()
	{
		YAHOO.util.Connect.asyncRequest("POST", "index.php?do=whoisonl", {
			success: this.show,
			failure: vBulletin_AJAX_Error_Handler,
			timeout: vB_Default_Timeout
		});
	},
	show:function(a)
	{
		fetch_object("whoisonl").innerHTML = a.responseText;
		setTimeout("online.req()", 180000);
	}
};
//Hack by Sinister -->
</script>
Reply With Quote
  #13  
Old 02-14-2009, 01:24 AM
mad@Max's Avatar
mad@Max mad@Max is offline
 
Join Date: Jul 2007
Location: Russia
Posts: 536
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

dothanhtrung, why do you think that this is better?
Reply With Quote
  #14  
Old 02-14-2009, 01:52 AM
WildFire.ca WildFire.ca is offline
 
Join Date: Jul 2008
Posts: 26
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nice Thx
Reply With Quote
  #15  
Old 02-14-2009, 02:24 AM
Alfa1's Avatar
Alfa1 Alfa1 is offline
 
Join Date: Dec 2005
Location: Netherlands
Posts: 3,537
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Awesome! Please add auto-refresh with user group permission. This way busy boards can use it.
Reply With Quote
  #16  
Old 02-14-2009, 04:29 AM
Arcade Fire's Avatar
Arcade Fire Arcade Fire is offline
 
Join Date: May 2008
Location: Menorca, Spain
Posts: 132
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Set to 0 the counter of most users ever online
Reply With Quote
  #17  
Old 02-14-2009, 05:54 AM
dothanhtrung dothanhtrung is offline
 
Join Date: May 2007
Posts: 41
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by mad@Max View Post
dothanhtrung, why do you think that this is better?
I tried to put it into product! But it can still not work on that package! So, i made necessary changes on other packages and it works very well with Autofresh! If you need,PM me and i will send this prodcut to you in order to you can reference it!
Reply With Quote
  #18  
Old 02-14-2009, 07:43 AM
redlabour's Avatar
redlabour redlabour is offline
 
Join Date: Mar 2004
Location: Wuppertal, NRW, Germany
Posts: 1,541
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Gunshot View Post
not compatible with this Hack
https://vborg.vbsupport.ru/showthrea...ight=usergroup

refresh results in the Legend disappearing
Same problem for me.
Reply With Quote
  #19  
Old 02-14-2009, 08:12 AM
Mark.B Mark.B is offline
Senior Member
 
Join Date: Feb 2004
Posts: 1,354
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by redlabour View Post
Same problem for me.
Yes, you'll find things like that because the modified code isn't included in the AJAX. I've got the spiders hack for Who's Online, and they disappear on refresh too, that's the only reason I cannot use this.

Unfortunately there are so many hacks for Who's Online that I don't think the author could possibly support all of them in this. But for an unaltered who's online, it works great.
Reply With Quote
  #20  
Old 02-14-2009, 08:22 AM
mad@Max's Avatar
mad@Max mad@Max is offline
 
Join Date: Jul 2007
Location: Russia
Posts: 536
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yes, many hacks using variable $activeusers from index.php...
Reply With Quote
  #21  
Old 02-14-2009, 10:08 AM
Rottimom Rottimom is offline
 
Join Date: Sep 2005
Posts: 23
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Arcade Fire View Post
Set to 0 the counter of most users ever online
Yes, and "Most members were have this one written contributions on a day" and "Most guests online within 24 hours were" and "Most members online within 24 hour were", all started to 0

After Refresh don?t show spider to "Currently Active Users"

Therefore uninstalled.
Reply With Quote
Reply

Thread Tools

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 04:04 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.05970 seconds
  • Memory Usage 2,327KB
  • Queries Executed 26 (?)
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_code
  • (4)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
  • (3)pagenav_pagelink
  • (11)post_thanks_box
  • (2)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (1)postbit_attachment
  • (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
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete