Difference between revisions of "Wiki/mediawiki/extensions/getting extensions"

From Adam Meola - wiki
Jump to navigation Jump to search
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
<br/>
+
<br />
  
 
MediaWiki made it easy on us with their "Extension Distributor"
 
MediaWiki made it easy on us with their "Extension Distributor"
Line 7: Line 7:
  
 
https://www.mediawiki.org/wiki/Special:ExtensionDistributor
 
https://www.mediawiki.org/wiki/Special:ExtensionDistributor
 +
 +
 +
# Download an extension
 +
# uncompress the downloaded extension
 +
# add the extension to the "extensions" directory in your wiki
 +
# Open the README for installation instructions
 +
## usually you do this by modifying LocalSettings.php
 +
### often, just add the following line:
 +
::::: <code>wfLoadExtension('[NameOfYourExtension]');</code>

Latest revision as of 21:09, 30 August 2020


MediaWiki made it easy on us with their "Extension Distributor"


Assuming the below link is still valid, you can browse a dropdown list of available extensions and dropdown list of stable releases of MediaWiki.

https://www.mediawiki.org/wiki/Special:ExtensionDistributor


  1. Download an extension
  2. uncompress the downloaded extension
  3. add the extension to the "extensions" directory in your wiki
  4. Open the README for installation instructions
    1. usually you do this by modifying LocalSettings.php
      1. often, just add the following line:
wfLoadExtension('[NameOfYourExtension]');