· 8 years ago · Aug 08, 2018, 06:18 PM
1Create a databse at the same location where the server MySQL databse is. (as defined in config/dbconfig.txt under ADDRESS and PORT) It can be a separate database or the same one, as you wish. Create the following table in it: (name needs to remain as 'erro_feedback')
2
3CREATE TABLE IF NOT EXISTS `erro_feedback` (
4 `id` int(11) NOT NULL AUTO_INCREMENT,
5 `time` datetime NOT NULL,
6 `round_id` int(8) NOT NULL,
7 `var_name` varchar(32) NOT NULL,
8 `var_value` int(16) DEFAULT NULL,
9 `details` text,
10 PRIMARY KEY (`id`)
11);
12
13Open the file config/dbconfig.txt and edit the following lines:
14FEEDBACK_DATABASE test
15FEEDBACK_LOGIN mylogin
16FEEDBACK_PASSWORD mypassword