@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update documentation to reflect bin/auth changes

Summary: See https://secure.phabricator.com/D18901#249481. Update the docs and a warning string to reflect the new reality that `bin/auth recover` is now able to recover any account, not just administrators.

Test Plan: Mk 1 eyeball

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin

Differential Revision: https://secure.phabricator.com/D20007

+10 -12
+1 -1
src/applications/auth/controller/PhabricatorAuthStartController.php
··· 88 88 'This Phabricator install is not configured with any enabled '. 89 89 'authentication providers which can be used to log in. If you '. 90 90 'have accidentally locked yourself out by disabling all providers, '. 91 - 'you can use `%s` to recover access to an administrative account.', 91 + 'you can use `%s` to recover access to an account.', 92 92 'phabricator/bin/auth recover <username>')); 93 93 } 94 94
+9 -11
src/docs/user/configuration/configuring_accounts_and_registration.diviner
··· 14 14 users to log in with a traditional username and password. Other providers 15 15 support logging in with other credentials. For example: 16 16 17 - - **Username/Password:** Users use a username and password to log in or 18 - register. 19 17 - **LDAP:** Users use LDAP credentials to log in or register. 20 18 - **OAuth:** Users use accounts on a supported OAuth2 provider (like 21 19 GitHub, Facebook, or Google) to log in or register. ··· 30 28 associate an existing Phabricator account with a GitHub OAuth account) or users 31 29 can use it to register new accounts (assuming you enable these options). 32 30 33 - = Recovering Administrator Accounts = 31 + = Recovering Inaccessible Accounts = 34 32 35 - If you accidentally lock yourself out of Phabricator, you can use the `bin/auth` 36 - script to recover access to an administrator account. To recover access, run: 33 + If you accidentally lock yourself out of Phabricator (for example, by disabling 34 + all authentication providers), you can use the `bin/auth` 35 + script to recover access to an account. To recover access, run: 37 36 38 37 phabricator/ $ ./bin/auth recover <username> 39 38 40 - ...where `<username>` is the admin account username you want to recover access 41 - to. This will give you a link which will log you in as the specified 42 - administrative user. 39 + ...where `<username>` is the account username you want to recover access 40 + to. This will generate a link which will log you in as the specified user. 43 41 44 42 = Managing Accounts with the Web Console = 45 43 ··· 57 55 58 56 phabricator/ $ ./bin/accountadmin 59 57 60 - Some options (like setting passwords and changing certain account flags) are 61 - only available from the CLI. You can also use this script to make a user 62 - an administrator (if you accidentally remove your admin flag) or create an 58 + Some options (like changing certain account flags) are only available from 59 + the CLI. You can also use this script to make a user 60 + an administrator (if you accidentally remove your admin flag) or to create an 63 61 administrative account. 64 62 65 63 = Next Steps =