
02-09-2009, 05:24 AM
|
 |
|
|
Join Date: Jan 2004
Location: France
Posts: 2,570
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by MDK-Indy
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
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 
|
Wow my damn very odd, I am marking this in the bug list to be checked.
Quote:
Originally Posted by entertain
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? 
|
Yes that is
Quote:
Originally Posted by ibeteck
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
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)
|