MediaWiki

From code/src wiki
Revision as of 23:40, 26 May 2011 by Michael (talk | contribs) (Created page with "== Secure Login == mediawiki sends plain-text passwords over the network by default. Use the following extension to enable SSL for the login page. Extract the FIXME file into …")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Secure Login

mediawiki sends plain-text passwords over the network by default. Use the following extension to enable SSL for the login page.

Extract the FIXME file into the /var/lib/mediawiki/extensions directory, then insert the following into your /etc/mediawiki/LocalSettings.php file:

require_once("$IP/extensions/SecureLoginPage/SecureLoginPage.php");

_Note:_ An SSL-enabled VirtualHost is required in your Apache config.

Original code obtained from the code examples of the book MediaWiki by Daniel J. Barrett.