Go Back   vb.org Archive > vBulletin Modifications > Archive > Modification Graveyard

Reply
 
Thread Tools
Flashchat 5 or 6 : Integration for vBulletin 3.8 Details »»
Flashchat 5 or 6 : Integration for vBulletin 3.8
Version: 3.8.002, by Paul M Paul M is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Category: Chat Modifications - Version: 3.8.x Rating:
Released: 01-08-2009 Last Update: 04-27-2009 Installs: 400
DB Changes Uses Plugins Auto-Templates
Additional Files Translations  
No support by the author.

This modification is no longer available or supported.

Note: I no longer use Flashchat, and development and support of it at Tufat appears to have died in 2010.



Flashchat 5 integration with vBulletin 3.8.

Note: This is compatible with Flashchat 5.0.x only, it will not work with Flashchat 4.

* Flashchat 5 is no longer available - this should work with Flashchat 6, but this is not a supported option *

Note:
Standard Flashchat includes vBulletin integration as part of the Tufat supplied files. However, the standard integration does not include Direct Usergroup Integration or other extra's like the WOL Display & Flashchat on a vBulletin page. This Modification adds those features


Extra's added by this modification

* Direct login to a room.
* The WOL will correctly display Flashchat as the location (not 'Unknown Location')
* Flashchat can be displayed embedded inside a 'standard' vBulletin Page (i.e. not full screen).
* Direct Usergroup Integration - a section is added to each usergroup in the ACP Usergroup Manager to set the Flashchat permissions for that group.
* The plugin will try to automatically add a link to Flashchat in your Navbar Quick Links or Community Links - this feature can be disabled if you wish.
* The automatic link can have a prefix path defined - useful if you use something like CMPS.
* You can define a usergroup to login as Flashchats "Spy" mode.


More notes:

* This integration is for Flashchat version 5 only.
* The automatic link feature may fail if you have customised templates (it uses template hooks).
* For Flashchat inside a vBulletin page you need to link to .../misc.php?do=flashchat
* This modification does not add any links to Flashchat Administration in the ACP.
* You can set all members to login direct to particular room via the ACP.
* You can also add a room parameter to the url - i.e. .../misc.php?do=flashchat&room=3
* Spys can login into the chat but are not listed in the room - they cannot chat, just watch.

The CMS file assumes that you are installing Flashchat in your forum root folder i.e. (/forums/chat/) - this is the same folder as your usercp.php file and includes folder. Installation will fail if you do not do this.

Support: This modification is no longer supported. Please check the instructions, and make sure you have uploaded any files to the correct location - the vast majority of problems reported are due to an error made in editing or uploading files.

Finally, I am not Tufat.com or Flashchat Support - if you have questions about Flashchat, their forums are here.

To use the this upgraded integration simply download and unzip the file, then follow the instructions in the text file. Once installed, the Flashchat userlevel options for each usergroup will appear in the ACP usergroup edit screens - editing of the CMS file will no longer be required.


History:

v3.8.001 : First release for vb 3.8.
v3.8.002 : Fixed who is online location to work with FC 5.

Show Your Support

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

Comments
  #212  
Old 09-27-2009, 11:03 PM
SEW810's Avatar
SEW810 SEW810 is offline
 
Join Date: Mar 2008
Location: M?xico City
Posts: 274
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by gg2-hungama View Post
i upload everything and when i import file i got this error

Warning: require_once([path]/chat/temp/config.srv.php) [function.require-once]: failed to open stream: No such file or directory in [path]/admincp/plugin.php(1995) : eval()'d code on line 5

Fatal error: require_once() [function.require]: Failed opening required '/home/ggtwohun/public_html/forum/chat/temp/config.srv.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/ggtwohun/public_html/forum/admincp/plugin.php(1995) : eval()'d code on line 5


what did i do wrong ?

i assume i do not have install.php but i couldn't find it in folder ..
I got same error.


Quote:
Originally Posted by Paul M View Post
Have you actually installed Flashchat 5 ?
THAT'S exactly what I'm trying to do !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
There is no install.php at zip file. Do I need to install something before install flashchat??

