Quote:
Originally Posted by Disasterpiece
Huh, never heard of that one before. 4.1.0 you say? I'll check back and see what's the problem. Didn't encounter something like this myself yet.
|
Invalid SQL:
INSERT INTO `vb_tsx_server` (`active`, `name`, `ip`, `port`, `queryport`, `serverID`, `type`, `order`, `cacheTime`, `signalTime`, `status`, `created`, `password`) VALUES ( 0, 'Teamspeak 2', 'xxx.xxx.xxx.xxx', 8767, 59176, 0, 1, 999, 0, 0, 3, '1307378271' );
'value' for 'password' is missing in sql-query ... the last value ('1307378271') in the query is the value for the 'created' timestamp.
vBulletin 4.1.3 pl1
avv 1.3
Edit 2 - solution:
tsxview_class.php, find line 126:
VALUES ( %d, '%s', '%s', %d, %d, %d, %d, %d, %d, %d, %d, '%s' )",
replace it with
VALUES ( %d, '%s', '%s', %d, %d, %d, %d, %d, %d, %d, %d, %d, '%s' )",