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)

MDK-Indy 02-08-2009 11:16 AM

If i move more than one Thread from a sub-forum to another sub-forum i have a Database error.

Code:

Database error in vBulletin 3.8.0 Beta 2:

Invalid SQL:

            INSERT INTO vbmgc_cb_evo_chat
                (dateline,fromuid,ctext,sticky,chanid,coidentifier,iswarning,warningtype,tpforumid)
            VALUES
                (1234098648,,'7293,Spionagenetzt',0,0,0,1,'thread',26);

MySQL Error  : Fehler in der SQL-Syntax. Bitte die korrekte Syntax im Handbuch nachschlagen bei ''7293,Spionagenetzt',0,0,0,1,'thread',26)' in Zeile 4
Error Number  : 1064
Request Date  : Sunday, February 8th 2009 @ 02:10:48 PM
Error Date    : Sunday, February 8th 2009 @ 02:10:48 PM
Script        : http://forum......de/inlinemod.php?do=domovethreads&threadids=4731,7252,4730
Referrer      : http://forum.......de/inlinemod.php?forumid=26
IP Address    : 217.84.243.65
Username      : Indy
Classname    : vB_Database
MySQL Version : 5.0.32-Debian_7etch8-log


exyuteam 02-08-2009 11:24 AM

1 Attachment(s)
Quote:

Originally Posted by VBDev (Post 1737327)
I don't have that problem, please explain

OK. I will explain with PrnScr :) Just to say again, option Align usernames and chats are ON, and it's NOT WORKING on Firefox 3.0.6. (chat ver. 2.2.1), and WORKING OK in Chrome, IE 6, IE 7, Safari, and Firefox 2.0.0.20 (not try with other versions).... PrnScr from Chrome, Firefox 2.0.0.20 and Firefox 3.0.6 are attahed.....

Thanks m8 :cool:

entertain 02-08-2009 12:18 PM

Quote:

Originally Posted by MDK-Indy (Post 1737673)
If i move more than one Thread from a sub-forum to another sub-forum i have a Database error.

Code:

Database error in vBulletin 3.8.0 Beta 2:

Invalid SQL:

            INSERT INTO vbmgc_cb_evo_chat
                (dateline,fromuid,ctext,sticky,chanid,coidentifier,iswarning,warningtype,tpforumid)
            VALUES
                (1234098648,,'7293,Spionagenetzt',0,0,0,1,'thread',26);

MySQL Error  : Fehler in der SQL-Syntax. Bitte die korrekte Syntax im Handbuch nachschlagen bei ''7293,Spionagenetzt',0,0,0,1,'thread',26)' in Zeile 4
Error Number  : 1064
Request Date  : Sunday, February 8th 2009 @ 02:10:48 PM
Error Date    : Sunday, February 8th 2009 @ 02:10:48 PM
Script        : http://forum......de/inlinemod.php?do=domovethreads&threadids=4731,7252,4730
Referrer      : http://forum.......de/inlinemod.php?forumid=26
IP Address    : 217.84.243.65
Username      : Indy
Classname    : vB_Database
MySQL Version : 5.0.32-Debian_7etch8-log


That should fix it temporary:

Plug-in: Newthread notification handling (moderation)


Search for:
PHP Code:

