IT/Software/Mediawiki/How to Install MediaWiki: Difference between revisions

From msgwiki
< IT‎ | Software‎ | Mediawiki
Jump to navigation Jump to search
Access restrictions were established for this page. If you see this message, you have no access to this page.
m (added punctuation)
No edit summary
Line 3: Line 3:
* Ubuntu Server 18.04.3 LTS
* Ubuntu Server 18.04.3 LTS
* In my install i have all additions enabled.
* In my install i have all additions enabled.
* Apache2 Installed


=== Install Instructions ===
=== Install Instructions ===
----
----
# Install Dependencies
# Install Dependencies
#* <code>sudo apt install apache2 </code>
#* <code>sudo apt install php7.2 php7.2-mbstring php7.2-xml </code>
# Download [https://www.mediawiki.org/wiki/Download Mediawiki] tarball latest stable version 1.34.0 at time of writing
# Download and extract [https://www.mediawiki.org/wiki/Download Mediawiki] tarball latest stable version 1.34.0 at time of writing
#* <code>cd /var/www/html</code>
#* Remove default index.html
#** <code>rm index.html</code>
#* <code>wget https://releases.wikimedia.org/mediawiki/1.34/mediawiki-1.34.0.tar.gz</code>
#* <code>tar -xvf mediawiki-1.34.0.tar.gz</code>
#* <code>mv mediawiki-1.34.0 mediawiki</code>
#* Remove tarball
#** <code>rm mediawiki-1.34.0.tar.gz</code>


----
----
==== THIS PAGE IS NOT COMPLETE ====
==== THIS PAGE IS NOT COMPLETE ====
----
----

Revision as of 19:56, 6 January 2020

Prerequisites


  • Ubuntu Server 18.04.3 LTS
  • In my install i have all additions enabled.
  • Apache2 Installed

Install Instructions


  1. Install Dependencies
    • sudo apt install php7.2 php7.2-mbstring php7.2-xml
  2. Download and extract Mediawiki tarball latest stable version 1.34.0 at time of writing

THIS PAGE IS NOT COMPLETE