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)

MylesM 09-01-2010 03:30 PM

Quote:

Originally Posted by midnz (Post 2090913)
The answer is available to you by clicking the "?" icon on your chatbox:
/ban show : Open a popup window containing the list of users banned from the chatbox with the possibility of unban users simply through buttons in this window.


The pop up opens but it says i haven't banned any users when I have... :S

will555559 09-01-2010 07:11 PM

Quote:

Originally Posted by MylesM (Post 2092500)
The pop up opens but it says i haven't banned any users when I have... :S

Well, I believe it depends on how you banned the person. If you click the ban user in the drop down menu next to their name, I believe that is a cron job so it will unban them automatically after some time. If you use the /ban syntax and specify for a certain amount of days or whatever, you can use /ban show to unban the person.

Xtrigit 09-03-2010 07:12 AM

any server load issues with this chatbox?

thanks

wiz569 09-04-2010 06:18 PM

sorry if this has been posted before but in IE8 you can only see the first shout,even though the others appear in the archives,

IE8 throws up this error but I dont understand it sorry,

Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C)
Timestamp: Sat, 4 Sep 2010 19:17:13 UTC

Message:
Object required
mgc_cb_evo_functions.js Line: 2109
Code: 0 Char: 3

biggeorge 09-05-2010 01:37 AM

This is a great product, thank you!

GreYFoX 09-05-2010 04:09 AM

4.0.6 has the chat area width not 100% for some reason
will re install when fixed

VBDev 09-05-2010 09:27 AM

Quote:

Originally Posted by wiz569 (Post 2093796)
sorry if this has been posted before but in IE8 you can only see the first shout,even though the others appear in the archives,

IE8 throws up this error but I dont understand it sorry,

Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C)
Timestamp: Sat, 4 Sep 2010 19:17:13 UTC


Message:
Object required
mgc_cb_evo_functions.js Line: 2109
Code: 0 Char: 3

Where there /me commands in the chatbox ?

Quote:

Originally Posted by GreYFoX (Post 2093965)
4.0.6 has the chat area width not 100% for some reason
will re install when fixed

What do you mean ? Please post a screenshot.

wiz569 09-05-2010 10:44 AM

Quote:

Originally Posted by VBDev (Post 2094016)
Where there /me commands in the chatbox ?

Yes there were but it was reported before them,but there was /slap commands at the time of the report.

EDIT:Ok I can confirm its the commands that are causing it but don't have a clue how to fix it :)

2nd EDIT:If I comment out the above line ( mgc_cb_evo_functions.js Line: 2109 ) it works fine except usernames don't display,if thats any help lol

VBDev 09-05-2010 09:03 PM

What's on that line ?

wiz569 09-05-2010 09:11 PM

Quote:

Originally Posted by VBDev (Post 2094288)
What's on that line ?


Code:

nchattd.innerHTML = xmlnode.getElementsByTagName('col_uname')[0].firstChild.nodeValue;
Here you go m8 :)

VBDev 09-05-2010 09:22 PM

Ok well replace the multiple occurences of :
Code:

nchattd.innerHTML = xmlnode.getElementsByTagName('col_uname')[0].firstChild.nodeValue;
By :
Code:

                if (xmlnode.getElementsByTagName('col_uname')[0].firstChild != null)
                {
                        nchattd.innerHTML = xmlnode.getElementsByTagName('col_uname')[0].firstChild.nodeValue;
                }
                else
                {
                        nchattd.innerHTML = '';
                }

That should fix it, let me know please.

wiz569 09-05-2010 09:39 PM

Cheers m8 that seems to have worked a treat,at least on my test site :)

Will try the main site now for a while and let you know definitively,

Many thanks m8.

furst 09-05-2010 10:49 PM

Quote:

Originally Posted by Lionel (Post 2090297)
usually white screen indicates missing templates. Have you imported product????

Yeah i have, followed the install instructions, uploaded files then imported product via admincp.

RastaLulz 09-06-2010 07:30 PM

When I uninstalled this modification it didn't fully remove it self. There's still bits of it stuck in vBulletin's usergroup Admin Panel area.

Iguana Goddess 09-06-2010 09:54 PM

Quote:

Originally Posted by RastaLulz (Post 2094722)
When I uninstalled this modification it didn't fully remove it self. There's still bits of it stuck in vBulletin's usergroup Admin Panel area.

Are you sure you removed the file from your admincp folder?

