1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <!DOCTYPE html>
- <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <title>Self-hosted Wikipedia Style Wiki with MediaWiki on Windows</title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta charset="UTF-8">
- <meta name="keywords" content="Browser Based,Home Lab,Home Lab Ideas,Install Guide,Self-Hosted,Web Based,Web Based Tools,Apache HTTPD,FOSS,How To Install WikiMedia On Windows,How To Run WikiMedia On Windows,How To Self-Host Wikipedia,WAMP,MariaDB,MySQL,Open Source,Open Source Software,PHP,PHP Based Wiki,Self-Hosted Wikipedia,Web Server,WikiMedia,Windows,Microsoft Windows,How To,Tutorial,i12bretro">
- <meta name="author" content="i12bretro">
- <meta name="description" content="Self-hosted Wikipedia Style Wiki with MediaWiki on Windows">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta name="revised" content="12/15/2023 12:47:46 PM" />
- <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
- <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
- <script type="text/javascript" src="includes/js/steps.js"></script>
- <link href="css/steps.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <div id="gridContainer">
- <div class="topMargin"></div>
- <div id="listName" class="topMargin">
- <h1>Self-hosted Wikipedia Style Wiki with MediaWiki on Windows</h1>
- </div>
- <div></div>
- <div id="content">
- <ol>
- <li>Download XAMPP <a href="https://sourceforge.net/projects/xampp/files/XAMPP%20Windows/" target="_blank">Download</a></li>
- <li>Download MediaWiki <a href="https://github.com/wikimedia/mediawiki/releases" target="_blank">Download</a></li>
- <li>Download the Vector skin <a href="https://extdist.wmflabs.org/dist/skins/Vector-REL1_35-e3d48bc.tar.gz" target="_blank">Download</a></li>
- <li><label for="cb_li_917989_0">Download Microsoft Visual C++ </label><label for="cb_li_917989_0"><a href="https://aka.ms/vs/16/release/vc_redist.x64.exe" target="_blank">Download</a></label></li>
- <li><label for="cb_li_917989_0">Download Composer <a href="https://getcomposer.org/Composer-Setup.exe" target="_blank">Download</a></label></li>
- <li>Install Microsoft Visual C++</li>
- <li>Right click the downloaded XAMPP .zip file > Extract All...</li>
- <li>Right click the downloaded MediaWiki .zip file > Extract All...</li>
- <li>Rename the extracted folder wiki</li>
- <li>Extract the Vector skin inside XAMPP/htdocs/wiki/skins</li>
- <li>Cut the wiki folder inside the XAMPP/htdocs directory</li>
- <li>Copy the extracted XAMPP directory to a safe location to run from, C:\Program Files for example</li>
- <li>Run XAMPP/setup_xampp.bat to update the configuration files with the new server location</li>
- <li>Install Composer</li>
- <li>Navigate to the XAMPP/htdocs/wiki folder > Right click in the white space > Open PowerShell window here...</li>
- <li>Run the following command to download dependencies
- <div class="codeBlock">composer i --ignore-platform-reqs</div>
- </li>
- <li>Navigate to XAMPP/php and edit php.ini</li>
- <li>Find the following lines and remove the ; to uncomment them
- <p>extension=intl</p>
- </li>
- <li>Run XAMPP/xampp-control.exe</li>
- <li>Click the Start button next to Apache and MySQL</li>
- <li>Navigate to XAMPP/mysql/bin</li>
- <li>Hold the SHIFT key and right click in the white space > Open PowerShell window here...</li>
- <li>Type the following in the PowerShell window to setup the mediawiki database
- <div class="codeBlock">.\mysql -u root<br />
- CREATE DATABASE wikidb;<br />
- GRANT ALL ON wikidb.* TO 'wikiuser'@'localhost' IDENTIFIED BY 'WikiW1k1Wh@t!!';<br />
- FLUSH PRIVILEGES;<br />
- EXIT;<br />
- exit</div>
- </li>
- <li>Open a web browser and navigate to http://DNSorIP/wiki</li>
- <li><label for="cb_li_138017_24">The WikiMedia setup screen should be displayed</label></li>
- <li>Click the set up the wiki first link</li>
- <li>Select a language > Click Continue</li>
- <li>Scroll to the bottom of the page and click Continue</li>
- <li>Enter the database host, name, username and password > Click Continue
- <p>Host: localhost<br />
- Name: wikidb<br />
- Username: wikiuser<br />
- Password: WikiW1k1Wh@t!!</p>
- </li>
- <li>Leave Use the same account as for installation checked and click Continue</li>
- <li>Give the Wiki a name and create an administrator username and password</li>
- <li>Uncheck the Share data about this installation with MediaWiki developers box</li>
- <li>Check the I'm bored already, just install the wiki box</li>
- <li>Click Continue and the Continue again to begin the installation</li>
- <li>After the installation completes click Continue</li>
- <li>Download the generated LocalSettings.php to the XAMPP/htdocs/wiki directory</li>
- <li>Once LocalSettings.php is in place open it in a text editor and add the following line to the bottom of the file to enable the Vector skin
- <p>wfLoadSkin('Vector');</p>
- </li>
- <li>Back in the browser click the enter your wiki link</li>
- <li>Click the Log In link at the top right</li>
- <li>Log in with the administrator account created during the installation </li>
- <li>Welcome to WikiMedia</li>
- </ol> </div>
- </div>
- </body>
- </html>
-
|