Quote:
Originally Posted by HHU
Invalid SQL:
INSERT INTO `lottery_settings` VALUES (1, 0, 'uttpoints', 3, '50,30,10', 1, 1, 1, 1, 1, '1,2,5,10', 1);
|
What version of the vbcasino are you using.
From the looks of what you are trying to insert is wrong its to long.
This is trying to insert 12 fields and there is only 6 for the lottery_setting table.
In the casino_install.php file look for this on link 430 i think.
PHP Code:
INSERT INTO " . TABLE_PREFIX . "lottery_settings
It should look like this
PHP Code:
$DB_site->query("
INSERT INTO " . TABLE_PREFIX . "lottery_settings (active,lotteryactive,slotsactive,cashrow,winners,winamount) VALUES ('1','1','1','".$cashrow."','1','60')
");
If it dont look like this try putting that in and run the install again.
Let me know if this fixs your problem.
Mike