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
"Who Is Online (Shouting)" in the vbShout shoutbox Details »»
"Who Is Online (Shouting)" in the vbShout shoutbox
Version: 1.00, by Hellcat Hellcat is offline
Developer Last Online: Apr 2014 Show Printable Version Email this Page

Version: 3.5.3 Rating:
Released: 01-22-2006 Last Update: 01-23-2006 Installs: 124
Template Edits
Additional Files  
No support by the author.

The original vbShout is required for this (obviously) and can be downloaded here:
https://vborg.vbsupport.ru/showthread.php?t=93097


Because my members keep using the shoutbox more as a chat room, they asked if it would be possible to get a list of users currently online/participating in the shoutbox.
OK, and this is what I smashed together as an answer to this request

This addon adds an IRC like userlist to the right side of the shoutbox.
Like the shoutbox itself, the userlist gets updated with AJAX calls as well, so it's always up-to-date, no reloading required

Technically it shows a list of everyone who shouted in the last three minutes.
Who hasn't shouted for three minutes is considered "to be somewhere else" and no longer available to talk to, and so does not get listed anymore.


*INSTALLATION*
================
Is pretty easy.
Just upload the "vbshoutwol.php" to your forums root (i.e. .../forum/) and do the two edits (described in the README) to the "forumhome_vbshout" template for all styles you wanna use the WOL list on.

If you have the "Template Manager" installed on your board you can simply import the template .XML also included in this archive - this saves you the manual edits

"Template Manager" can be found here:
https://vborg.vbsupport.ru/showthread.php?t=91038

Have fun!

Show Your Support

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

Comments
  #62  
Old 09-22-2006, 01:17 AM
Chicago_VLNU_4s Chicago_VLNU_4s is offline
 
Join Date: Mar 2006
Location: Chicago
Posts: 453
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

this is very nice! INSTALLED!
Reply With Quote
  #63  
Old 01-06-2007, 02:41 PM
tekstylez tekstylez is offline
 
Join Date: Aug 2006
Location: Philly
Posts: 129
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

tried installing this... I was getting
"Loading...." and nothing would happen, so I uninstalled the hack, still "loading...." Then, I completely uninstalled vbshout, reinstalled, still the same problem... Any help here?
Reply With Quote
  #64  
Old 01-07-2007, 12:48 AM
Doc.Blade Doc.Blade is offline
 
Join Date: Mar 2006
Location: Gold Coast - Australia
Posts: 18
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Seems to work perfectly with vBulletin 3.6.4, great stuff!
Reply With Quote
  #65  
Old 01-26-2007, 03:12 PM
Nathan2006's Avatar
Nathan2006 Nathan2006 is offline
 
Join Date: Feb 2006
Location: UK
Posts: 862
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks Hell cat

Install
Reply With Quote
  #66  
Old 01-26-2007, 04:25 PM
zemic zemic is offline
 
Join Date: Sep 2004
Posts: 47
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Anyone come accross a problem with a user being stuck in the list of chatters?? I've got a user there for a couple of weeks now. Doesnt make a difference if he comes online or not his name is there.

I've tried disabling all plugins. Reverted templates. Put the code back in the templates. No joy. This "list" of active users must be stored somewhere, but where? No database table was created, so I cant think where.

Any ideas?
Reply With Quote
  #67  
Old 01-26-2007, 04:36 PM
zemic zemic is offline
 
Join Date: Sep 2004
Posts: 47
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Simple and effective............Re-installed VBShout. Didnt have to take off this mod as well. If someone has an easier way of doing it, please post. But if you're desperate for a solution, this works
Reply With Quote
  #68  
Old 02-09-2007, 08:26 PM
Mischievious Mischievious is offline
 
Join Date: Feb 2004
Posts: 86
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I keep getting an Unknown Location for this plugin in the who's online list, when I want it to show "Viewing Index". Is there anyone out there who can fix this for me? Thanks!
Reply With Quote
  #69  
Old 03-14-2007, 10:32 AM
All_Starzes All_Starzes is offline
 
Join Date: Jan 2007
Posts: 5
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello....

This hack for the Shoutbox vb 2.1 is great but i have an error in Internet Explorer....
In Firefox its all perfect.

erro ist in IE 'User' is null or no object... in this code snip:

Code:
function showUsers()
{
	if (UserRequest)
	{
		if (UserRequest.handler.readyState == 4 && UserRequest.handler.status == 200 && UserRequest.handler.responseText)
		{
			Users                  = fetch_object('vbshoutwolusers')
			Users.innerHTML = UserRequest.handler.responseText
			setTimeout('requestUsers()', 10000)
		}
	}
}
I hope someone can help me.... please...
i will be crazy
Reply With Quote
  #70  
Old 03-15-2007, 11:07 PM
dbirosel dbirosel is offline
 
Join Date: Feb 2007
Location: San Diego
Posts: 587
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by All_Starzes View Post
Hello....

This hack for the Shoutbox vb 2.1 is great but i have an error in Internet Explorer....
In Firefox its all perfect.

erro ist in IE 'User' is null or no object... in this code snip:

Code:
function showUsers()
{
	if (UserRequest)
	{
		if (UserRequest.handler.readyState == 4 && UserRequest.handler.status == 200 && UserRequest.handler.responseText)
		{
			Users                  = fetch_object('vbshoutwolusers')
			Users.innerHTML = UserRequest.handler.responseText
			setTimeout('requestUsers()', 10000)
		}
	}
}
I hope someone can help me.... please...
i will be crazy
Works great on opera and ie right now. Question how do i set the width, my username is Caraudiojunkyard.com and the horizontal scrollbar shows up.
Reply With Quote
  #71  
Old 03-15-2007, 11:28 PM
dbirosel dbirosel is offline
 
Join Date: Feb 2007
Location: San Diego
Posts: 587
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nevermind it was a easy fix for the width! Thank you!! I love this!!
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:30 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.05123 seconds
  • Memory Usage 2,310KB
  • 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_code
  • (1)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