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)

maidos 01-29-2008 06:26 AM

hm it doesnt seem that i can edit ??? on my forum, did reuploaded anyway i will ask the vb staff for help

thanks alot never notice the was a setting for the text field :)

oh and about the adding a command to open a forum section, is that possible?

VBDev 01-29-2008 06:45 AM

Quote:

Originally Posted by maidos (Post 1431443)
oh and about the adding a command to open a forum section, is that possible?

What do you mean ?

baghdad4ever 01-29-2008 06:55 AM

thanks vbdev

i will install it now

see you




Quote:

Originally Posted by Megatr0n (Post 1431131)
Is this compatible with 3.6.8?

yes:D

gothicuser 01-29-2008 07:22 AM

Another fine release. But as usual us lesser mortals that insist on using vBAdvanced are left until last, or even forgotten!
Just another mod thats pointless me even trying out :(

VBDev 01-29-2008 07:39 AM

Quote:

Originally Posted by gothicuser (Post 1431468)
Another fine release. But as usual us lesser mortals that insist on using vBAdvanced are left until last, or even forgotten!
Just another mod thats pointless me even trying out :(

I know I know but making it working with vbadvanced is not always that easy and I don't know vbadvanced a lot so it needs time.

I'll do my best to work out with stangger5 to get it working as soon as possible !

maidos 01-29-2008 08:01 AM

well since you added a feature for coders themself to use and customize their own commands im wondering if there are any possibility to create this command on shoutbox so it can open up a new window with a forum section

sickboy6ths 01-29-2008 08:04 AM

I want to thank you a million for the extremely well created update, or reincarnation!
The features are awesome! The performance is great! The code seems to be looking very well!!

The commands importing/exporting is simply genius!

Thanks again!


ps. we use the shoutbox on every CMPS page simply by putting the mgc_chatbox_var thing in the header :D

VBDev 01-29-2008 08:19 AM

Quote:

Originally Posted by maidos (Post 1431487)
well since you added a feature for coders themself to use and customize their own commands im wondering if there are any possibility to create this command on shoutbox so it can open up a new window with a forum section

You mean through a command, being able to open one of the forum sections by giving its forumid ?

For example, if you have a forum with id 5 you would type : /fopen 5 and it would open the forum in a new window ?

Quote:

Originally Posted by sickboy6ths (Post 1431488)
I want to thank you a million for the extremely well created update, or reincarnation!
The features are awesome! The performance is great! The code seems to be looking very well!!

The commands importing/exporting is simply genius!

Thanks again!


ps. we use the shoutbox on every CMPS page simply by putting the mgc_chatbox_var thing in the header :D

I know it works with vbadvanced when you are in the same folder as your forum.

But if you use vbavanced with the forum in a directory it won't work ! I suppose you're not in that configuration ;)

maidos 01-29-2008 08:23 AM

yeah thats my point, i want a command that it opens a new popup or new window whichleads to a new forum section and a new url site like forum/downloads.php

where can i add it theres html codes php codes and go no clue where to do that or how

jalmz 01-29-2008 08:23 AM

Quote:

Originally Posted by VBDev (Post 1431427)
Oh sorry there is a mistake in the procedure, you must add :
Code:

global $mgc_chatbox_var;
instead of
Code:

global $mgc_chatbox;


I think there is an error in the spanish language xml file.

I'll check that out later in the day.



Oh yes you're right ! there is a little bug for the unregistered users, will correct that.

About the usergroup default text color, what did you encountered exactly ? Which browser where you using ?



You encountered that error in the index page ?

its not working... =(

sickboy6ths 01-29-2008 08:25 AM

Quote:

Originally Posted by VBDev (Post 1431494)
I know it works with vbadvanced when you are in the same folder as your forum.

But if you use vbavanced with the forum in a directory it won't work ! I suppose you're not in that configuration ;)

That's correct. We had such problems with vbGallery aswell, I think we fixed it by replacing all urls in MGC php & js files and templates. The urls should be set to the vbBBurl variable, instead of leaving out url, and using relative urls/paths.

baghdad4ever 01-29-2008 08:36 AM

i have strange problem

the mgc box appear but when i put any word

the page lag and turn white

what is the problem??

MotMann 01-29-2008 09:14 AM

Is the german translation ready?

Flygye 01-29-2008 09:18 AM

Nice upgrade VBdev, many thanks.

Now i'm going translate this to my language ... Portuguese :)

maidos 01-29-2008 09:51 AM

hm i get members abusing the shoutbox everyday and im sick of it. Is it also possible if i can add msg warning them with text when they enter the text field? and i only want to have implented on specific usergroups

thanks alot if you can do this

edit: ok the vb staff helped me and it works on quick reply but i still cant post öäå and £ on the shoutbox
i did ths to work on quick reply
AdminCP > vBulletin Options > vBulletin Options > General Settings > Disable AJAX Features > Disable Problematic AJAX Features

VBDev 01-29-2008 10:39 AM

Quote:

Originally Posted by maidos (Post 1431496)
yeah thats my point, i want a command that it opens a new popup or new window whichleads to a new forum section and a new url site like forum/downloads.php

where can i add it theres html codes php codes and go no clue where to do that or how

If you have knowlegedin javascript, php and html you can handle it yourself by creating a new command through the dedicated system in the admincp.

Some clue to do the forum open command :
  1. Create a js file in clientscript/mgc_cb_evo_cmd containing a function that take an url string as parameter and just open a new window (window.open javascript function) at the url given as function parameter
  2. Create a new chatbox command through the admincp. And configure it somehow like the ban or del command which doesn't return anything but just execute. You'll have to add in the php code executed on chats sending code that contains :
    Code:

    $this->action = "your_js_function('forumdisplay.php?' + sessionurl + 'f=" . $this->raw_chat . "')";
    return;

    This code is not tested and written on the fly so you should perhaps dig a bit to correct it. You'll also to add the name of your js file to include in the command parameters.
Don't hesitate to ask me questions if you need help on figuring out how to do it. If you have not the skills to do that just wait for me to work on it ;)

Quote:

Originally Posted by jalmz (Post 1431497)
its not working... =(

I'll see on saturday what I can do to fix that.

Quote:

Originally Posted by sickboy6ths (Post 1431498)
That's correct. We had such problems with vbGallery aswell, I think we fixed it by replacing all urls in MGC php & js files and templates. The urls should be set to the vbBBurl variable, instead of leaving out url, and using relative urls/paths.

Yes I know, I just have to write some code to make it work for both with a single version of files ;)

Quote:

Originally Posted by baghdad4ever (Post 1431504)
i have strange problem

the mgc box appear but when i put any word

the page lag and turn white

what is the problem??

Can you give me an url to your forum + test account access to have a look (you can do it by pm if you don't want to show it to everyone.

lolo? 01-29-2008 10:41 AM

hello work fine
I have only one probleme
on admin cp
gestion des commandes=>modify comand
i cant do this i have a java script error

Salut beau travail tout fonctione bien sauf quand je veux editer les commandes
j'ai une erreur javascript j'ai tester avec FF et IE mais le probléme est le meme
Merci

VBDev 01-29-2008 10:41 AM

Quote:

Originally Posted by MotMann (Post 1431520)
Is the german translation ready?

No not yet, captainslater is working on it and will release it very soon.

Quote:

Originally Posted by Flygye (Post 1431522)
Nice upgrade VBdev, many thanks.

Now i'm going translate this to my language ... Portuguese :)

Great, plz share it with us once done :)

Quote:

Originally Posted by maidos (Post 1431549)
hm i get members abusing the shoutbox everyday and im sick of it. Is it also possible if i can add msg warning them with text when they enter the text field? and i only want to have implented on specific usergroups

thanks alot if you can do this

What do you mean by that ? Isn't the announcement above the chatbox for that purpose ?

Quote:

Originally Posted by maidos (Post 1431549)
edit: ok the vb staff helped me and it works on quick reply but i still cant post ??? and ? on the shoutbox
i did ths to work on quick reply
AdminCP > vBulletin Options > vBulletin Options > General Settings > Disable AJAX Features > Disable Problematic AJAX Features

Yes but you don't have quick reply in ajax now am I wrong so it did fix the problem by avoiding direct quick reply without page reload ?

VBDev 01-29-2008 10:43 AM

Quote:

Originally Posted by lolo? (Post 1431579)
hello work fine
I have only one probleme
on admin cp
gestion des commandes=>modify comand
i cant do this i have a java script error

Salut beau travail tout fonctione bien sauf quand je veux editer les commandes
j'ai une erreur javascript j'ai tester avec FF et IE mais le probl?me est le meme
Merci

Which error did you get ?

Do you have the javascript debugger app installed on your firefox copy so that you can test which js error it is ?

lolo? 01-29-2008 10:59 AM

1 Attachment(s)
the error message

maidos 01-29-2008 11:00 AM

well members treat it as search function and even though i do have announcement i still get retards treating the shoutbox as search function

heh well i did tried but didnt go so well.. i guess i could wait for you to work on it ;)

