vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Chat Modifications - MGC Chatbox Evo (https://vborg.vbsupport.ru/showthread.php?t=168992)

J105C 05-26-2008 03:53 PM

What are the commands? I need to unban somone, help!

J105C 05-26-2008 04:33 PM

How in the hell do I unban, this is a joke

J105C 05-26-2008 04:35 PM

Quote:

Originally Posted by VBDev (Post 1531226)
It's to ensure that admin do configure every usergroup features with great care.



It's not in the admincp nor the modcp because I wanted to separate the core of the chatbox from commands.

What is the command to unban? I'm lost :confused::confused::confused:

butch3r 05-26-2008 05:15 PM

/ban off uid {userid}
/ban off uname {user_name}
/ban show

Ranger187 05-26-2008 06:22 PM

Quote:

Originally Posted by J105C (Post 1532016)
How in the hell do I unban, this is a joke

Wow, what a m0m0. Ever hear of clicking the ? icon in the chatbox ;)

buckethead 05-26-2008 08:11 PM

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.



https://vborg.vbsupport.ru/

Ranger187 05-26-2008 08:25 PM

Quote:

Originally Posted by buckethead (Post 1532193)
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 >>". No idea why this is happening.
Need help.




https://vborg.vbsupport.ru/

VBDev, this was the issue I brought up like 20 times already that you said you can't address if you don't know about it. ;)

VBDev 05-26-2008 08:55 PM

Quote:

Originally Posted by buckethead (Post 1532193)
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.



http://ktl.kz/forum/screenshot.jpg

Can you give me access to your admincp + ftp so that I can debug online ?

Quote:

Originally Posted by Ranger187 (Post 1532206)
VBDev, this was the issue I brought up like 20 times already that you said you can't address if you don't know about it. ;)


I never said I didn't know about it I said that I can't debug without experiencing it (which seems logical).

butch3r 05-26-2008 09:36 PM

Quote:

Originally Posted by buckethead (Post 1532193)
Also, I still see: "Entrez votre chat >>". In GLOBAL phrases it shows: "Enter your chat >>".

There's no sense in manual editing phrases, you can change this text via chat formatting options.

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)

VBDev 05-26-2008 10:38 PM

Quote:

Originally Posted by Ranger187 (Post 1532206)
VBDev, this was the issue I brought up like 20 times already that you said you can't address if you don't know about it. ;)

Ok as you experience that problem on some of the board where you installed the chatbox, can you try the following (it's a temp modification to find out the problem).

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;

}

It shall put inside the chatbox an error message which will help us find out the silly problem.


All times are GMT. The time now is 09:07 PM.

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.06664 seconds
  • Memory Usage 1,759KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (7)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete