MediaWiki

Differences between revisions 4 and 7 (spanning 3 versions)
Revision 4 as of 2007-06-19 21:09:21
Size: 1904
Editor: mib65012
Comment: Needed some information detailing instalation
Revision 7 as of 2008-08-06 17:00:18
Size: 55
Editor: localhost
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
MediaWiki is the engine that is used for Wikipedia. See [http://www.mediawiki.org/ MediaWiki] for more information

== Install ==

To install on your [u|k|edu]buntu server (with Apache and MySQL - ["ApacheMySQLPHP"] or another web server already installed):
{{{
 sudo apt-get install mediawiki imagemagick mediawiki-math
}}}

Then restart apache:
{{{
 /etc/init.d/apache restart
}}}

The next step is to visit the website. Since you will be entering passwords, you don't want to make an unsecured connection. Either set up a ssl server] ( see ["forum/server/apache2/SSL"]) and connect with https://your.site.net/mediawiki, or visit from the server itself (using ["lynx"] or ["links"], two excellent text-based web browsers)
{{{
 lynx localhost/mediawiki
}}}
fill out the forms, noting that the final form is NOT your root or user password, but the password for the root mysql account (blank by default)

Lastly, move the config files as requested to prevent anyone else from changing these settings:
{{{
 sudo mv /var/lib/mediawiki/config/LocalSettings.php /etc/mediawiki/LocalSettings.php
 sudo chmod 600 /etc/mediawiki/LocalSettings.php
 sudo rm -Rf /var/lib/mediawiki/config
}}}
You are done! you should see a wiki page at: http://your.site.net/mediawiki

== Customize ==

The apache config files reside at /etc/apache2/conf.d/mediawiki.conf

You might want to customize the look of your wiki.

To change the icon make a 135x135 pixal logo in the png format and move it to the right place:
{{{
 sudo cp my_new_logo.png /var/lib/mediawiki/skins/common/images/wiki.png
}}}

To get rid of the mac-like sunburst in the background, edit /var/lib/mediawiki/skins/monobook/main.css and change:
 background: #f9f9f9 url(headbg.jpg) 0 0 no-repeat;
to
 background: #f9f9f9;


see http://prevolution.org/mediawikifarm for running multiple wikis on a server
#REFRESH 0 https://help.ubuntu.com/community/MediaWiki

MediaWiki (last edited 2008-08-06 17:00:18 by localhost)