Hauk 09-07-2010 07:30 AM

For everyone having the problem where when you load the page and the chatbox sticks on "Loading..." the problem is that in /mgc_cb_evo/clientscript/mgc_cb_evo_functions.js mgc_oldvb3 is not defined, in the beginning where theres all the vars are defined, add:
Code:

var mgc_oldvb3 = 0;
and it will work!

Rich_Princess 09-07-2010 07:10 PM

Hey, I was hoping ot get a little help here:) I am trying to install this onto my forum here.. I seem to have successfully installed it, but only one problem.. I can not seem to get the chatbox to display in the specified forum. When options are set to show on forum index, it works fine. I added the forum in settings to only show in that forum and it is not working. The forum ID is 57-Staff-Chat-Room... Any suggestions to get this fixed? Thanks ahead of time for any suggestions!

kronnos 09-08-2010 11:05 AM

Can someone please help me get rid of the gap after the chatbox.

I changed the position of the chatbox by editing the Display management plugin like:

FROM:

PHP Code:

                {
                    
$mgc_cb_evo_type_position    "forumhome_below";
                    
$mgc_cb_evo_insert_type     'replace';
                    
$mgc_cb_evo_insert_template 'FORUMHOME'
                    
$mgc_cb_evo_replace         ' $mgc_cb_evo ';
                    
$mgc_cb_evo_find             '$forumhome_markread_script';
                    
$mgc_cb_evo_brb             '<br />'
                    
$mgc_cb_evo_bra             ' '
                }
            } 
        break; 

TO:


PHP Code:

                {
                    
$mgc_cb_evo_type_position    "forumdisplay_below";
                    
$mgc_cb_evo_insert_type     'replace';
                    
$mgc_cb_evo_insert_template 'FORUMDISPLAY'
                    
$mgc_cb_evo_replace         ' $mgc_cb_evo ';
                    
$mgc_cb_evo_find             'custom phrase';
                }
            } 
        break; 

Now there is a gap between the next object.

Before the upgrade, I had the chatbox in that position without any gaps. Is there another place that in the new 3 version, there is a BR in some other related chatbox plugin?


BTW, The chatbox is just showing "Loading..." until the I click the reload button inside the chatbox. When clicking reload in browser does not help


Thanks!

cindy helmond 09-08-2010 11:17 AM

i do this for 100 times install the language file overwrite but i get in the admin french language how i can fix this please ??
Thx

SOLVED !!

Tahooma 09-08-2010 06:01 PM

After uninstall the options in my usergroup stetting do not disappear :(
How to solve this ?
I cant even make any changes in my admincp any more

furst 09-08-2010 11:31 PM

When i unzip the rar file there are several folders in there, the install instructions only say to upload the images folder and files folder, do i need to anything with the others? such as channel_icons, language, archives, changelog? product folder has the file to be imported via admincp right?

Im just trying to find out why im getting this white screen crap, if anyone could assist me in finding out if these additional folders are supposed to be uploaded aswell?

Also in the admincp folder there is a file called mgc_cb_evo.php, there is also a file called this in the files folder (the folder that admincp folder is in), are they the same file? do both have to be uploaded?

also im not sure if i fully understand this

Quote:

Upload the content of the Images in each of your forum styles directories.
Im just uploading the files into my /images/misc folder, is that correct?

Hauk 09-08-2010 11:48 PM

Quote:

Originally Posted by kronnos (Post 2095377)
Can someone please help me get rid of the gap after the chatbox.

I changed the position of the chatbox by editing the Display management plugin like:

FROM:

PHP Code:

                {
                    
$mgc_cb_evo_type_position    "forumhome_below";
                    
$mgc_cb_evo_insert_type     'replace';
                    
$mgc_cb_evo_insert_template 'FORUMHOME'
                    
$mgc_cb_evo_replace         ' $mgc_cb_evo ';
                    
$mgc_cb_evo_find             '$forumhome_markread_script';
                    
$mgc_cb_evo_brb             '<br />'
                    
$mgc_cb_evo_bra             ' '
                }
            } 
        break; 

TO:


PHP Code:

                {
                    
$mgc_cb_evo_type_position    "forumdisplay_below";
                    
$mgc_cb_evo_insert_type     'replace';
                    
$mgc_cb_evo_insert_template 'FORUMDISPLAY'
                    
$mgc_cb_evo_replace         ' $mgc_cb_evo ';
                    
$mgc_cb_evo_find             'custom phrase';
                }
            } 
        break; 

