Extension:EditAccount/ja
WikiTeq provides official support for MediaWiki LTS releases only. It may work with other MediaWiki releases. |
警告: ここで記述しているコードまたは設定には、セキュリティ上の重大なリスクがあります。 サイトの管理者へ: このセキュリティ上の問題が解決されるまで、これを使用しないように勧告します。 問題点: This extension is believed to pose serious security and/or privacy risks! Users with access to this extension can change a user's email address and password, which basically gives them the ability to take over another user's account. Additionally, users can indefinitely disable a user account which is not reversible via an extension or other special page. Therefore, do NOT grant a user access to this extension unless you 100% trust them not to abuse it. It is recommended to only grant access to bureaucrat or higher access levels. We are not responsible for any security and/or privacy leaks. 解決法: If unsure, do not install this extension. |
![]() リリースの状態: 安定 |
|
---|---|
![]() |
|
実装 | 特別ページ |
説明 | アカウントの詳細の編集やアカウントの無効化をできるようにする |
作者 | Łukasz Garczewski, Jack Phoenix |
メンテナー | WikiTeq team |
最新バージョン | 1.3.4 (2022-12-13) |
互換性の方針 | 長期間サポート リリースであるすべての MediaWiki リリースについて、拡張機能に対応するブランチが存在します。 |
MediaWiki | 1.35-1.39 |
ライセンス | GNU 一般公衆利用許諾書 2.0 以降 |
ダウンロード | |
editaccount |
|
Quarterly downloads | 60 (Ranked 114th) |
Public wikis using | 334 (Ranked 347th) |
translatewiki.net で翻訳を利用できる場合は、EditAccount 拡張機能の翻訳にご協力ください | |
問題点 | 未解決のタスク · バグを報告 |
The EditAccount extension has two main purposes. One is to change the password, real name, or email address of another user. The second is to disable the account of another user.
The special page may be limited to a certain user group such as staff or bureaucrats.
効果
Changing the password
Changing the password will automatically log out the user. Since the password is changed, it can prevent access to their account. This can be an alternative to disabling the user's account.
Disabling an account
Similar to the above, the user will be logged out immediately. Alongside that, the following will take effect:
- The user's password will be scrambled, preventing them from logging in.
- The user's email address will be removed, and the email authentication status will be also set to "not authenticated".
- The user's real name will be set to "Account Disabled".
Note that the registration date and other preferences info will not be affected.
When viewing the contributions of a disabled user account, a note appears stating "This account has been disabled." (View example).
All account edits are automatically logged.
インストール
- ダウンロードして、ファイルを
extensions/
フォルダー内のEditAccount
という名前のディレクトリ内に配置します。 - 以下のコードを
LocalSettings.php
の末尾に追加します:wfLoadExtension( 'EditAccount' );
- Configure user group and user right at your convenience.
- 完了 – ウィキの「Special:Version」に移動して、拡張機能が正しくインストールされたことを確認します。
MediaWiki 1.28以前を稼働させている利用者へ:
上記の手順では、wfLoadExtension()
を使用してこの拡張機能をインストールする新しい方法を記載しています。
この拡張機能をこれらの過去のバージョン (MediaWiki 1.28以前) にインストールする必要がある場合は、wfLoadExtension( 'EditAccount' );
の代わりに以下を使用する必要があります:
require_once "$IP/extensions/EditAccount/EditAccount.php";
設定
By default, all user groups will only have permission to close their own accounts. The user right "editaccount" will have to be set for an existing user group, e.g. "bureaucrat" or for a new user group to allow editing or closing all accounts:
$wgGroupPermissions['bureaucrat']['editaccount'] = true;
$wgGroupPermissions['editaccount']['editaccount'] = true;
ログイン
Use of the special pages "CloseAccount" and "EditAccount" is logged at Special:Log/editaccnt. This log can be set to private if needed.
- 記録の例
* 04:41, March 18, 2011 WikiAdmin (Talk | contribs | block) disabled account User:Example user
* 02:11, February 17, 2011 StaffMember (Talk | contribs | block) changed password for user User:Jimbo Wales
その他の拡張機能
- Sudo - この拡張機能は他の利用者のアカウントにログインすることを許可します。
- DisableAccount - 管理者が個々のアカウントを無効にできるようにします。
- UserMerge - 利用者アカウントを統合や削除できるようにします。
この拡張機能は以下のパッケージ/ウィキファームに含まれています: This is not an authoritative list. Some wiki farms/hosts may contain this extension even if they are not listed here. Always check with your wiki farms/hosts or bundle to confirm. |