Code: Select all
Error getting information from users table!
DEBUG MODE
SQL Error : 1054 Unknown column 'user_items' in 'field list'
SELECT `username`, `user_items` FROM phpbb_users WHERE user_id='9'
Line : 174
File : lottery.php
Code: Select all
Error getting information from users table!
DEBUG MODE
SQL Error : 1054 Unknown column 'user_items' in 'field list'
SELECT `username`, `user_items` FROM phpbb_users WHERE user_id='9'
Line : 174
File : lottery.php
Code: Select all
CREATE TABLE `phpbb_lottery`
(`id` INT UNSIGNED NOT NULL AUTO_INCREMENT, `user_id` INT (20) NOT NULL, PRIMARY KEY(`id`), INDEX(`user_id`));
INSERT INTO `phpbb_config` (config_name, config_value) VALUES ('lottery_cost', '1');
INSERT INTO `phpbb_config` (config_name, config_value) VALUES ('lottery_ticktype', 'single');
INSERT INTO `phpbb_config` (config_name, config_value) VALUES ('lottery_length', '500000');
INSERT INTO `phpbb_config` (config_name, config_value) VALUES ('lottery_name', 'Lottery');
INSERT INTO `phpbb_config` (config_name, config_value) VALUES ('lottery_base', '50');
INSERT INTO `phpbb_config` (config_name, config_value) VALUES ('lottery_start', '0');
INSERT INTO `phpbb_config` (config_name, config_value) VALUES ('lottery_reset', '0');
INSERT INTO `phpbb_config` (config_name, config_value) VALUES ('lottery_status', '0');
INSERT INTO `phpbb_config` (config_name, config_value) VALUES ('lottery_items', '0');
INSERT INTO `phpbb_config` (config_name, config_value) VALUES ('lottery_win_items', '');
INSERT INTO `phpbb_config` (config_name, config_value) VALUES ('lottery_show_entries', '0');
INSERT INTO `phpbb_config` (config_name, config_value) VALUES ('lottery_mb', '0');
INSERT INTO `phpbb_config` (config_name, config_value) VALUES ('lottery_mb_amount', '1');
INSERT INTO `phpbb_config` (config_name, config_value) VALUES ('lottery_history', '1');
INSERT INTO `phpbb_config` (config_name, config_value) VALUES ('lottery_currency', '');
INSERT INTO `phpbb_config` (config_name, config_value) VALUES ('lottery_item_mcost', '1');
INSERT INTO `phpbb_config` (config_name, config_value) VALUES ('lottery_item_xcost', '500');
INSERT INTO `phpbb_config` (config_name, config_value) VALUES ('lottery_random_shop', '');
CREATE TABLE `phpbb_lottery_history`
(
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT,
`user_id` INT (20) NOT NULL,
`amount` INT (20) NOT NULL,
`currency` CHAR (32) NOT NULL,
`time` INT (20) NOT NULL, PRIMARY KEY(`id`), INDEX(`user_id`)
);