If you are running more than one instance of MediaWiki, set this to a unique value for each instance. Otherwise, leave this field blank.
Leave this value set to 'Backwards-compatible UTF-8.'
The MySQL database and access account for the Wiki can be created by hand, or you can enter the user ID and MySQL password for the database administrator here, and MediaWiki will create the database and access account automatically.
This is the MySQL administrator account (
Once you have entered this information, click the Install button at the bottom of the page. You will see a confirmation page.
At this point, copy the configuration file from the
# cp -v /var/www/mediawiki/config/LocalSettings.php /var/www/mediawiki
Q/var/www/mediawiki/config/LocalSettings.php' -> Q/var/www/mediawiki/LocalSettings.php'
You can now click the link at the bottom of the confirmation page or go to
The only other customization that is necessary is to install a new logo image. The image should be 155 pixels wide and 135 pixels tall and in
$wgLogo = '$wgStylePath/common/images/wiki.png';
Change the path on the righthand side of the equal sign to the path of your image location, relative to the Apache Document Root. For example, if your image is in
$wgLogo = '
You can then edit the front page of your Wiki by clicking on the 'edit' link at the top of the page; changes are made using the same Wikitext format used on Wikipedia. Figure 7-29 shows a fully configured MediaWiki installation.
Figure 7-29. Configured MediaWiki front page
7.10.2. How Does It Work?
MediaWiki is written as a collection of PHP scripts, with some Perl scripts for maintenance functions. The Fedora Extras MediaWiki package installs these files in
All of the Wiki content is stored in the MySQL database for fast, index-based access. Users indicate how they want text to appear by using Wikitext markings; most of these are converted to HTML when the page is displayed, but some (such as --~~~ , which is converted to the user's name) are translated when the page is saved.
7.10.3. What About...
7.10.3.1. ...changing the appearance of the Wiki?
You can alter the appearance of the Wiki by editing the value of $wgDefaultSkin in
$wgDefaultSkin='simple';
Additional skins are available from the Wikimedia 'Gallery of user styles' ( http://meta.wikimedia.org/wiki/Gallery_of_user_styles ).
7.10.3.2. ...using a logo that isn't rectangular?
Use a graphics tool such as the GIMP to create an image with transparency, so that the page background shows through the portions of the 155x135 logo rectangle that are not occupied by your logo image. For example, if you had an oval image, the space between the outer edge of the logo and the edge of the logo rectangle would be transparent. Save your image in PNG format.
7.10.3.3. ...moving or deleting a page, or protecting a page against edits?
All of these operations can be performed by the sysop user. Go to the main page of the Wiki and log in using the sysop username and password created during the initial configuration of the Wiki, and you will see additional tabs on the top of each page for protecting, deleting, and moving.
7.10.4. Where Can I Learn More?