Extension:AccountInfo
Jump to navigation
Jump to search
![]() | This extension is currently not actively maintained! Although it may still work, any bug reports or feature requests will more than likely be ignored. If you are interested in taking on the task of developing and maintaining this extension, you can request repository ownership. As a courtesy, you may want to contact the author. You should also remove this template and list yourself as maintaining the extension in the page's {{extension}} infobox. |
AccountInfo Release status: unmaintained |
|
---|---|
Implementation | Special page |
Description | Allows users to see private information stored about them |
Author(s) | Legoktm, Emufarmers |
Latest version | 0.1 (2014-02-18) |
MediaWiki | 1.22+ |
PHP | 5.3+ |
Database changes | No |
License | GNU General Public License 2.0 or later |
Download | |
Translate the AccountInfo extension if it is available at translatewiki.net | |
Vagrant role | accountinfo |
Issues | Open tasks · Report a bug |
The AccountInfo extension allows users to see private information stored about themselves via "Special:AccountInfo".
Information shown[edit]
- $wgPutIPinRC - shows all unique IPs for actions made by the logged-in user that are currently stored in the table.
- CheckUser - shows all unique groups of IP address, User-Agent, and XFF header that are currently stored in the table.
Installation[edit]
- Download and place the file(s) in a directory called
AccountInfo
in yourextensions/
folder. - Add the following code at the bottom of your LocalSettings.php:
wfLoadExtension( 'AccountInfo' );
Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
To users running MediaWiki 1.24 or earlier:
The instructions above describe the new way of installing this extension using wfLoadExtension()
.
If you need to install this extension on these earlier versions (MediaWiki 1.24 and earlier), instead of wfLoadExtension( 'AccountInfo' );
, you need to use:
require_once "$IP/extensions/AccountInfo/AccountInfo.php";