Go Back   vb.org Archive > vBulletin Modifications > vBulletin 4.x Modifications > vBulletin 4.x Add-ons
MGC Chatbox Evo Details »»
MGC Chatbox Evo
Version: 3.4.0, by VBDev VBDev is offline
Developer Last Online: Dec 2021 Show Printable Version Email this Page

Category: Chat Modifications - Version: 4.2.x Rating:
Released: 01-27-2008 Last Update: 09-01-2013 Installs: 2476
DB Changes Uses Plugins Template Edits Auto-Templates
Additional Files Translations  
No support by the author.



This mod is automatically compatible with vB3.6.x, vB3.7.x, vB3.8.x and vB4.x.x


Overview

MGC Chatbox Evo is the most ever installed chatbox for vBulletin !


It offers a new enhanced online experience to your members leading to increased time spent online of more than 25% by providing them with a new, more interactive, way to interact with each other.
  • Important number of features
  • High level of configurability to fit each users needs
  • Channels system
  • Many commands
  • Bot system
  • and more...
... makes MGC Chatbox Evo a must have for your forum !

Detailed features

Following is a non-exhaustive list:
  • Simple install
  • Ajax based with:
    • Fast and Intelligent chats retrieval through javascript calls to server files (refresh delay configurable per usergroup)
    • Edit/update by double-clicking on a chat
    • Interact on chats through menus and javascript
  • Many usergroup permissions to limit features according to usergroups
  • Full configuration of the chatbox display:
    Size, position on forum pages, editor layout (either top/bottom input or left/right textarea) and position, number of chats displayed, ...
  • Full configuration of the chats display:
    Authorized bbcodes selection, date/time options, avatar display, ...
  • Possibility to create channels (unlimited number) with multiple configuration options:
    • Warn user of new message when not active through blinking image and eventually sound notification
    • Possibility to select on which specific page each is displayed
    • Option to display the channel only for selected languages
    • Usergroup/User permissions to access the channel
  • Many commands available with usergroup/user permissions to access them:
    • /me: well known IRC command
    • /del: remove shouts (different possibilities of removal)
    • /ignore: ignore shouts from another user
    • /ban: ban user from chatbox
    • /pm: send a private chat to another user
    • /announcement: modify the announcement on top of the chatbox
    • /slap: allow user to slap another user
    • /team: chats sending between specified usergroups
    • /l33t: I33t-ify a message
    • /banchan: ban user from specific channel [PRO only]
  • Forum activity notifications system in the chatbox:
    • Different display options:
      • In the chatbox melted with chats
      • In the chatbox in a separate column
      • In the vB4 sidebar or a custom sidebar for vB3
    • Multiple notifications:
      • New thread creation
      • New post creation
      • Post thanked (Abe's)
      • New registrations (not included - separate product)
      • IBProarcade highscore (not included - separate product)
  • Bot system with set of predefined trigger chat and corresponding answers and automatic bot chats [PRO only]
  • Archive system with statistics as well as download and search capabilities
  • Possibility to display the list of users online in the chatbox
  • Force anynomous to enter a username before chatting if they can access the chatbox
  • Antiflood system
  • Private chats feature through PM in tabs
  • Optional sound notifications
  • Inactive mode feature for server load optimization
  • User statistics display in posts and profile
  • Chatbox statistics display on forumhome
  • Create thread from a chat [PRO only]
  • CMS Integration (not included - separate product)
    • vBAdvanced CMPS
    • vBulletin 4 CMS
  • Importers from other chatbox systems:
Install

Refer to the readme for the chatbox install.

Demo

Live demo on MGC Products forum

Languages
  1. French
  2. English
  3. German [Not yet updated]
  4. Serbian [Not yet updated]
Support

On my website mostly and in this thread


Int?gration

Integration in IBProarcade is described in the readme.
vBAdvanced CMPS and vBulletin 4 CMS integration are available as additional modules.


Compatibility

This hack is compatible with vB3.6.x, vB3.7.x
, vB3.8.x and vB4.x.x

Changelog

First part:

https://vborg.vbsupport.ru/showpost....&postcount=221

Second part:
https://vborg.vbsupport.ru/showpost....postcount=5429

Third part:

https://vborg.vbsupport.ru/showpost....postcount=8469

How to set the channel images


Thanks to princeedwards for this little how to : click here

PRO version and additional addons available on my website

This mod is automatically compatible with vB3.6.x, vB3.7.x, vB3.8.x and vB4.x.x

Download Now

File Type: zip [FREE]MGC_Chatbox_Evo_3.4.0.zip (1.70 MB, 3001 views)

Show Your Support

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

Comments
  #2912  
Old 10-25-2008, 04:52 AM
Greenskull Greenskull is offline
 
Join Date: Jul 2007
Posts: 68
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by HTMMinion View Post
Greenskull I'm running VBAdvanced also. I don't have the loading issue but I was having database errors that were repaired by using the fix here.
ok cool thanks so much! Now I need to fix the loading problem...any suggestions?
Reply With Quote
  #2913  
Old 10-25-2008, 06:11 AM
ReCom ReCom is offline
 
Join Date: Mar 2008
Posts: 97
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I just realized that this product (v 1.1.0) causes my pages to fail XHTML validation (http://validator.w3.org/) with 60+ errors. So here are some steps to fix those errors:

<script></script>
For inline <script></script>, enclose the javascript codes between "<!--" and "//-->". This will make the validator to skip the javascript code.
Example:
Code:
<script type="text/javascript">
<!--
var test = confirm('Test?');
//-->
</script>
Note: error caused by template: mgc_cb_evo

onClick, onSubmit, onFocus etc
HTML attributes do not use camelCase. It should be "onclick", "onsubmit" and so on.
Note: error caused by template: mgc_cb_evo_editor

Ampersand (&) inside URLs
Instead of:
Code:
<a href="http://www.yoursite.com/forum/mgc_cb_evo.php?do=view_archives&page=1">Archives</a>
Make it:
Code:
<a href="http://www.yoursite.com/forum/mgc_cb_evo.php?do=view_archives&amp;page=1">Archives</a>
In PHP, calling the built-in function htmlspecialchars() is all you need
Note: error caused by template: mgc_cb_evo

Invalid attributes (element-specific)

<tr> does not support "width" attribute
Code:
<tr class="alt1" valign="middle" width="100%">
(template mgc_cb_evo)

Use { checked="checked" } instead of just { checked }. Use double-quote mark instead of single. Same with "selected" and "nowrap".
Code:
<td align="$stylevar[left]" valign="middle" nowrap="nowrap">
(template mgc_cb_evo_editor)

Other typos (showing corrected text/code only)

functions_mgc_cb_evo.php (line 541)
Code:
$bbcodes .= '&nbsp;<input type="image" name="clear" class="inlineimg" src="' . $stylevar['imgdir_misc'] . '/mgc_cb_evo/mgc_cb_evo_clear.gif" value="' . $vbphrase['mgc_cb_evo_clear_bbcode'] . '" onclick="return remove_bbcodes();" />';

I hope it'll be fixed in the next version ...
Reply With Quote
  #2914  
Old 10-25-2008, 06:54 AM
VBDev's Avatar
VBDev VBDev is offline
 
Join Date: Jan 2004
Location: France
Posts: 2,570
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by HTMMinion View Post
Got it... sorry I missed that while searching.

The "me/" command still displays nothing in the chatbox, another bug or did I misconfigure something?
If it displays as is with the /me at the beginning of the message then you perhaps haven't activated the command and set the usergroup permisisons of the command (Manage command in acp).

Quote:
Originally Posted by pedroenf View Post
Sorry but i can't see any error related to the chatbox. Maybe you can www.g6-team.com. If you want i'll give you a test user.

Update: installed IE8 Beta2 and same problem. However i have tried with IE8 Beta2 in XP and no error. Odd!! But i have another "bug", in IE with inactive-mode-on-load there's no inactive-mode message only Loading... And after inactive period still no inactive-mode-message too just a (in my case) black empty screen.
Please yes give me a test account.

Quote:
Originally Posted by gpc10347 View Post
Anyone else find an issue related to "[Minor] Slap user through menu item in a secondary channel are posted in the general channel. However it works correctly when inputing the command manually. "

I find that a Private Message behaves the same way.. (appears in general)
Yes I know that. I corrected it in the next version as I discovered that while doing the bug correction for the slap command

Quote:
Originally Posted by Greenskull View Post
seeing as you are helping everyone here and I'm not getting a response there, I have a question.

How come so many people have the Loading issue with the Chatbox module for VBAdvanced? Do you know it?
Also, I seem to be getting aroud 10-20 emails a day telling me that the forum experienced an error. The error was related to the chatbox. Odd...

So please help, thanks
Copy the error here please

About vBAdvanced, it seems to depends of the user's configuration but stangger5 is the one who manages that part of the chatbox so I am not very aware of the functionning in vBAdvanced.

Quote:
Originally Posted by FF|Skyrider View Post
You could download and check it out?
... Well yes I could ... But I won't ;-)

Imagine that for every mod a user is using he was asking for compatibility that would take me much much time...

I hardly manage to release the chatbox regularly so I can't check all mods.
Reply With Quote
  #2915  
Old 10-25-2008, 06:57 AM
VBDev's Avatar
VBDev VBDev is offline
 
Join Date: Jan 2004
Location: France
Posts: 2,570
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by glennybee View Post
Hi folks,

I've upgraded to the latest version and I think there's a bug in it. Sometimes the user is presented with a double shout but only they can see the double shout, everyone else sees one shout. Is that understandable lol?

Also, some members are reporting that the auto refresh hangs up and the spinny icon stays there and they need to F5 to get rid of it. I have it set at 5 seconds auto refresh, is that too quick?

Thanks.
Some others reported that double post issue.

The problem is that I haven't ever encountered that so it's a bit hard to find out what could be wrong.

Does the posts display doubled in the archives as well ?

Did you experienced that yourself ?

Quote:
Originally Posted by ReCom View Post
I just realized that this product (v 1.1.0) causes my pages to fail XHTML validation (http://validator.w3.org/) with 60+ errors. So here are some steps to fix those errors:

<script></script>
For inline <script></script>, enclose the javascript codes between "<!--" and "//-->". This will make the validator to skip the javascript code.
Example:
Code:
<script type="text/javascript">
<!--
var test = confirm('Test?');
//-->
</script>
Note: error caused by template: mgc_cb_evo

onClick, onSubmit, onFocus etc
HTML attributes do not use camelCase. It should be "onclick", "onsubmit" and so on.
Note: error caused by template: mgc_cb_evo_editor

Ampersand (&) inside URLs
Instead of:
Code:
<a href="http://www.yoursite.com/forum/mgc_cb_evo.php?do=view_archives&page=1">Archives</a>
Make it:
Code:
<a href="http://www.yoursite.com/forum/mgc_cb_evo.php?do=view_archives&amp;page=1">Archives</a>
In PHP, calling the built-in function htmlspecialchars() is all you need
Note: error caused by template: mgc_cb_evo

Invalid attributes (element-specific)

<tr> does not support "width" attribute
Code:
<tr class="alt1" valign="middle" width="100%">
(template mgc_cb_evo)

Use { checked="checked" } instead of just { checked }. Use double-quote mark instead of single. Same with "selected" and "nowrap".
Code:
<td align="$stylevar[left]" valign="middle" nowrap="nowrap">
(template mgc_cb_evo_editor)

Other typos (showing corrected text/code only)

functions_mgc_cb_evo.php (line 541)
Code:
$bbcodes .= '&nbsp;<input type="image" name="clear" class="inlineimg" src="' . $stylevar['imgdir_misc'] . '/mgc_cb_evo/mgc_cb_evo_clear.gif" value="' . $vbphrase['mgc_cb_evo_clear_bbcode'] . '" onclick="return remove_bbcodes();" />';
I hope it'll be fixed in the next version ...
Yes I know I have to do the xhtml changes since a long time...

But I am lazy boy lol

I'll try to manage that in the upcoming version.
Reply With Quote
  #2916  
Old 10-25-2008, 09:10 AM
SnapOff Racing SnapOff Racing is offline
 
Join Date: Apr 2006
Posts: 336
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by VBDev View Post
Some others reported that double post issue.

The problem is that I haven't ever encountered that so it's a bit hard to find out what could be wrong.

Does the posts display doubled in the archives as well ?

Did you experienced that yourself ?
I can vouch for this as well. It never did this in the older version's but it's certainly doing it in the newer version. Sometimes when you type in a chat and hit enter or submit whatever, it will show the chat twice. Then if you hit refresh it disappears, and no it does not show twice in the archives.
Reply With Quote
  #2917  
Old 10-26-2008, 06:47 AM
VBDev's Avatar
VBDev VBDev is offline
 
Join Date: Jan 2004
Location: France
Posts: 2,570
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Do you encounter this problem always ?

In all browsers type ?
Reply With Quote
  #2918  
Old 10-26-2008, 08:04 AM
SnapOff Racing SnapOff Racing is offline
 
Join Date: Apr 2006
Posts: 336
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by VBDev View Post
Do you encounter this problem always ?

In all browsers type ?
I'm not sure I don't use anything else except FireFox. I will make an effort to try and use Internet Explorer and see if the same thing happens while using IE as well. But I am only doing this for the sake of the Chatbox cause I HATE using IE lol
Reply With Quote
  #2919  
Old 10-26-2008, 12:39 PM
carlos2000 carlos2000 is offline
 
Join Date: Aug 2007
Posts: 41
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

We have a problem with IE and the chatbox. Our users with IE 6 or IE7 can't see the posts in the shoutbox. They have to use the archive if they want to know what's written within the box.

Our Firefox users have the following problem:



The text appears in one line but it should look like this:



Any suggestions/ideas?
Reply With Quote
  #2920  
Old 10-26-2008, 02:06 PM
NeutralizeR NeutralizeR is offline
 
Join Date: Aug 2005
Posts: 355
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by VBDev View Post
Do you encounter this problem always ?

In all browsers type ?
Same here... I think it's directly related to Ajax and affects the sender himself only (browser-client side).
Reply With Quote
  #2921  
Old 10-26-2008, 02:25 PM
gpc10347 gpc10347 is offline
 
Join Date: May 2008
Posts: 180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by VBDev View Post
Do you encounter this problem always ?

In all browsers type ?
I have IE7 and it's rare but the double post does happen for me from time to time. I've noticed my users talking about it as well (Most are versions of IE although I believe the latest occurance was to a user with FF..
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:17 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.09830 seconds
  • Memory Usage 2,393KB
  • Queries Executed 28 (?)
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
  • (12)bbcode_code
  • (12)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
  • (7)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (16)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_postinfo_query
  • fetch_postinfo
  • 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