Changes between Version 3 and Version 4 of TracUserAdmin
- Timestamp:
- 04/26/13 19:02:22 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracUserAdmin
v3 v4 1 1 == Add a new Trac user == 2 2 3 These commands need to be run using sudo. 3 First sudo to root and then to the tradc user: 4 5 {{{ 6 sudo -i 7 su-trac 8 }}} 4 9 5 10 Export the username you want to add: 11 6 12 {{{ 7 13 export NEWTRACUSER=nickname 8 14 }}} 15 9 16 To add a user: 17 10 18 {{{ 11 19 trac-admin /web/tech.transitionnetwork.org/trac permission add $NEWTRACUSER admin 12 20 }}} 21 13 22 To set their password: 23 14 24 {{{ 15 25 htpasswd /web/tech.transitionnetwork.org/.htpasswd $NEWTRACUSER 16 26 }}} 17 You then need to login as the new user to set their email address for email notifications to work via the [/trac/prefs perferences page].18 27 19 See also the [https://tech.transitionnetwork.org/trac/admin/general/perm admin permissions page], this is where you can grant users TRAC_ADMIN permissions. 28 You then need to login as the new user to set their email address for email notifications to work via the [/trac/prefs preferences page]. 29 30 Then go to the [https://tech.transitionnetwork.org/trac/admin/general/perm#gp_subject admin permissions page] and use the '''Grant Permission''' form to grant users TRAC_ADMIN permissions.