Manual:Extensions
Extensions: | Development | Tag extensions | Parser functions | Hooks | Special pages | Skins | Magic words | API |
What are extensions?Extensions let you customize how MediaWiki looks and works. Wiki users can browse through existing extensions or request a new extension. System administrators can install (or remove) extensions on the MediaWiki installations that they manage. Developers can write new extensions or improve or maintain existing extensions. |
Search the extensions by keyword(s): |
Depending on your goals you can use extensions to:
- extend the wiki markup used to write articles - see Category:Parser function extensions and Category:Parser extensions for examples.
- add new reporting and administrative capabilities - see Category:Special page extensions for examples.
- change the look and feel of MediaWiki - see Special:AllPages/Skin: and Category:User interface extensions for examples.
- enhance security via custom authentication mechanisms - see Category:Authentication and Authorization Extensions for examples.
While some extensions are maintained by MediaWiki's developers, others were written by third-party developers. As a result, many have bugs, and they are not all guaranteed to be compatible with each other. Some are unmaintained; not all extensions work on all versions of MediaWiki. Use any extension, especially those tagged as insecure, at your own risk. When using an extension requiring patches to the core MediaWiki code or entries in your database(s), be sure to create a back-up of your database and/or the core MediaWiki code, to avoid the risk of permanently breaking your wiki.
Browsing extensions
You can browse Category:Extensions by category to see the full range of extensions that have already been written. Comparison of extensions in distributions may also be helpful to pick out extensions. For information on installing these extensions or writing your own, see below.
Checking installed extensions
Only someone with administration access to the filesystem (and often the database too) on a server can install extensions for MediaWiki, but anyone can check which extensions are active on an instance of MediaWiki by accessing the Special:Version page. For example, these extensions are active in the English Wikipedia.
Installing an extension
MediaWiki is ready to accept extensions just after installation is finished. To add an extension follow these steps:
- Before you start
- Many extensions provide instructions designed for installation using unix commands. You require shell access (SSH) to enter these commands listed on the extension help pages.
- Download your extension.
- Extension Distributor helps you to select and download most of the popular extensions.
- Extensions are usually distributed as modular packages. They generally go in their own subdirectory of
$IP /extensions/
. A list of extensions stored in the Wikimedia Git repository is located at git:mediawiki/extensions. Some extensions don't use version control and are not recommended. - Some extensions are also available in bundles, composer or package repositories.
- Install your extension..
- Generally, at the end of the
LocalSettings.php
file (but above the PHP end-of-code delimiter, "?>
", if present), the following line should be added: -
// mw.v 1.24.x or less require_once "$IP/extensions/extension_name/extension_name.php"; // mw.v 1.25.x or above wfLoadExtension( '<extension-name>' );
- This line forces the PHP interpreter to read the extension file, and thereby make it accessible to MediaWiki.
- Some extensions can conflict with maintenance scripts, for example if they directly access $_SERVER (not recommended).
- In this case they can be wrapped in the conditional so maintenance scripts can still run.
- Generally, at the end of the
//for mw.v 1.24.x or less
if (!$wgCommandLineMode) {
require_once "$IP/extensions/extension_name/extension_name.php";
}
//for mw.v 1.25.x or above
if (!$wgCommandLineMode) {
wfLoadExtension ( '<extension-name>' );
}
- The maintenance script importDump.php will fail for any extension which requires customized namespaces which is included inside the conditional above such as Extension:Semantic MediaWiki , Extension:Semantic Forms .
-
Ensure that required permissions are set for extensions!
-
While this installation procedure is sufficient for most extensions, some require a different installation procedure. Check your extension's documentation for details.
-
If you want to alter configuration variables in LocalSettings.php, you have to do this typically after including the extension. Otherwise defaults defined in the extension will overwrite your settings.
-
Caution: While extension declaration can be placed in other places within the LocalSettings.php file, never place extensions before the require_once "includes/DefaultSettings.php";
line for MediaWiki versions below 1.17 . Doing so will blank the extension setup function arrays, causing no extensions to be installed, and probably will make your wiki inaccessible until you fix it!
Upgrading an extension
Some extensions require to be updated whenever you update MediaWiki, while others work with multiple versions. To upgrade to a new version of an extension:
- Download the new version of the extension
- Replace all the extension files in the extension/ExtensionName directory with the new files. Do not remove the extension configuration present in LocalSettings.php
- Depending on the extension, you may have to run the Update.php maintenance script. Most extensions will mention if this script needs to be run or not. (Running the update.php script when its unnecessary will not hurt anything, so if you're unsure don't be afraid to run it). If you don't have command line access, you can also use the web updater.
- That's all you need to do. In most cases any extension configuration you have in LocalSettings.php will also work with the newer version of the extension.
Uninstalling an extension
Extensions are added by adding a line to LocalSettings.php, which basically looks like this:
// mw.v 1.24.x or less
require_once 'extensions/extension_name/extension_name.php';
// mw.v 1.25.x or above
wfLoadExtension( '<extension-name>' );
- Remove this line and the extension is uninstalled. If you want to, you can (and if you do not want to use this extension in the future you should) remove the files of this extension inside the folder "extensions/".
- Maybe you also have some other lines in LocalSettings.php, which have to do with the extension you want to remove. Most likely this will be lines, which give certain users the right to access pages, which are provided by the extension. These lines contain the variable "$wgGroupPermissions" and make some settings there. As far as they have to do with rights, which come from the removed extension, you can remove these lines as well.
- Maybe your extension also has added columns to your database. The updater maintenance/update.php removes them, when you run it, after you have uninstalled the extension.
Developing extensions
This complex topic is handled on the developing extensions manual page.
See also
- Category:Extensions
- Template:Extension
- Manual:Developing extensions
- Manual:Parser functions
- Manual:Special pages
- Manual:Tag extensions
- Project:Extension requests
- Manual:Translating extensions - Information about translating extensions.
Extensions : | Category • All • Requests • Tag extensions • Extensions FAQ • Extension hook registry • Extension default namespaces |
---|