(" . TIMENOW . "," . $this->existing['postuserid'] . ",'" . $this->dbobject->escape_string($tinfo['threadid'] . "," . $tinfo['title']) . "',0,0,0,1,'thread'," . $tinfo['forumid'] . "

Replace by
PHP Code:

(" . TIMENOW . "," . $tinfo['firstpostid'] . ",'" . $this->dbobject->escape_string($tinfo['threadid'] . "," . $tinfo['title']) . "',0,0,0,1,'thread'," . $tinfo['forumid'] . "

The only problem will be, that when somebody moves a thread, it will be posted as an anonymous shout. But it fixes the database error and this is more important. :)

entertain 02-08-2009 03:10 PM

Quote:

Originally Posted by VBDev (Post 1737055)
Ho ! Yes I changed that in 2.1.0 and didn't remember there was an impact on the counters update.

Marked as bug for the next version.

Hey, is this correct to fix it like this?

/admincp/mgc_cb_evo.php
PHP Code:

$vbulletin->db->query_first("SELECT MIN(dateline) AS start FROM " TABLE_PREFIX "mgc_cb_evo_chat WHERE isthreadwarning='0' AND ispostwarning='0'"); 

Replace by
PHP Code:

$vbulletin->db->query_first("SELECT MIN(dateline) AS start FROM " TABLE_PREFIX "mgc_cb_evo_chat WHERE iswarning='0'"); 

Or is there more that have to be changed? :o

ibeteck 02-08-2009 04:50 PM

I would like to know if there is a way to make the chatbox faster I already changed the refresh intervals but didn't seem to make a difference. Also I want to clear out my archives I don't know if that might help out to make it faster. How can I clear my archive for the chat?

DotSauce 02-08-2009 05:30 PM

Quote:

Originally Posted by ibeteck (Post 1737880)
I would like to know if there is a way to make the chatbox faster I already changed the refresh intervals but didn't seem to make a difference. Also I want to clear out my archives I don't know if that might help out to make it faster. How can I clear my archive for the chat?

Go to Chat Commands in administration and enable the /del command.

Then in chat type /del all or something like that.

Gamempire 02-08-2009 05:33 PM

well, i study the error that firebug gives me:

Code:

uncaught exception: [Exception... "Component returned failure code: 0x80004003 (NS_ERROR_INVALID_POINTER) [nsIDOMHTMLTableSectionElement.appendChild]" nsresult: "0x80004003 (NS_ERROR_INVALID_POINTER)" location: "JS frame :: http://yui.yahooapis.com/combo?2.6.0...ntainer-min.js :: anonymous :: line 50" data: no]


the error: NS_ERROR_INVALID_POINTER mean that there is something( "nsIDOMHTMLTableSectionElement") that the script can't append (the comand is: nsIDOMHTMLTableSectionElement.appendChild)

this create an infinite loop when the chatbox try to connect with ajax to the mysql database

(i have this problem with firefox and chrome, not with internet explorer)

i tried to empty cache and other things..nothing



can you fix it?


i would be very gratefully


EDIT: i also tried disabling all the other products, and it doesn't work

Falon 02-08-2009 06:30 PM

I have got ready installed this mod. But in my AdminCP when i going to Manage commands, Manage channels, View logs, Import scripts, Counters update i see only white page on my right side of AdminCP.

Mod is working. I can see on forum and using. But without Import scripts, Manage channels is not good for me.
?????

nath89 02-08-2009 06:43 PM

when i enable the chatbox nothing comes up on my homepage at all. just a blank screen?

acegames 02-08-2009 07:12 PM

Quote:

Originally Posted by MDK-Indy (Post 1737673)
If i move more than one Thread from a sub-forum to another sub-forum i have a Database error.

Code:

Database error in vBulletin 3.8.0 Beta 2:

Invalid SQL:

            INSERT INTO vbmgc_cb_evo_chat
                (dateline,fromuid,ctext,sticky,chanid,coidentifier,iswarning,warningtype,tpforumid)
            VALUES
                (1234098648,,'7293,Spionagenetzt',0,0,0,1,'thread',26);

MySQL Error  : Fehler in der SQL-Syntax. Bitte die korrekte Syntax im Handbuch nachschlagen bei ''7293,Spionagenetzt',0,0,0,1,'thread',26)' in Zeile 4
Error Number  : 1064
Request Date  : Sunday, February 8th 2009 @ 02:10:48 PM
Error Date    : Sunday, February 8th 2009 @ 02:10:48 PM
Script        : http://forum......de/inlinemod.php?do=domovethreads&threadids=4731,7252,4730
Referrer      : http://forum.......de/inlinemod.php?forumid=26
IP Address    : 217.84.243.65
Username      : Indy
Classname    : vB_Database
MySQL Version : 5.0.32-Debian_7etch8-log




I had this , so I switched off new post/thread notification until its fixed

Hornstar 02-09-2009 05:06 AM

Hopefully it will be fixed soon my members have been wanting this for so long, and I can't keep installing it and just having to disable it minutes later after each bug.

VBDev 02-09-2009 05:18 AM

Quote:

Originally Posted by LCN2007 (Post 1737420)
Yes sir i had it all set up are you using quicken plugin in FF to make the sound sand that plugin isnt supported any more due to some securities i think.

But i am using :

Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.6) Gecko/2009011913 Firefox/3.0.6
VBulletin 3.7.2

It did work in IE kinda every time you changed channels it was like boing boing boing even if no new chats had been posted.

Another issue is i cant get the smiles button to show

Well that's strange, did you refresh your cache after install ?

This working properly on my forum.

Anyone else in the same situation ?

Quote:

Originally Posted by eh69 (Post 1737525)
VBDev whats going on with my problems? Maybe reason are polish letters? Im using Latin2 encode.

Installed 2.2.1 version of chatbox.

Well that could perhaps be a problem of encoding in the language. Have you imported the english language on your polish one ?

Quote:

Originally Posted by deta (Post 1737546)
Please fix the bug with ibproarcade!!!!

