๐ ๏ธ Installation
Requirements
Step 1: Download & Extract
Step 2: Database Setup
CREATE TABLE IF NOT EXISTS `jc_whitelist` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`license` varchar(255) NOT NULL,
`name` varchar(100) DEFAULT NULL,
`whitelisted` tinyint(1) DEFAULT 0,
`status` varchar(50) DEFAULT 'pending',
`application_data` longtext DEFAULT NULL,
`score` int(11) DEFAULT 0,
`attempts` int(11) DEFAULT 0,
`last_attempt` timestamp NULL DEFAULT NULL,
`created_at` timestamp DEFAULT current_timestamp(),
`updated_at` timestamp DEFAULT current_timestamp() ON UPDATE current_timestamp(),
PRIMARY KEY (`id`),
UNIQUE KEY `license` (`license`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;Step 3: Server Configuration
Step 4: Admin Permissions
Step 5: Basic Configuration
Step 6: Test
Last updated