Changes between Version 19 and Version 20 of UserGuidelines/Admin
- Timestamp:
- 08/27/12 06:22:10 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UserGuidelines/Admin
v19 v20 9 9 * [UserGuidelinesLocalisation Localisation] 10 10 * [UserGuidelines/Scheduler Scheduler] 11 * [UserGuidelines/Admin/UserManagement User Management] 11 12 * [UserGuidelines/Admin/Synchronization Synchronisation] 12 13 * [UserGuidelines/Admin/Backups Backups] … … 14 15 * [UserGuidelines/Admin/RecordMerging Record Merging] (De-duplication) 15 16 * TroubleShooting 16 == User Management ==17 === Approve a Pending User's registration ===18 {{{19 /eden/admin/user20 }}}21 22 Find user & remove the 'Pending' flag23 24 === Reset password from CLI ===25 If you have CLI access to an instance, but don't know the password for an admin login then you can reset a password:26 {{{27 w2p28 import hmac29 import hashlib30 alg = hashlib.sha51231 hmac_key = auth.settings.hmac_key32 password = hmac.new(hmac_key, "newpassword", alg).hexdigest()33 table = db.auth_user34 db(table.email == "myemail@domain.com").update(password = password)35 }}}36 17 37 18 == See Also ==