Now there is a gap between the next object.

Before the upgrade, I had the chatbox in that position without any gaps. Is there another place that in the new 3 version, there is a BR in some other related chatbox plugin?


BTW, The chatbox is just showing "Loading..." until the I click the reload button inside the chatbox. When clicking reload in browser does not help


Thanks!

See this for the loading problem:

Quote:

Originally Posted by Hauk (Post 2094917)
For everyone having the problem where when you load the page and the chatbox sticks on "Loading..." the problem is that in /mgc_cb_evo/clientscript/mgc_cb_evo_functions.js mgc_oldvb3 is not defined, in the beginning where theres all the vars are defined, add:
Code:

var mgc_oldvb3 = 0;
and it will work!


kronnos 09-09-2010 04:15 AM

Quote:

Originally Posted by Hauk (Post 2095630)
See this for the loading problem:

Nope, does not work:(

Hauk 09-09-2010 05:17 AM

Quote:

Originally Posted by kronnos (Post 2095697)
Nope, does not work:(

Open it up in FireFox, let the page finish loading and click Tools -> Error Console, scroll down to the bottom and see if theres an error, it will have a red x icon.

sweetguy2004 09-09-2010 05:37 AM

Thanks for update!

kronnos 09-09-2010 08:44 AM

Quote:

Originally Posted by Hauk (Post 2095708)
Open it up in FireFox, let the page finish loading and click Tools -> Error Console, scroll down to the bottom and see if theres an error, it will have a red x icon.

Wow, I got a whole bunch of error codes when i did that.

Warning: Error in parsing value for 'font-weight'. Declaration dropped.
Source File: http://www.mysite.com/
Line: 329
----------
Warning: Unknown property 'font-color'. Declaration dropped.
Source File: http://www.mysite.com/
Line: 401
---------
Warning: Error in parsing value for 'font-weight'. Declaration dropped.
Source File: http://www.mysite.com/
Line: 402
---------
Warning: Unknown property 'font-color'. Declaration dropped.
Source File: http://www.mysite.com/
Line: 412
---------
Warning: Error in parsing value for 'font-weight'. Declaration dropped.
Source File: http://www.mysite.com/
Line: 413
----------
Warning: Error in parsing value for 'width'. Declaration dropped.
Source File: http://www.mysite.com/mgc_cb_evo/cli...idget-skin.css
Line: 9
----------
Warning: Error in parsing value for 'margin-left'. Declaration dropped.
Source File: http://www.mysite.com/mgc_cb_evo/cli...idget-skin.css
Line: 14
----------
Warning: Unknown property '-moz-opacity'. Declaration dropped.
Source File: http://www.mysite.com/mgc_cb_evo/cli...idget-skin.css
Line: 24
-----------
Warning: Error in parsing value for 'filter'. Declaration dropped.
Source File: http://www.mysite.com/mgc_cb_evo/cli...idget-skin.css
Line: 24
-----------
Warning: Error in parsing value for 'padding'. Declaration dropped.
Source File: http://www.mysite.com/mgc_cb_evo/cli...atbox_tabs.css
Line: 40
----------
Warning: Unknown property 'zoom'. Declaration dropped.
Source File: http://www.mysite.com/mgc_cb_evo/cli...atbox_tabs.css
Line: 54
----------
Warning: Unknown property 'zoom'. Declaration dropped.
Source File: http://www.mysite.com/mgc_cb_evo/cli...atbox_tabs.css
Line: 59
-----------
Warning: Unknown property 'zoom'. Declaration dropped.
Source File: http://www.mysite.com/mgc_cb_evo/cli...atbox_tabs.css
Line: 76
-------------
Warning: Unknown property 'zoom'. Declaration dropped.
Source File: http://www.mysite.com/mgc_cb_evo/cli...atbox_tabs.css
Line: 92
-----------
Warning: Unknown property 'zoom'. Declaration dropped.
Source File: http://www.mysite.com/mgc_cb_evo/cli...atbox_tabs.css
Line: 132
----------
Warning: Unknown property 'zoom'. Declaration dropped.
Source File: http://www.mysite.com/mgc_cb_evo/cli...atbox_tabs.css
Line: 139
----------
Warning: Error in parsing value for 'cursor'. Declaration dropped.
Source File: http://www.mysite.com/mgc_cb_evo/cli...atbox_tabs.css
Line: 159
-----------
Warning: Error in parsing value for 'filter'. Declaration dropped.
Source File: http://yui.yahooapis.com/combo?2.7.0...sam/button.css
Line: 7

AND 2 more of exact same message after...
-----------
Warning: Expected declaration but found '*'. Skipped to next declaration.
Source File: http://yui.yahooapis.com/combo?2.7.0...sam/button.css
Line: 7

AND 9 more of exact same message after...
----------------
Warning: Expected declaration but found '*'. Skipped to next declaration.
Source File: http://yui.yahooapis.com/combo?2.7.0...sam/button.css
Line: 14

AND 7 more of exact same message after...
----------------

Swordman844555 09-09-2010 09:31 AM

Is it possible to make certain Colors in the Chat for the Team?

Is it possible to add other Colors?

mauro269 09-09-2010 05:14 PM

mmm, I've installed all following the readme file in the zip...I've also activated the chat from the chat settings, but I still don't see the chat.
What should I do to see it?
Thanks

will555559 09-09-2010 06:39 PM

Quote:

Originally Posted by mauro269 (Post 2095910)
mmm, I've installed all following the readme file in the zip...I've also activated the chat from the chat settings, but I still don't see the chat.
What should I do to see it?
Thanks

Did you set usergroup permissions?

mauro269 09-09-2010 07:32 PM

Quote:

Originally Posted by will555559 (Post 2095930)
Did you set usergroup permissions?

Yes. Should I have to modify something in the template code?I'm using default vbulletin theme.

wiz569 09-09-2010 10:21 PM

Quote:

Originally Posted by VBDev (Post 2094297)
Ok well replace the multiple occurences of :
Code:

nchattd.innerHTML = xmlnode.getElementsByTagName('col_uname')[0].firstChild.nodeValue;
By :
Code:

                if (xmlnode.getElementsByTagName('col_uname')[0].firstChild != null)
                {
                        nchattd.innerHTML = xmlnode.getElementsByTagName('col_uname')[0].firstChild.nodeValue;
                }
                else
                {
                        nchattd.innerHTML = '';
                }

That should fix it, let me know please.

Quote:

Originally Posted by wiz569 (Post 2094301)
Cheers m8 that seems to have worked a treat,at least on my test site :)

Will try the main site now for a while and let you know definitively,

Many thanks m8.

Just to let you know this is now working flawlessly on my main site,
thanks for your help m8 ;)