Good Lord ,,, what do you mean with "Have you actually installed Flashchat 5 ?"

Any DEMO page please?
Thnx
Reply With Quote
  #213  
Old 09-28-2009, 10:16 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

This modification is not Flashchat.

Flashchat is a seperate application supplied by Tufat, which you must install first.
Reply With Quote
  #214  
Old 09-29-2009, 08:40 PM
SEW810's Avatar
SEW810 SEW810 is offline
 
Join Date: Mar 2008
Location: M?xico City
Posts: 274
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok thanx, i'll check it out.
Sorry.

And thnx for your help
Reply With Quote
  #215  
Old 10-05-2009, 05:59 PM
h2ojunkie h2ojunkie is offline
 
Join Date: Sep 2004
Posts: 57
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

After uploading the new vbulletin38CMS.php from this mod, the profile link no longer works.

Checking debug mode, it's returning the error:
vBulletin 3.8 : Integration Error 06 : Unable to load user information.

I was able to get the profile link to work again by replacing the profile section of the code from this mod:
PHP Code:
    // Returns URL of user profile page //
    
function getUserProfile($userid)
    {
        if((
$rs $this->getUserStmt->process($this->userid)) && ($rec $rs->next()))
        {
            
// Data for CSRF check
            
$fcid $rec['userid'];
            
$fcus sha1($rec['salt']);
        }
        else
        {
            exit(
'vBulletin 3.8 : Integration Error 06 : Unable to load user information.');
        }
        return (
$this->userid == $userid) ? "../profile.php?do=editprofile&fcid=$fcid&fcus=$fcus"../member.php?u=$userid&fcid=$fcid&fcus=$fcus";
    } 
With the code from the original vbulletin38CMS.php code that came with flashchat 5.0.11
PHP Code:
    // Returns URL of user profile page for such user id or null if user not found
    
function getUserProfile($userid)
    {
        return (
$this->userid == $userid) ? "../profile.php?do=editprofile" "../member.php?u=$userid";
    } 
It appears to be working fine now, however will reverting it back to the original version cause the security token error?
Reply With Quote
  #216  
Old 10-05-2009, 06:55 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 h2ojunkie View Post
....will reverting it back to the original version cause the security token error?
Yes, it will.
Reply With Quote
  #217  
Old 10-06-2009, 02:38 AM
h2ojunkie h2ojunkie is offline
 
Join Date: Sep 2004
Posts: 57
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

That's what I thought.

Any idea what might be causing the Integration Error 06.

I installed a clean version of 5.0.11 and a clean version of this mod on a test server and I'm getting that error, so I can't see how it's something else conflicting with it.
Reply With Quote
  #218  
Old 10-06-2009, 08:26 AM
realmr realmr is offline
 
Join Date: Aug 2008
Posts: 213
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

is this chat application gonna add up to server load or consume more bandwidth ?
Reply With Quote
  #219  
Old 10-06-2009, 10:42 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

Quote:
Originally Posted by h2ojunkie View Post
That's what I thought.

Any idea what might be causing the Integration Error 06.

I installed a clean version of 5.0.11 and a clean version of this mod on a test server and I'm getting that error, so I can't see how it's something else conflicting with it.
Well its failing to read the user data, no idea why tho, since its must do that elsewhere ok for integration to work.

I no longer have Flashchat 5 installed anywhere, but it worked fine when I did. Maybe something has changed in later versions, tho tbh, I would have expected more reports than just 1.
Reply With Quote
  #220  
Old 10-11-2009, 01:37 AM
RomainVL RomainVL is offline
 
Join Date: Sep 2009
Location: Flanders
Posts: 14
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I installed it, and it works perfectly, thanks for this mod! And the Flashchat ACP is also a great feature.
Reply With Quote
  #221  
Old 10-11-2009, 07:27 AM
realmr realmr is offline
 
Join Date: Aug 2008
Posts: 213
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

just bumping my question again, does the add-on take load on the server and consume bandwidth ??
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 09:54 AM.


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.05192 seconds
  • Memory Usage 2,321KB
  • 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
  • (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
  • (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