thanks

maidos 01-29-2008 11:04 AM

oh about the utf8 issue ? the quick reply woorks just fine

Saint_ago 01-29-2008 11:50 AM

The color pallete doesn't show in Opera (in the Usergroup Manager nor UserCp and Chatbox). It opens a blank combo, but when we select a "color", the tags are inserted correctly.

lolo? 01-29-2008 11:52 AM

hello
how deban one user ??
Comment on debannis un utilisateur ?

VBDev 01-29-2008 11:53 AM

Quote:

Originally Posted by lolo? (Post 1431589)
the error message

Do you have the same problem with channels system ?

Quote:

Originally Posted by maidos (Post 1431590)
well members treat it as search function and even though i do have announcement i still get retards treating the shoutbox as search function

heh well i did tried but didnt go so well.. i guess i could wait for you to work on it ;)

thanks

Oh what you mean is adding a prompt in the text field that would disappear upon click on the input field to warn them that they shoud input text in that field ?

Quote:

Originally Posted by maidos (Post 1431594)
oh about the utf8 issue ? the quick reply woorks just fine

Yes but how is it working ? Does the page reload upon quick reply or do you have the please wait and then message is added without page reload ?

Quote:

Originally Posted by Saint_ago (Post 1431606)
The color pallete doesn't show in Opera (in the Usergroup Manager nor UserCp and Chatbox). It opens a blank combo, but when we select a "color", the tags are inserted correctly.

