IT/Software/Mediawiki/How to Install MediaWiki: Difference between revisions
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.
Player5501 (talk | contribs) m (added punctuation) |
Player5501 (talk | contribs) 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 | #* <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
- Install Dependencies
sudo apt install php7.2 php7.2-mbstring php7.2-xml
- Download and extract Mediawiki tarball latest stable version 1.34.0 at time of writing
cd /var/www/html
- Remove default index.html
rm index.html
wget https://releases.wikimedia.org/mediawiki/1.34/mediawiki-1.34.0.tar.gz
tar -xvf mediawiki-1.34.0.tar.gz
mv mediawiki-1.34.0 mediawiki
- Remove tarball
rm mediawiki-1.34.0.tar.gz