Hi all,
i installed the bug tracker few days ago without probs. But, why the "Groups" and "Roles" are locked ? how can i unlockes those ?
BTW: i can add users to a group. But how can a assign a "Role" ?
Thanks a lot
Nico
You can unlock them with SQL. I'm not sure why they are locked by default":
mysql> select group_id,group_name,locked,is_role from phpbt_auth_group; +----------+------------+--------+---------+ | group_id | group_name | locked | is_role | +----------+------------+--------+---------+ | 1 | Admin | 1 | 0 | | 2 | User | 1 | 0 | | 3 | Developer | 1 | 0 | | 5 | Guest | 1 | 1 | | 6 | User | 1 | 1 | | 7 | Reporter | 1 | 1 | | 8 | Assignee | 1 | 1 | | 9 | Owner | 1 | 1 | +----------+------------+--------+---------+ 8 rows in set (0.00 sec)
update phpbt_auth_group set locked=0 where group_id=4;
Log in to post a comment.
Hi all,
i installed the bug tracker few days ago without probs. But, why the "Groups" and "Roles" are locked ? how can i unlockes those ?
BTW: i can add users to a group. But how can a assign a "Role" ?
Thanks a lot
Nico
You can unlock them with SQL. I'm not sure why they are locked by default":
mysql> select group_id,group_name,locked,is_role from phpbt_auth_group;
+----------+------------+--------+---------+
| group_id | group_name | locked | is_role |
+----------+------------+--------+---------+
| 1 | Admin | 1 | 0 |
| 2 | User | 1 | 0 |
| 3 | Developer | 1 | 0 |
| 5 | Guest | 1 | 1 |
| 6 | User | 1 | 1 |
| 7 | Reporter | 1 | 1 |
| 8 | Assignee | 1 | 1 |
| 9 | Owner | 1 | 1 |
+----------+------------+--------+---------+
8 rows in set (0.00 sec)
update phpbt_auth_group set locked=0 where group_id=4;