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)

Kaycee123 08-29-2008 07:45 PM

We're still having problems with the chatbox not working for some members. For some it locks on "loading" and their chats never come up. Others are not able to see any of the chats in the chatbox, only in Archives.

The members who are having problems have cleared their caches several times and it still doesn't work.

Sometimes switching from FF to IE helps, or vice versa. Any ideas?

Gamempire 08-29-2008 08:34 PM

i can't see the chat after i had installed..why? i tried witdh the mod to the template but it still doesn't work..

Ranger187 08-30-2008 07:51 PM

Quote:

Originally Posted by gpc10347 (Post 1609999)
<can of worms>

I have talkerbot working on my site and of course, mgc chat is working well too.. Anyone else have both and - figured out some code to make the talkerbot a part of the chat?

</end worms>

Who knows if that will be added.

Quote:

Originally Posted by Gamempire (Post 1610151)
i can't see the chat after i had installed..why? i tried witdh the mod to the template but it still doesn't work..

Because you like every other n00b doesn't READ the instructions. USERGROUPS > Edit ;)

Quote:

Originally Posted by Kaycee123 (Post 1610115)
We're still having problems with the chatbox not working for some members. For some it locks on "loading" and their chats never come up. Others are not able to see any of the chats in the chatbox, only in Archives.

The members who are having problems have cleared their caches several times and it still doesn't work.

Sometimes switching from FF to IE helps, or vice versa. Any ideas?

Loading or not showing at all = server. I think I asked, and you never replied. Is this running apache?

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

reitube 08-30-2008 10:39 PM

in order to fit the chatbox on a side column of a portal like vba, it would be nice to resize the chatbox to a minimum. Therefore, it should be possible to arrange the icons (via configuration) beow the input field and have smaller icons. Furthermore, a configurable width would be great.
Thanks for the Mod, great job..

Regards.

Ranger187 08-30-2008 10:43 PM

Sounds more like a plugin to this mod, then a function. Not a bad idea. But, it's already a module VBa as a shotbox on the main page ;)

zelnik 08-31-2008 06:02 AM

Quote:

Originally Posted by Kaycee123 (Post 1610115)
We're still having problems with the chatbox not working for some members. For some it locks on "loading" and their chats never come up. Others are not able to see any of the chats in the chatbox, only in Archives.

The members who are having problems have cleared their caches several times and it still doesn't work.

Sometimes switching from FF to IE helps, or vice versa. Any ideas?

I had this problem when upgrading from to 1.0 and solved it by re-ftping all the files over again (no need to reimport) just ftp upload all the associated files and it seem to fix it.

VBDev 08-31-2008 12:58 PM

Hi all,

Just back from holidays today.

Will start going through all your messages but I am currently a bit sick and thus am not sure If I can handle eveything.

VBDev 08-31-2008 02:06 PM

Ready boys ? Take a long breath and read all my answers :)

I hope i didn't forget anyone.

Quote:

Originally Posted by pedroenf (Post 1604531)
The issue is that when chatbox is enabled you do not receive vBulletin PM pop-up.

When you are in that condition, which javascript error do you see ?

Quote:

Originally Posted by NeutralizeR (Post 1604680)
I've just upgraded from the old version of this hack to evo version. I used to run my chatbox with only 1 query, now it executes 3 queries. 1 for the core hack, 1 for the smilies and 1 for something else. Is it possile to run the new version with only 1 query? (i disabled all settings need extra queries)

If you deactivate the chatbox smilies it will remove one query (used to build up the smilies toolbar).

To go down to one query you can try to remove one other query that should not be run in case of autocompletion mode inactive.
Here is what you can do to give it a try:
  1. Disable the autocompletion option
  2. Edit the functions_mgc_cb_evo.php
and replace :

PHP Code:

    $commands $vbulletin->db->query_read("SELECT * FROM " TABLE_PREFIX "mgc_cb_evo_command WHERE active='1'");
    
    while (
$command $vbulletin->db->fetch_array($commands))
    {
        if (
mgc_cb_evo_can_use_command($command))
        {
            
$show['mgc_cb_evo_command_' $command['identifier']] = true;

            
/* If autocompletion is active, add commands tips to autocompletion array */
            
if ($vbulletin->options['mgc_cb_evo_act_autocompletion'])
            {
                
$append_array get_command_autocompletion_array($command['identifier']);
                
$autocompletion_js_array array_merge($autocompletion_js_array,$append_array);
            }
        }
        else
        {
            
$show['mgc_cb_evo_command_' $command['identifier']] = false;
        }
    }
   
   if (
sizeof($autocompletion_js_array))
   {
       
/* Order table alphabetically */
       
sort($autocompletion_js_array);
   
       
/* Implode array */
       
$autocompletion_js implode(',',$autocompletion_js_array);
   } 

