The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
MGC Chatbox Evo Details »» | |||||||||||||||||||||||||||
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.
Detailed features Following is a non-exhaustive list:
Refer to the readme for the chatbox install. Demo Live demo on MGC Products forum Languages
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
Show Your Support
|
18 благодарности(ей) от: | ||
CarpCharacin, Dotox, guvatara, Honk0815, john7911, Judge Dredd X, Lemminator, munkfish, nacaruncr, NoMatt3r, O_Dog, Popa Andrei, Shadowxxxx, theuploader, Toorak Times, zbahadir |
Comments |
#1422
|
|||
|
|||
What are the commands? I need to unban somone, help!
|
#1423
|
|||
|
|||
How in the hell do I unban, this is a joke
|
#1424
|
|||
|
|||
What is the command to unban? I'm lost
|
#1425
|
||||
|
||||
/ban off uid {userid}
/ban off uname {user_name} /ban show |
#1426
|
|||
|
|||
Wow, what a m0m0. Ever hear of clicking the ? icon in the chatbox
|
#1427
|
|||
|
|||
I think I installed it properly: uploaded files under "Files" directory to my forum root. Uploaded files under "Images" directory to appropriate location. Imported the chat. Using Language Manager uploaded the lang. xml. And made it visible to admins (All set to YES) under usergroup permissions.
... but it's endlessly showing "Loading..." and there are no JS errors Also, I still see: "Entrez votre chat >>". In GLOBAL phrases it shows: "Enter your chat >>". When I try to post a message first goes through (but not displayed, still Loading...) and for second one I get: "Error : A chat is already being processed, please wait.", so the first post did never go through. vb 3.7.0 Need help. |
#1428
|
|||
|
|||
Quote:
|
#1429
|
||||
|
||||
Quote:
Quote:
I never said I didn't know about it I said that I can't debug without experiencing it (which seems logical). |
#1430
|
||||
|
||||
Quote:
And as for "Loading..." The problem is in some phrases when you edit 'em. Re-upload of original language file can help. (If you have more than one language on your board try 2 switch 2 another language, and you'll see chat working) |
#1431
|
||||
|
||||
Quote:
Replace the content of the chatbox_refresh function in the mgc_cb_evo.js file by : Code:
function chatbox_refresh(type)
{
var handleSuccess = function(o){
if(o.responseText !== undefined){
fetch_object('chats').innerHTML = o.responseText;
}
}
var handleFailure = function(o){
if(o.responseText !== undefined){
fetch_object('chats').innerHTML = o.responseText;
}
}
var callback =
{
success: handleSuccess,
failure: handleFailure
};
/* Reset inactive mode */
if (chatbox_inactive)
{
chatbox_inactive = 0;
idleTimeout = setTimeout("activate_idle_chatbox()", inactive_mode_delay);
}
/* Forced refreshed, lets do it */
if(auto_refresh || (type == 'forced'))
{
clearTimeout(refreshTimeout);
/* Type of refresh management */
if (type == 'forced')
{
currentRefreshType = 'forced';
}
else
{
currentRefreshType = 'normal';
}
fetch_object('mgc_cb_evo_refresh_img').style.visibility = 'visible';
/* Chatbox is inactive, refresh forced => session update */
if (chatbox_inactive || force_session_refresh)
{
var sUrl = mgc_cb_evo_jsloc + 'mgc_cb_evo_ajax.php';
var postData = 'do=ajax_refresh_chat&status=open&channel_id=' + channel_id + '&location=' + cb_location + '&first_load=1&securitytoken=' + SECURITYTOKEN;
YAHOO.util.Connect.asyncRequest('POST', sUrl, callback, postData);
}
else
{
var sUrl = mgc_cb_evo_jsloc + 'mgc_cb_evo_ajax.php';
var postData = 'do=ajax_refresh_chat&status=open&channel_id=' + channel_id + '&location=' + cb_location + '&first_load=' + first_load + '&securitytoken=' + SECURITYTOKEN;
YAHOO.util.Connect.asyncRequest('POST', sUrl, callback, postData);
}
force_session_refresh = 0;
}
return false;
}
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|