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

Reply
 
Thread Tools
Flashchat: Who is chatting Details »»
Flashchat: Who is chatting
Version: 2.30, by Paul M Paul M is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Version: 3.0.x Rating:
Released: 12-17-2004 Last Update: 09-28-2005 Installs: 225
 
No support by the author.

This modification is no longer available or supported.

This is a simple ForumHome display of who is currently using your Flashchat.

Version 2.20 is for use with Flashchat 4.1.x - however, it may work with older versions of Flashchat if set-up correctly.

The main features of Version 2.xx are ;

1. It displays the list on Forum Home with the "Users online" display.

2. The list view is collapsable, so you just see the number.

3. Users who should display as coloured or bold etc should be displayed correctly. (based on the display usergroup)

4. If you 'hover' over a username it will show the room they are chatting in.

5. If the chat is empty, a simple "no one is chatting" message is displayed.


Note: This will not display the names of any bots in the chat, due to the strange way that flashchat stores this information.


With help from Cyricx a CPMS module is located in this post. (Version 2.20 only, unsupported - use at your own risk).

Show Your Support

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

Comments
  #222  
Old 07-29-2005, 07:17 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

The code is located in index.php, so it will only generate the list on the forumhome. You would need to install the hack code elsewhere to have it on all pages. This is discussed earlier in the thread - starting about here.
Reply With Quote
  #223  
Old 08-05-2005, 12:46 AM
derekivey derekivey is offline
 
Join Date: Apr 2005
Location: Pennsylvania, USA
Posts: 1,186
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

For some reason it doesn't show the name of the bot thats in the room, it just shows a blank space. Any ideas on what is wrong?
Reply With Quote
  #224  
Old 08-05-2005, 01:09 AM
Paul M's Avatar
Paul M Paul M is offline
 
Join Date: Sep 2004
Location: Nottingham, UK
Posts: 23,748
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hmm, yes ......

It's never going to show their name - as its not stored anywhere except in a text file .... what a daft system.

Sorry, but I suggest you set $showbots = false; in the hack code as it's never going to work. I'm going to remove that bit for now as it cannot query a database to get the information.

I'll look at it sometime after my holiday to see how easy it is to get the data from the text file it uses, but it may just end up that bots will not be displayed by name, just called "bot", or possibly something like "Users currently in the Chat: 4 (Members: 3, Bots: 1)" with just the list of members.
Reply With Quote
  #225  
Old 08-05-2005, 01:10 AM
derekivey derekivey is offline
 
Join Date: Apr 2005
Location: Pennsylvania, USA
Posts: 1,186
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok No Problem, I'll just do that.
Reply With Quote
  #226  
Old 08-05-2005, 08:19 AM
LTW LTW is offline
 
Join Date: Jun 2005
Posts: 17
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Paul M ... thank you for this ... i've clicked install.

I have a question / request ... i hope it's not already been asked, as i've not read every post in this thread ... but ...

I'd like to know if you can help me put the online chatters in the header? I'm currently using Chen / Erwin's Online Users Mod, which does this for the online users. I'd like for my chatters to be listed up there too. I'd like it setup exactly as you have it below, only displayed above as well.

Is this possible ... can you help me?

Thanks a Bunch.

LTW
Reply With Quote
  #227  
Old 08-05-2005, 01:36 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

Drop me a PM and I'll look when I return from holiday - I don't have time before.
Reply With Quote
  #228  
Old 08-11-2005, 02:40 AM
Prisoner Prisoner is offline
 
Join Date: Aug 2005
Location: Central Texas
Posts: 89
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I get the following error when I tried to install this.
Quote:
Warning: main(./chat/inc/config.php): failed to open stream: No such file or directory in /index.php on line 299

Fatal error: main(): Failed opening required './chat/inc/config.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/rwalker/public_html/forum/index.php on line 299
Anyone have any ideas? The forum and chat directories are at the same level...ie. /public_html/chat and public_html/forum.

Thanks!
Reply With Quote
  #229  
Old 08-11-2005, 10:19 AM
Prisoner Prisoner is offline
 
Join Date: Aug 2005
Location: Central Texas
Posts: 89
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I got it to work by changing"
PHP Code:
require_once("./" $fcfolder "/inc/config.php"); 
require_once(
"./" $fcfolder "/inc/config.srv.php"); 
to
PHP Code:
require_once("/home/rwalker/public_html/" $fcfolder "/inc/config.php"); 
require_once(
"/home/rwalker/public_html/" $fcfolder "/inc/config.srv.php"); 
Was this a sound fix, or is there a better way?
Reply With Quote
  #230  
Old 08-15-2005, 09:16 PM
sinoeu sinoeu is offline
 
Join Date: May 2005
Posts: 47
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Paul M
Well it took me a few minutes to figure out your mistake, but the small snippet of code finally gave it away.

You have put the hack code in the wrong file. It goes in vB's index.php - you appear to have installed it in flashchat's index.php.
There's no mistake like that in my case. But I still have no name display under the total chatters number display. However, when there's nobody in the chatroom, there is a display of "No one is currently using the chat" under the "Members currently in the Chat: 0" :disappointed:

who can tell me why? I am using FlashChat 3931 under vbb 3.07
Reply With Quote
  #231  
Old 08-20-2005, 06:58 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

Sorry, but 3931 is a very old version of Flashchat, I have no idea if this is still compatible with it.
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 01:45 AM.


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.05885 seconds
  • Memory Usage 2,313KB
  • 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
  • (2)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
  • (4)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