cu Deta

Hey man calm down !!!
I am not a little dog that obey orders.

Quote:

Originally Posted by Mihalis (Post 1737566)
I was wondering if chats show properly in Safari after the update. Is that fixed with 2.2.1? Thank you.

Yes they do, with previous version too (am a Mac user so I have tested on Safari)

VBDev 02-09-2009 05:24 AM

Quote:

Originally Posted by MDK-Indy (Post 1737673)
If i move more than one Thread from a sub-forum to another sub-forum i have a Database error.

Code:

Database error in vBulletin 3.8.0 Beta 2:

Invalid SQL:

            INSERT INTO vbmgc_cb_evo_chat
                (dateline,fromuid,ctext,sticky,chanid,coidentifier,iswarning,warningtype,tpforumid)
            VALUES
                (1234098648,,'7293,Spionagenetzt',0,0,0,1,'thread',26);

MySQL Error  : Fehler in der SQL-Syntax. Bitte die korrekte Syntax im Handbuch nachschlagen bei ''7293,Spionagenetzt',0,0,0,1,'thread',26)' in Zeile 4
Error Number  : 1064
Request Date  : Sunday, February 8th 2009 @ 02:10:48 PM
Error Date    : Sunday, February 8th 2009 @ 02:10:48 PM
Script        : http://forum......de/inlinemod.php?do=domovethreads&threadids=4731,7252,4730
Referrer      : http://forum.......de/inlinemod.php?forumid=26
IP Address    : 217.84.243.65
Username      : Indy
Classname    : vB_Database
MySQL Version : 5.0.32-Debian_7etch8-log


Was this with the very latest files from here ?

Coz there had been problems with the earlier version 2.2.0.

Quote:

Originally Posted by exyuteam (Post 1737676)
OK. I will explain with PrnScr :) Just to say again, option Align usernames and chats are ON, and it's NOT WORKING on Firefox 3.0.6. (chat ver. 2.2.1), and WORKING OK in Chrome, IE 6, IE 7, Safari, and Firefox 2.0.0.20 (not try with other versions).... PrnScr from Chrome, Firefox 2.0.0.20 and Firefox 3.0.6 are attahed.....

Thanks m8 :cool:

Wow my damn very odd, I am marking this in the bug list to be checked.

Quote:

Originally Posted by entertain (Post 1737803)
Hey, is this correct to fix it like this?

/admincp/mgc_cb_evo.php
PHP Code:

$vbulletin->db->query_first("SELECT MIN(dateline) AS start FROM " TABLE_PREFIX "mgc_cb_evo_chat WHERE isthreadwarning='0' AND ispostwarning='0'"); 

Replace by
PHP Code:

$vbulletin->db->query_first("SELECT MIN(dateline) AS start FROM " TABLE_PREFIX "mgc_cb_evo_chat WHERE iswarning='0'"); 

Or is there more that have to be changed? :o

Yes that is :)

Quote:

Originally Posted by ibeteck (Post 1737880)
I would like to know if there is a way to make the chatbox faster I already changed the refresh intervals but didn't seem to make a difference. Also I want to clear out my archives I don't know if that might help out to make it faster. How can I clear my archive for the chat?

Well what is not fast for you ? Retrieving of chats data do takes time as it loads all data from ajax but that will be the case with any chatbox.

I might be implementing a kinda cache system in a release of the chatbox later this year to speed things up.

Quote:

Originally Posted by Gamempire (Post 1737912)
well, i study the error that firebug gives me:

Code:

uncaught exception: [Exception... "Component returned failure code: 0x80004003 (NS_ERROR_INVALID_POINTER) [nsIDOMHTMLTableSectionElement.appendChild]" nsresult: "0x80004003 (NS_ERROR_INVALID_POINTER)" location: "JS frame :: http://yui.yahooapis.com/combo?2.6.0...ntainer-min.js :: anonymous :: line 50" data: no]
the error: NS_ERROR_INVALID_POINTER mean that there is something( "nsIDOMHTMLTableSectionElement") that the script can't append (the comand is: nsIDOMHTMLTableSectionElement.appendChild)

this create an infinite loop when the chatbox try to connect with ajax to the mysql database

(i have this problem with firefox and chrome, not with internet explorer)

i tried to empty cache and other things..nothing



can you fix it?


i would be very gratefully


EDIT: i also tried disabling all the other products, and it doesn't work

Hum very strange. It seems like your using yui files for chatbox from Yahoo server.

Had you try with local files ? (you can select that in chatbox options)

VBDev 02-09-2009 05:26 AM

Quote:

