Main Page: Difference between revisions

From MediaWiki-1.39
Jump to navigation Jump to search
Line 10: Line 10:
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]


== Import CustomQueryPage ==
  == Import CustomQueryPage ==


* [https://mw.eckford.ca/downloads/CustomQueryPage-mw1359.tar.gz CustomQueryPage for mw1359]
  * [https://mw.eckford.ca/downloads/CustomQueryPage-mw1359.tar.gz CustomQueryPage for
  mw1359]


   == Installing CustomQueryPage ==
   == Installing CustomQueryPage ==
Line 22: Line 23:
   # Edit <code>LocalSettings.php</code> and add
   # Edit <code>LocalSettings.php</code> and add
   <code>wfLoadExtension( 'CustomQueryPage' );</code>
   <code>wfLoadExtension( 'CustomQueryPage' );</code>
   # Run <code>php maintenance/update.php --quick</code> from the wiki root.
   # Run <code>php maintenance/update.php --quick</code>.
   # As a sysop, visit <code>Special:CustomQuerySettings</code>, enter the ROUTINE tag
   # Visit <code>Special:CustomQuerySettings</code>, set the ROUTINE tag (e.g.,
  (e.g., <code>ROUTINE_4.110</code>), and verify `Special:ApprovedManuals`.
  <code>ROUTINE_4.110</code>), and confirm <code>Special:ApprovedManuals</code>.
 
 
  <syntaxhighlight lang="bash">
  tar -xzf CustomQueryPage-mw1359.tar.gz -C /srv/mediawiki/extensions
  php maintenance/update.php --quick
  </syntaxhighlight>

Revision as of 18:35, 14 January 2026

MediaWiki has been installed.

Consult the User's Guide for information on using the wiki software.

Getting started

 == Import CustomQueryPage ==
 * [https://mw.eckford.ca/downloads/CustomQueryPage-mw1359.tar.gz CustomQueryPage for
 mw1359]
 == Installing CustomQueryPage ==
 # Download the bundle: wget https://mw.eckford.ca/downloads/CustomQueryPage-
 mw1359.tar.gz
 # Extract it into your extensions folder:
 ## tar -xzf CustomQueryPage-mw1359.tar.gz -C /srv/mediawiki/extensions
 # Edit LocalSettings.php and add
 wfLoadExtension( 'CustomQueryPage' );
 # Run php maintenance/update.php --quick.
 # Visit Special:CustomQuerySettings, set the ROUTINE tag (e.g.,
 ROUTINE_4.110), and confirm Special:ApprovedManuals.