by

PHP Code:

    /* Retrieving of commands permissions to customize the chatbox displayed elements */
    
$autocompletion_js_array = array();
    
    if (
$vbulletin->options['mgc_cb_evo_act_autocompletion'])
    {
        
$commands $vbulletin->db->query_read("SELECT * FROM " TABLE_PREFIX "mgc_cb_evo_command WHERE active='1'");
        
        while (
$command $vbulletin->db->fetch_array($commands))
        {
            if (
mgc_cb_evo_can_use_command($command))
            {
                
$show['mgc_cb_evo_command_' $command['identifier']] = true;
    
                
/* If autocompletion is active, add commands tips to autocompletion array */
                
if ($vbulletin->options['mgc_cb_evo_act_autocompletion'])
                {
                    
$append_array get_command_autocompletion_array($command['identifier']);
                    
$autocompletion_js_array array_merge($autocompletion_js_array,$append_array);
                }
            }
            else
            {
                
$show['mgc_cb_evo_command_' $command['identifier']] = false;
            }
        }
       
       if (
sizeof($autocompletion_js_array))
       {
        
/* Order table alphabetically */
        
sort($autocompletion_js_array);
       
        
/* Implode array */
        
$autocompletion_js implode(',',$autocompletion_js_array);
       }
    } 

This should move things down to one query. I will update the chatbox code accordingly in the next version.

Quote:

Originally Posted by shot2bits (Post 1605012)
PS - does the shoutbox auto update after somebody posts a message?

No, it does refresh on the other users window each specified number of seconds (you set it as called "autorefresh" time).

Quote:

Originally Posted by BozzaJos (Post 1605067)
Thanks Andrew. I never noticed Dev answered my question. Anyway, here is a bigger screenshot!

http://img98.imageshack.us/img98/693...oxerroroy7.png

Yes this is what I thought, I miss that one out ;)

I have added it to the bug list and will correct it in the next version !

Quote:

Originally Posted by NeutralizeR (Post 1605115)
I also have the same issue with BozzaJos. Plus...

By default, vbulletin asks for confirmation after clicking log out and the page turn into gray in IE. When MGC Chatbox Evo is enabled, it doesn't asks for confirmation and directly logs me out. I can see the yellow javascript error icon in the bottom left corner of IE. Maybe a conflict with the JS files.

The problem is that I am a mac user and thus can't test that :(. Could you try to tell me which kind of error is displayed in ie ?

I add it in the list of known bugs.

Quote:

Originally Posted by gpc10347 (Post 1609999)
<can of worms>

I have talkerbot working on my site and of course, mgc chat is working well too.. Anyone else have both and - figured out some code to make the talkerbot a part of the chat?

</end worms>

Honestly this is not something I would, I don't know talkerbot at all and prefer to concentrate on bringing the chatbox to even further completness.

Quote:

Originally Posted by reitube (Post 1610864)
in order to fit the chatbox on a side column of a portal like vba, it would be nice to resize the chatbox to a minimum. Therefore, it should be possible to arrange the icons (via configuration) beow the input field and have smaller icons. Furthermore, a configurable width would be great.
Thanks for the Mod, great job..

Regards.

Quote:

Originally Posted by Ranger187 (Post 1610868)
Sounds more like a plugin to this mod, then a function. Not a bad idea. But, it's already a module VBa as a shotbox on the main page ;)

I agree with Ranger187, the VBa chatbox module for my chatbox released by stangger5 already does it.

Fireproof 08-31-2008 05:41 PM

Quote:

Originally Posted by redtailboas (Post 1467537)
Installed. Great product and working great!

Is there a way to disable Chatbox in one style? I have a mobile style (and chat does not work on mobile devices that I have tested) so I would just like to disable it only for the mobile style.

Any suggestions?

I have this same need.

Any hope on getting some help with this?



Also - separately, is your next release likely to solve the "non-scrolling" issue when using "oldest first"?

SnapOff Racing 08-31-2008 08:41 PM

Concerning the issue about the private messages, that is happening for me as well. No popup window for new private messages. Just an FYI


All times are GMT. The time now is 02:10 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.08568 seconds
  • Memory Usage 1,794KB
  • 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
  • (2)bbcode_php_printable
  • (13)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