Originally Posted by Falon (Post 1737965)
I have got ready installed this mod. But in my AdminCP when i going to Manage commands, Manage channels, View logs, Import scripts, Counters update i see only white page on my right side of AdminCP.

Mod is working. I can see on forum and using. But without Import scripts, Manage channels is not good for me.
?????

I don't understand ? You mean there is an error when you try to use theimport script ?

Or is it the counter ?

Quote:

Originally Posted by nath89 (Post 1737973)
when i enable the chatbox nothing comes up on my homepage at all. just a blank screen?

Well that's strange, the chatbox should block the display of the forum.

Any error when the forum behave like that ? (SQL you would have received by email or javascript in firefox console)

Quote:

Originally Posted by acegames (Post 1737988)
I had this , so I switched off new post/thread notification until its fixed

Well seems like you're using not the right files are you with 2.2.1 ?

Quote:

Originally Posted by hornstar1337 (Post 1738405)
Hopefully it will be fixed soon my members have been wanting this for so long, and I can't keep installing it and just having to disable it minutes later after each bug.

Well there are currently no blocking bugs as far as I know ?

DotSauce 02-09-2009 05:56 AM

Found another bug related to the post notifications...

When a post is made automatically via RSS feed the thread ID number is incorrect in the chatbox notification and leads to a not found page. Replies also lead to the incorrect thread ID.

I also think this is messing up other normal thread notification ID's.

Example: http://www.TweetSocial.com

Username: TestBot
Password: testing

LGKeiz 02-09-2009 08:57 AM

There is a problem with displaying "answered threads"

http://gamingsync.com/showthread.php...20more%20later.

in the chat box the %20 do not show, and you get;

Answered in thread : [ARG:4 UNDEFINED]

anyone know how to fix this?

danielbahl 02-09-2009 09:17 AM

1 Attachment(s)
Hi VBDev and others,

I love this chatbox. It's just perfect.

After upgradering to the newest 2.2.1 I have some problems:

1. Safari is messing up. The first line in the chat is a old post. The other lines is fine?
Attachment 94455

2. There is a problem with displaying "answered threads" in the chat box:
Answered in thread : [ARG:4 UNDEFINED]

Hope you have a fix! :up:

Again thanks for a great chatbox, I'm considering buying branding free to support you!

Gamempire 02-09-2009 10:34 AM

Quote:

Originally Posted by VBDev (Post 1738425)
Was this with the very latest files from here ?

Coz there had been problems with the earlier version 2.2.0.



Wow my damn very odd, I am marking this in the bug list to be checked.



Yes that is :)



Well what is not fast for you ? Retrieving of chats data do takes time as it loads all data from ajax but that will be the case with any chatbox.

I might be implementing a kinda cache system in a release of the chatbox later this year to speed things up.



Hum very strange. It seems like your using yui files for chatbox from Yahoo server.

Had you try with local files ? (you can select that in chatbox options)


yes, i tried, but i get the same error, with a link to the local file..
it seems that it doesn't manage very well the firefox DOM...

have you got some ideas?

SnapOff Racing 02-09-2009 11:34 AM

Quote:

Originally Posted by entertain (Post 1736939)
When I make a shout with the following content, there is no way to edit this shout any more. :o

HTML Code:

[URL=http://www.vbulletin.org/]Test[/URL]
Quote:

Originally Posted by VBDev (Post 1736948)
When url bbcode is active ?

If yes that's a bit normal as the chatbox is a link in that case so when you double click it moves yo to the link.


I noticed this issue also.. In the older versions of MGC you were able to click somewhere else on the same line as the link and the edit box would initialize. That doesn't work anymore... :confused:

enteha 02-09-2009 11:37 AM

I have an amazing problem with this mod and when I updated to this new version my problem still exists. in my browser (opera 8.51) I have no scroll bar to go up and down and all posts are shown in the frame. look at the image:

https://vborg.vbsupport.ru/external/2009/02/82.jpg

thanks.

Karabaja 02-09-2009 02:41 PM

Tried upgrading from 1.5 to 2.2.1 today on vbulletin 3.6.12 and it stuck on loading. Doesn't display any shouts.

This is a what I get on firebug console:

Quote:

<div dir="ltr">Your submission could not be processed because a security token was missing or mismatched
.<br />
<br />
If this occurred unexpectedly, please <a href="sendmessage.php">inform the administrator</a> and describe
the action you performed before you received this error.</div>
and it refers to :
Quote:

connection-min.js (line 7)

Falon 02-09-2009 03:21 PM

Quote:

Originally Posted by VBDev (Post 1738427)
Quote:

I have got ready installed this mod. But in my AdminCP when i going to Manage commands, Manage channels, View logs, Import scripts, Counters update i see only white page on my right side of AdminCP.

Mod is working. I can see on forum and using. But without Import scripts, Manage channels is not good for me.
?????
I don't understand ? You mean there is an error when you try to use theimport script ?

Or is it the counter ?

No. VBDev is exactly as i said. When click on links: Manage commands, Manage channels, View logs, Import scripts, Counters update then a don't see page with options on right side of AdminCP. Only white page.

DigitALL 02-09-2009 07:33 PM

Hello,

I have installed 1st time the Chat Box and worked fine. Then I added the vBadvanced CMPS module and did not worked for me (my index_cmps is not not in forum root) and the main Chat Box did not worked anymore.

Since I made some mods to the the script and templates (as per info in cmps module) I've uninstalled completely the ChatBox, removed all files, reversed/deleted all ChatBox templates.

I have uploaded a fresh copy, installed it, set the option, set the permissions in Usergroups and now as admin when I want to post something it gives me the message:
"Your submission could not be processed because a security token was missing.
If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error."

And the ChatBox shows "Loading" and nothing more...

I have no idea what to do next. I have verified over and over the permissions (Usergroups) and the settings but it is still the same. Please help me. :)