Hauk 09-10-2010 03:51 AM

Quote:

Originally Posted by kronnos (Post 2095755)
Wow, I got a whole bunch of error codes when i did that.

Warning: Error in parsing value for 'font-weight'. Declaration dropped.
Source File: http://www.mysite.com/
Line: 329
----------
Warning: Unknown property 'font-color'. Declaration dropped.
Source File: http://www.mysite.com/
Line: 401
---------
Warning: Error in parsing value for 'font-weight'. Declaration dropped.
Source File: http://www.mysite.com/
Line: 402
---------
Warning: Unknown property 'font-color'. Declaration dropped.
Source File: http://www.mysite.com/
Line: 412
---------
Warning: Error in parsing value for 'font-weight'. Declaration dropped.
Source File: http://www.mysite.com/
Line: 413
----------
Warning: Error in parsing value for 'width'. Declaration dropped.
Source File: http://www.mysite.com/mgc_cb_evo/cli...idget-skin.css
Line: 9
----------
Warning: Error in parsing value for 'margin-left'. Declaration dropped.
Source File: http://www.mysite.com/mgc_cb_evo/cli...idget-skin.css
Line: 14
----------
Warning: Unknown property '-moz-opacity'. Declaration dropped.
Source File: http://www.mysite.com/mgc_cb_evo/cli...idget-skin.css
Line: 24
-----------
Warning: Error in parsing value for 'filter'. Declaration dropped.
Source File: http://www.mysite.com/mgc_cb_evo/cli...idget-skin.css
Line: 24
-----------
Warning: Error in parsing value for 'padding'. Declaration dropped.
Source File: http://www.mysite.com/mgc_cb_evo/cli...atbox_tabs.css
Line: 40
----------
Warning: Unknown property 'zoom'. Declaration dropped.
Source File: http://www.mysite.com/mgc_cb_evo/cli...atbox_tabs.css
Line: 54
----------
Warning: Unknown property 'zoom'. Declaration dropped.
Source File: http://www.mysite.com/mgc_cb_evo/cli...atbox_tabs.css
Line: 59
-----------
Warning: Unknown property 'zoom'. Declaration dropped.
Source File: http://www.mysite.com/mgc_cb_evo/cli...atbox_tabs.css
Line: 76
-------------
Warning: Unknown property 'zoom'. Declaration dropped.
Source File: http://www.mysite.com/mgc_cb_evo/cli...atbox_tabs.css
Line: 92
-----------
Warning: Unknown property 'zoom'. Declaration dropped.
Source File: http://www.mysite.com/mgc_cb_evo/cli...atbox_tabs.css
Line: 132
----------
Warning: Unknown property 'zoom'. Declaration dropped.
Source File: http://www.mysite.com/mgc_cb_evo/cli...atbox_tabs.css
Line: 139
----------
Warning: Error in parsing value for 'cursor'. Declaration dropped.
Source File: http://www.mysite.com/mgc_cb_evo/cli...atbox_tabs.css
Line: 159
-----------
Warning: Error in parsing value for 'filter'. Declaration dropped.
Source File: http://yui.yahooapis.com/combo?2.7.0...sam/button.css
Line: 7

