Extension:IPAuth

From MediaWiki.org
Jump to: navigation, search
MediaWiki extensions manual - list
Crystal Clear action run.png
IPAuth

Release status: beta

Implementation User identity
Description Automatic login from fixed IPs
Author(s) Duesentrieb for Wikimedia Deutschland
MediaWiki 1.15 (may work for earlier versions too)
License BSD
Download Download snapshot
Subversion [Help]

Browse source code
View code changes

log

Example $wgIPAuthUsers = array( "127.0.0.1" => "Admin" );
Parameters

$wgIPAuthUsers

Hooks used
UserLoadAfterLoadFromSession

Check usage (experimental)

IPAuth allows clients accessing from specific IP addresses to be authenticated automatically.

[edit] Configuration

$wgIPAuthUsers
an associative array, mapping IP addresses to user names.
Note: the user names given here must refer to existing users. You have to create them before using them here!

[edit] Example

require_once( "$IP/extensions/IPAuth/IPAuth.php" );
#Automatically authenticate clients accessing from localhost as user Admin.
$wgIPAuthUsers = array( "127.0.0.1" => "Admin" );

[edit] See also

Personal tools
Namespaces
Variants
Actions
Site
Support
Download
Development
Communication
Print/export
Toolbox