Oh really ? Seems like I have used a property which is not handled by opera :(

I must admit I haven't tested the chatbox with opera but only with IE and FF on my computer + Safari on my Mac.

I'll have a look at it then with other bugs.

VBDev 01-29-2008 11:54 AM

Quote:

Originally Posted by lolo? (Post 1431607)
hello
how deban one user ??
Comment on debannis un utilisateur ?

Look at the help in the chatbox once you have installed the ban command, it's well explained.

lolo? 01-29-2008 11:54 AM

Quote:

Originally Posted by Saint_ago (Post 1431606)
The color pallete doesn't show in Opera (in the Usergroup Manager nor UserCp and Chatbox). It opens a blank combo, but when we select a "color", the tags are inserted correctly.

on fire fox it's the same

lolo? 01-29-2008 11:56 AM

Quote:

Originally Posted by VBDev (Post 1431610)
Do you have the same problem with channels system ?



Yes it's exactly the same

oops for the ban i must red before ask sorry

Saint_ago 01-29-2008 11:57 AM

1 Attachment(s)
Quote:

Originally Posted by VBDev (Post 1431610)
Oh really ? Seems like I have used a property which is not handled by opera :(

I must admit I haven't tested the chatbox with opera but only with IE and FF on my computer + Safari on my Mac.

I'll have a look at it then with other bugs.

Oh yeah, another problem with Opera + column size or something like that.. plz look at the attachment.

EDIT: Works fine on IE.

VBDev 01-29-2008 11:58 AM

Quote:

Originally Posted by lolo? (Post 1431612)
on fire fox it's the same

That's strange I did test it that's strange. Color palette was working fine.

Do you have an old version of firefox or are you running the latest one ?

Quote:

Originally Posted by lolo? (Post 1431614)
Yes it's exactly the same

Ok I'll have a look.

lolo? 01-29-2008 12:00 PM

i'm running on FF 2.0
no problem with ie

adnedarn 01-29-2008 12:41 PM

Hello, great work on the new chatbox! I have 2 things I'd like to bring up. First, some people have reported being randomly booted for inactivity in approx 2 mins, when the setting is 8 mins. (firefox and IE) it's not a consistent though...
Also, I see a few questions about something similar, but not an answer- the times are off... It seems to be set to eastern time, no matter what we have our profiles set to.

Thanks!

maidos 01-29-2008 12:50 PM

Quote:

Oh what you mean is adding a prompt in the text field that would disappear upon click on the input field to warn them that they shoud input text in that field ?
Exactly what i wish for ;)

Yes the page reloads dfor few seconds before it get posted

Do you think you can give me a eta if or when you canmake the commands?

VBDev 01-29-2008 01:02 PM

Quote:

Originally Posted by adnedarn (Post 1431650)
Hello, great work on the new chatbox! I have 2 things I'd like to bring up. First, some people have reported being randomly booted for inactivity in approx 2 mins, when the setting is 8 mins. (firefox and IE) it's not a consistent though...
Also, I see a few questions about something similar, but not an answer- the times are off... It seems to be set to eastern time, no matter what we have our profiles set to.

Thanks!

Really ? I had tested the inactivity and it was working. Could you ask your users to test a bit more to see if it's something that is repetitive or not ?

About time, look at the bug list this one is listed ;)