AND 2 more of exact same message after...
-----------
Warning: Expected declaration but found '*'. Skipped to next declaration.
Source File: http://yui.yahooapis.com/combo?2.7.0...sam/button.css
Line: 7

AND 9 more of exact same message after...
----------------
Warning: Expected declaration but found '*'. Skipped to next declaration.
Source File: http://yui.yahooapis.com/combo?2.7.0...sam/button.css
Line: 14

AND 7 more of exact same message after...
----------------

Those are warnings, it should be a js error thats stopping it from loading, if thats all you have then it should be loading...

IndyParts 09-10-2010 04:05 AM

I just got done loading this and the install went great, but I am having the same issue where it is getting stuck on the loading. I have setup permissions and made he mod to add the VAR line to the mgc_cb_evo_functions.js with the same results. Any other ideas?

kronnos 09-10-2010 04:58 AM

Quote:

Originally Posted by Hauk (Post 2096075)
Those are warnings, it should be a js error thats stopping it from loading, if thats all you have then it should be loading...

Yep, no js error. The strange thing is that it doesn't even seen to be loading when Loading is displayed. I remember in other versions, when it was loading "Loading..." the 3 after dots were blinking to tell you it was loading. Now its just stayes there as "Loading...", I can hightlight it and copy, it even shows the word "Loading..." when i look at the source code via firefox.

Quote:

Originally Posted by IndyParts (Post 2096080)
I just got done loading this and the install went great, but I am having the same issue where it is getting stuck on the loading. I have setup permissions and made he mod to add the VAR line to the mgc_cb_evo_functions.js with the same results. Any other ideas?

Seem the same as my issue.

Barteh 09-10-2010 11:33 AM

Would it somehow be possible to allow [url] tags, but none of the other formatting bbcode?
In fact, I'd love to have the chatbox automatically recognise and convert URLs the way the normal post box does.

*EDIT* must've overlooked the URL BBcode toggle. Still, automatic recognition would be a great addition.

darsalles 09-10-2010 03:47 PM

I imported the english xml, but there still phrases on French. Like the options on AdminCP and a text on the input field of the chat:

"Entrez votre chat" :S

hoof 09-10-2010 07:12 PM

I would love to hear how everyone is using the bot. I have been testing/playing with it and having fun :D

What type of questions are you using?

will555559 09-10-2010 07:13 PM

Quote:

Originally Posted by darsalles (Post 2096288)
I imported the english xml, but there still phrases on French. Like the options on AdminCP and a text on the input field of the chat:

"Entrez votre chat" :S

Admin CP > MGC Chatbox Evo > Chats Formatting > Message to display in the input field on page load.

darsalles 09-10-2010 07:39 PM

Thanks now working :D

ScornMan 09-11-2010 06:10 PM

Maybe this is a dumb question but i got this working but for some reason the buttons don't have images. where exactly am I supposed to install the images in my directory?


All times are GMT. The time now is 11:40 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.08839 seconds
  • Memory Usage 1,902KB
  • 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
  • (7)bbcode_code_printable
  • (4)bbcode_php_printable
  • (22)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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