Extension:WhosOnline

From MediaWiki.org

Jump to: navigation, search

             

Manual on MediaWiki Extensions
List of MediaWiki Extensions
Crystal Clear action run.png
WhosOnline

Release status: stable

Implementation  User activity, Special page
Description Creates list of logged-in & anons currently online
Author(s)  Maciej Brencz
Last Version  1.2 (2009-07-26)
MediaWiki  1.11+
License GNU General Public License 2.0 or later
Download Download snapshot

Subversion [Help]
Browse source code

Example  Wikia sites

check usage (experimental)

WhosOnline extension adds a special page - Special:WhosOnline - for viewing the list of users currently online.

[edit] Installation

  1. Download the files from SVN, put them under $IP/extensions/WhosOnline
  2. Create the table online with SQL query supplied in whosonline.sql,
    or run the command:
    php5 maintenance/update.php
    which creates the table as well.
  3. Add the following line to LocalSettings.php to activate the extension:
    require_once($IP.'/extensions/WhosOnline/WhosOnline.php');
  4. If you want anymous users IP addresses shown, add:
    $wgWhosOnlineShowAnons = TRUE;
    to LocalSettings.php after the above statement. Default is not to show them, both for privacy and security reasons.
  5. Installation can now be verified through Special:Version

[edit] See also