Quote:

Originally Posted by maidos (Post 1431653)
Exactly what i wish for ;)

Yes the page reloads dfor few seconds before it get posted

Do you think you can give me a eta if or when you canmake the commands?

Yes I can do the command, when, perhaps this weekend but not sure.

About the ajax, the fact that the page reload means that the quick reply is not ajax powered (thus disabled by the option the vb staff stated you).

So it seems that they are no clean solution to make accents works :(

Had you tried with other chatboxes, did you encountered the same problem ?

About the text in the input field, I add it to the todo list.

nerofix 01-29-2008 01:12 PM

Thank you for your support, works great now.

One suggestion: Make chatbox english by default after install and the languages in UTF-8 if possible.

VBDev 01-29-2008 01:38 PM

Quote:

Originally Posted by nerofix (Post 1431661)
Thank you for your support, works great now.

One suggestion: Make chatbox english by default after install and the languages in UTF-8 if possible.

No I am sorry but I won't, I am french so I want to keep that particularity :)

Saint_ago 01-29-2008 01:47 PM

Another issue that's happening since the last version.. sometimes the messages appears out of order, an user shouts 5 or 6 times and when another user shouts after the first user, their messages appears like he posted BEFORE the first user. Even appearing with time and date correct, the messages are messed and out of order.

It's happening a lot lately.

pedroenf 01-29-2008 02:05 PM

There is an error in the clientscript mgc folder. It's named mg_cb_evo_cmd when it should be mgc_cb_evo_cmd. It was driving me nuts this small issue, couldn't get the commands to work. Still, VBDev could you get this great mod working rigth in opera? That would be great. Thanks.

RvG2 01-29-2008 02:07 PM

I will test it in my test board... but hopefully the bugs will fixed before installing on my live site. :)

VBDev 01-29-2008 02:22 PM

Quote:

Originally Posted by Saint_ago (Post 1431678)
Another issue that's happening since the last version.. sometimes the messages appears out of order, an user shouts 5 or 6 times and when another user shouts after the first user, their messages appears like he posted BEFORE the first user. Even appearing with time and date correct, the messages are messed and out of order.

It's happening a lot lately.

Really, even with good times appearing ? :|

Quote:

Originally Posted by pedroenf (Post 1431689)
There is an error in the clientscript mgc folder. It's named mg_cb_evo_cmd when it should be mgc_cb_evo_cmd. It was driving me nuts this small issue, couldn't get the commands to work. Still, VBDev could you get this great mod working rigth in opera? That would be great. Thanks.

I have looked at files and it's indeed named mgc_cb_evo_cmd, where did you find it not well named ?

I will make it work for opera don't worry.


All times are GMT. The time now is 07:40 AM.

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.08292 seconds
  • Memory Usage 1,858KB
  • 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
  • (3)bbcode_code_printable
  • (32)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (3)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