Changelog
- Added delete functions for groups and users
- Added config options to change the ammount of ranks for a player
- Added log tabs for user/group actions
Upgrading from 1.1.3:
After uploading the files to your webserver. Run the following on your database.
ALTER TABLE `cw_permissions`
ADD COLUMN `can_del_group` TINYINT(1) NOT NULL DEFAULT '0' AFTER `can_edit_group_perms_house`;
ALTER TABLE `cw_logs`
CHANGE COLUMN `type` `type` ENUM('0','1','2','3','4','5','6') NOT NULL DEFAULT '0' AFTER `user_id`;
Once you have done that on your webserver go to config/config.php and add the folowing line before 'email' => array (
'life' => array (
'copRanks' => 7,
'emsRanks' => 5,
'adminRanks' => 5,
),