DotSauce 02-10-2009 01:58 AM

Notification links of new posts/replies in chat have incorrect thread ID's and lead to post not found page.

Is this because I have automated RSS feed posts?

HyperteX 02-10-2009 06:41 AM

I have the same Problem but no such a automated RSS Feed installed. Is there an Update?

TNI 02-10-2009 03:23 PM

I am running VB 3.8.1
MGC 2.2.1

I just upgraded VB and the Chatbox. Before the upgrade in Google Chrome, FF and Safari the loading icon was all I got in the chatbox(2.1). IE 7 the chatbox worked fine.

After the upgrade in IE the chatbox still works fine. In Google Chrome the chatbox now works. FF and Safari still get stuck on the loading icon. I've cleared my browser cache and started new sessions for FF and Safari, but I get the same results. The errors below are from FF.

Yahoo files:
Code:

Error: uncaught exception: [Exception... "Component returned failure code: 0x80004003 (NS_ERROR_INVALID_POINTER) [nsIDOMHTMLTableSectionElement.appendChild]"  nsresult: "0x80004003 (NS_ERROR_INVALID_POINTER)"  location: "JS frame :: http://yui.yahooapis.com/combo?2.6.0/build/animation/animation-min.js&2.6.0/build/datasource/datasource-min.js&2.6.0/build/autocomplete/autocomplete-min.js&2.6.0/build/element/element-beta-min.js&2.6.0/build/button/button-min.js&2.6.0/build/container/container-min.js :: anonymous :: line 50"  data: no]
local files:
Code:

Error: uncaught exception: [Exception... "Component returned failure code: 0x80004003 (NS_ERROR_INVALID_POINTER) [nsIDOMHTMLTableSectionElement.appendChild]"  nsresult: "0x80004003 (NS_ERROR_INVALID_POINTER)"  location: "JS frame :: http://www.tripsmarter.com/travelcommunity/clientscript/mgc_cb_evo/yui/element/element-beta-min.js :: anonymous :: line 7"  data: no]

Falon 02-10-2009 03:41 PM

I never seen a mod with so many problems as this one. My proposition is fix all mistajcs and after put on this forum. These 282 pages in this thread means something.

Gamempire 02-10-2009 06:23 PM

Quote:

Originally Posted by TNI (Post 1739901)
I am running VB 3.8.1
MGC 2.2.1

I just upgraded VB and the Chatbox. Before the upgrade in Google Chrome, FF and Safari the loading icon was all I got in the chatbox(2.1). IE 7 the chatbox worked fine.

After the upgrade in IE the chatbox still works fine. In Google Chrome the chatbox now works. FF and Safari still get stuck on the loading icon. I've cleared my browser cache and started new sessions for FF and Safari, but I get the same results. The errors below are from FF.

Yahoo files:
Code:

Error: uncaught exception: [Exception... "Component returned failure code: 0x80004003 (NS_ERROR_INVALID_POINTER) [nsIDOMHTMLTableSectionElement.appendChild]"  nsresult: "0x80004003 (NS_ERROR_INVALID_POINTER)"  location: "JS frame :: http://yui.yahooapis.com/combo?2.6.0/build/animation/animation-min.js&2.6.0/build/datasource/datasource-min.js&2.6.0/build/autocomplete/autocomplete-min.js&2.6.0/build/element/element-beta-min.js&2.6.0/build/button/button-min.js&2.6.0/build/container/container-min.js :: anonymous :: line 50"  data: no]
local files:
Code:

Error: uncaught exception: [Exception... "Component returned failure code: 0x80004003 (NS_ERROR_INVALID_POINTER) [nsIDOMHTMLTableSectionElement.appendChild]"  nsresult: "0x80004003 (NS_ERROR_INVALID_POINTER)"  location: "JS frame :: http://www.tripsmarter.com/travelcommunity/clientscript/mgc_cb_evo/yui/element/element-beta-min.js :: anonymous :: line 7"  data: no]


you have the same error of me..
i'm thinking that there is some mod that creates conflict

let's talk on a chat, maybe we can resolve the problem

msn: nesis@hotmail.it
skype: gamempire
gtalk: nesis@gamempire.it

Alfa1 02-10-2009 07:06 PM

I upgraded from 2.1 to 2.2.1, but still have AJAX errors.

Gamempire 02-10-2009 08:38 PM

Quote:

Originally Posted by Falon (Post 1739920)
I never seen a mod with so many problems as this one. My proposition is fix all mistajcs and after put on this forum. These 282 pages in this thread means something.

this mod is not simply as the others..
the developer is very good and the work is very hard, so don't do any affermations without known..

282 pages means that this mod is very popular, and choosed by a lot of vbulletin administrators..and this means that the mod is not as bad as you said :P

DigitALL 02-11-2009 02:32 AM

I have read almost all thread to find a fix for my problem. I have posted before and hopefully the coder will help me out...

I installed first time the ChatBox and worked fine (damn me, I should of leave it like that!) but added CMPS module that did not worked for me. I have uninstalled it (both the module and ChatBox) and completly removing absolutely all files. I started fresh, fixed the permissions in the Usergroups, settings, etc. and when I try to post something I get a page with:
"Your submission could not be processed because a security token was missing.
If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error."


- I have uninstalled it, removed all files, made sure there is nothing in templates.
- I have reloaded all files, installed the product, fixed the permissions (all other settings as default) and still the same message.
- I have optimized/fixed the db, ran the maintenance with most activities there, clean the browser cache (I've tried it on two different computers and three browsers.
- I have re-uploaded the ChatBox files, installed it as an upgrade, fixed the permissions, and i still get this message:
"Your submission could not be processed because a security token was missing.
If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error."


Also, when I click on smilies link, the page moves down to the ChatBox limit and the link in the browser is: http://www.myforum.com/forum/index.php#mgc_cb_evo_top

I ma struggling with this from more than two days and don't know what else I should do. Please help me out.

lil7rocket 02-11-2009 05:56 AM

was about to +++++ then realized I Dled this before the update hahahah

Hornstar 02-11-2009 06:08 AM

What are all the commands?

could you upload them all to the first post or link me to where they are. thanks.

also when i go to slap someone it always says: The user you are trying to slap doesn't exist
even tho they do exist!

the only time it works is when I go /slap uid 1 but then it spits out some french: username gifle avec violence username
Why is some in French still?

Bug: Answered in thread : [ARG:4 UNDEFINED]

and when I click on it, it goes to an incorrect url: /forums/showthread.php?t=1199222#post[DLL Release]Cell Hack Pack 2~

looks like it is conflicting with vbseo partially.

DL_Ashe 02-11-2009 08:04 AM

Quote:

Originally Posted by hornstar1337 (Post 1740509)
What are all the commands?

I only installed this product yesterday, so bear with me.... but most commands that can be performed by typing them, can also be performed by clicking on the arrow to the left of a username (PM, ban, slap, etc). Which means no typing at all.

Quote:

Originally Posted by hornstar1337 (Post 1740509)
also when i go to slap someone it always says: The user you are trying to slap doesn't exist even tho they do exist!

Sounds like you don't have the syntax right. I use /slap uname <username> and it works perfectly on my forums.

Quote:

Originally Posted by hornstar1337 (Post 1740509)
the only time it works is when I go /slap uid 1 but then it spits out some french: username gifle avec violence username

I did notice some stuff in French in the admin console, but it was a quick 5 minutes to change the messages to something more meaningful to my forums in English and all was good. I personally found around 4 or 5 statements in French, which I quickly changed.

VBDev: Great product! I installed it and set it up without a single hitch. I've been asked by some of my members about a couple of things...
(1) What is the T button with the Red X through it for? Can't seem to work that out...
(2) The Who's Online button seems sporadic in listing who is in the chatroom, possibly due to who has the full window open or not? Is it possible to integrate the chat into a top level menu bar (ie. if we look at this forum, and have it sitting on the menu between New Posts & Quick Links), rather than sitting in the forum main?

I sincerely apologise if the above is a basic function that can be easily performed... but I am really green at the product. But it does look fabulous overall, and my members are really thrilled with it! Thanks again! :)

