Menu

Why Groups and Roles are locked

Help
2008-04-19
2013-04-16
  • illuminator

    illuminator - 2008-04-19

    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

     
    • Bryce Nesbitt

      Bryce Nesbitt - 2008-06-19

      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.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.