Quote:
Originally posted by mikey8270
i get this error:
Database error in vBulletin Control Panel 2.2.4:
Invalid SQL: INSERT INTO serverstatus (servertitle,serverid,serverstatus,serverspeed,ser verlocation,serveroperators,serverowner,servercomm ents) VALUES (fear,'','1')
mysql error: Column count doesn't match value count at row 1
|
I got that same error, I had to change line 31 in serverstatusadmin from
Code:
$DB_site->query ("INSERT INTO serverstatus (serverid,servertitle,serverstatus,serverspeed,serverlocation,serveroperators,serverowner,servercomments) VALUES (NULL,'$servertitle','1')");
to
Code:
$DB_site->query ("INSERT INTO serverstatus (serverid,servertitle,serverstatus,serverspeed,serverlocation,serveroperators,serverowner,servercomments) VALUES ('$serverid','$servertitle','$serverstatus','$serverspeed','$serverlocation','$serveroperators','$serverowner','$servercomments')");