VBDev 02-11-2009 09:30 AM

Quote:

Originally Posted by DotSauce (Post 1738439)
Found another bug related to the post notifications...

When a post is made automatically via RSS feed the thread ID number is incorrect in the chatbox notification and leads to a not found page. Replies also lead to the incorrect thread ID.

I also think this is messing up other normal thread notification ID's.

Example: http://www.TweetSocial.com

Username: TestBot
Password: testing

There was no notification when I logged in.

Notifications were made for thread created by vBulletin RSS feed ?

Quote:

Originally Posted by LGKeiz (Post 1738520)
There is a problem with displaying "answered threads"

http://gamingsync.com/showthread.php...20more%20later.

in the chat box the %20 do not show, and you get;

Answered in thread : [ARG:4 UNDEFINED]

anyone know how to fix this?

You haven't taken the last language version, please consider importing the language file of the 2.2.1 release.

Quote:

Originally Posted by danielbahl (Post 1738528)
Hi VBDev and others,

I love this chatbox. It's just perfect.

After upgradering to the newest 2.2.1 I have some problems:

1. Safari is messing up. The first line in the chat is a old post. The other lines is fine?
Attachment 94455

2. There is a problem with displaying "answered threads" in the chat box:
Answered in thread : [ARG:4 UNDEFINED]

Hope you have a fix! :up:

Again thanks for a great chatbox, I'm considering buying branding free to support you!

1. There used to be such problem with previous version. Are you using last js files and cache refreshed ?

2. Same as answer just above.

Quote:

Originally Posted by Gamempire (Post 1738578)
yes, i tried, but i get the same error, with a link to the local file..
it seems that it doesn't manage very well the firefox DOM...

have you got some ideas?

No not currently.

VBDev 02-11-2009 09:34 AM

Quote:

Originally Posted by SnapOff Racing (Post 1738603)
I noticed this issue also.. In the older versions of MGC you were able to click somewhere else on the same line as the link and the edit box would initialize. That doesn't work anymore... :confused:

Well yeah I'll look into it in next release.

Quote:

Originally Posted by enteha (Post 1738608)
I have an amazing problem with this mod and when I updated to this new version my problem still exists. in my browser (opera 8.51) I have no scroll bar to go up and down and all posts are shown in the frame. look at the image:

https://vborg.vbsupport.ru/external/2009/02/82.jpg

thanks.

You mean it expand after each chat ?

Quote:

Originally Posted by Karabaja (Post 1738734)
Tried upgrading from 1.5 to 2.2.1 today on vbulletin 3.6.12 and it stuck on loading. Doesn't display any shouts.

This is a what I get on firebug console:



and it refers to :

With 2.2.1 you are not supposed to need to edit files again. Did you refresh your cache and revert templates ?

Quote:

Originally Posted by Falon (Post 1738768)
No. VBDev is exactly as i said. When click on links: Manage commands, Manage channels, View logs, Import scripts, Counters update then a don't see page with options on right side of AdminCP. Only white page.

I don't understand you, please reformulate your question/problem.

Quote:

Originally Posted by DigitALL (Post 1738995)
Hello,

I have installed 1st time the Chat Box and worked fine. Then I added the vBadvanced CMPS module and did not worked for me (my index_cmps is not not in forum root) and the main Chat Box did not worked anymore.

Since I made some mods to the the script and templates (as per info in cmps module) I've uninstalled completely the ChatBox, removed all files, reversed/deleted all ChatBox templates.

I have uploaded a fresh copy, installed it, set the option, set the permissions in Usergroups and now as admin when I want to post something it gives me the message:
"Your submission could not be processed because a security token was missing.
If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error."

And the ChatBox shows "Loading" and nothing more...

I have no idea what to do next. I have verified over and over the permissions (Usergroups) and the settings but it is still the same. Please help me. :)

You refreshed your cache after install ?

Otherwise if using 2.2.1 you shouldn't encounter that issue.
Have you a vB 3.6 version ?

Spooony 02-11-2009 09:50 AM

Wonderful little chatbox, however one very important feature would be to disable the sound notification for when a new chat is received and only have sound notification when a new thread is made or replied to. Is this already there and I'm missing it?

(I also get a database error when I click on the dropdown "view all chats")

Hornstar 02-11-2009 10:13 AM

when im in the archive and i click on view all chats of a specific user I get a database error:

Code:

Database error in vBulletin 3.8.1:

Invalid SQL:

        SELECT COUNT(chatid) AS nbchats
        FROM vb3_mgc_cb_evo_chat AS c
        LEFT JOIN vb3_user AS fromu ON (c.fromuid=fromu.userid)
        LEFT JOIN vb3_user AS tou ON (c.touid=tou.userid)
        WHERE coidentifier IN ('0','me','announcement','ban','del','ignore','slap') AND fromuid='1' AND isthreadwarning='0' AND ispostwarning='0'
        ORDER BY c.dateline DESC;

MySQL Error  : Unknown column 'isthreadwarning' in 'where clause'
Error Number  : 1054
Request Date  : Wednesday, February 11th 2009 @ 07:11:51 AM
Error Date    : Wednesday, February 11th 2009 @ 07:11:52 AM
Script        : http://www..net/forums/mgc_cb_evo.php?do=search&what=userchats&u=1
Referrer      : http://www..net/forums/chatbox/archive/page-1.html
IP Address    : 2
Username      :
Classname    : vB_Database
MySQL Version : 5.0.67-community


Hornstar 02-11-2009 10:19 AM

I noticed that even tho I have restricted the size bb code to size 3, that you can still manually enter in large sizes and it works. Can you make it so what ever you specify that it becomes the largest size you can use. Thanks.

another little bug, I have the bar to type down the bottom and the newest chats at the bottom, but when you have threads and posts on the left, the scroll bar is always up the top instead of down the bottom showing you the newest.

VBDev 02-11-2009 10:29 AM

Quote:

Originally Posted by DotSauce (Post 1739301)
Notification links of new posts/replies in chat have incorrect thread ID's and lead to post not found page.

Is this because I have automated RSS feed posts?

Well is it all or just the RSS feed ones ?

Quote:

Originally Posted by HyperteX (Post 1739485)
I have the same Problem but no such a automated RSS Feed installed. Is there an Update?

What are you having as problem ?

Quote:

Originally Posted by TNI (Post 1739901)
I am running VB 3.8.1
MGC 2.2.1

I just upgraded VB and the Chatbox. Before the upgrade in Google Chrome, FF and Safari the loading icon was all I got in the chatbox(2.1). IE 7 the chatbox worked fine.

After the upgrade in IE the chatbox still works fine. In Google Chrome the chatbox now works. FF and Safari still get stuck on the loading icon. I've cleared my browser cache and started new sessions for FF and Safari, but I get the same results. The errors below are from FF.

Yahoo files:
Code:

Error: uncaught exception: [Exception... "Component returned failure code: 0x80004003 (NS_ERROR_INVALID_POINTER) [nsIDOMHTMLTableSectionElement.appendChild]"  nsresult: "0x80004003 (NS_ERROR_INVALID_POINTER)"  location: "JS frame :: http://yui.yahooapis.com/combo?2.6.0/build/animation/animation-min.js&2.6.0/build/datasource/datasource-min.js&2.6.0/build/autocomplete/autocomplete-min.js&2.6.0/build/element/element-beta-min.js&2.6.0/build/button/button-min.js&2.6.0/build/container/container-min.js :: anonymous :: line 50"  data: no]
local files:
Code:

Error: uncaught exception: [Exception... "Component returned failure code: 0x80004003 (NS_ERROR_INVALID_POINTER) [nsIDOMHTMLTableSectionElement.appendChild]"  nsresult: "0x80004003 (NS_ERROR_INVALID_POINTER)"  location: "JS frame :: http://www.tripsmarter.com/travelcommunity/clientscript/mgc_cb_evo/yui/element/element-beta-min.js :: anonymous :: line 7"  data: no]

Hum that strange I am adding to the bug list.

Do you have this problem both in chats at the top and chats at the bottom ?

Quote:

Originally Posted by Falon (Post 1739920)
I never seen a mod with so many problems as this one. My proposition is fix all mistajcs and after put on this forum. These 282 pages in this thread means something.

lol man you make me laugh...

If you go on vBulletin.com some thread has lots of pages, does that mean vBulletin has so may problems ? I don't think so.

282 pages means that the mod is active and people are interested that's all !

Quote:

Originally Posted by Gamempire (Post 1740093)
you have the same error of me..
i'm thinking that there is some mod that creates conflict

let's talk on a chat, maybe we can resolve the problem

msn: nesis@hotmail.it
skype: gamempire
gtalk: nesis@gamempire.it

Sorry I don't have time to help you live debug bud !


All times are GMT. The time now is 09:33 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.06790 seconds
  • Memory Usage 1,975KB
  • 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
  • (13)bbcode_code_printable
  • (1)bbcode_html_printable
  • (6)bbcode_php_printable
  • (44)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (6)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