Installation Notes: Difference between revisions
No edit summary |
|||
Line 32: | Line 32: | ||
===Modifying the navigation box=== |
===Modifying the navigation box=== |
||
Edit [[MediaWiki:Sidebar]]. |
|||
Follow the instructions at [http://meta.wikimedia.org/wiki/MediaWiki_FAQ#How_to_customize_your_own_navigation_bar] |
|||
# Make changes to LocalSettings.php |
|||
# edit the pages Mediawiki:todo, Mediawiki:todo-url, etc. (these pages are protected.) |
|||
Note that this will change in mediawiki 1.5, and become a lot easier. |
|||
===Enable <nowiki><math></math></nowiki> processing=== |
===Enable <nowiki><math></math></nowiki> processing=== |
Revision as of 11:12, 17 March 2006
Basic Installation
Follow the instructions at [1]
Bring mediawiki-1.5.7.tar.gz from [2] and unpack it into katlas:/www/html/drorbn. In that directory:
chown -R root:apache * chmod -R o-rwx * chmod -R g+rw config
Go to [3] to set up the wiki:
Sysop account: drorbn Name of SQL database: drorbn DB account: drorbn Database table prefix: drorbn_
Move config/LocalSettings.php file into the parent directory.
Go visit the wiki.
Add lines to backup script:
mysqldump -u drorbn -p*** drorbn > drorbn-backup.sql gzip -9 -f drorbn-backup.sql cp -f drorbn.sql.gz /www/html/backups
Allow logins on several wikis on the same server: Add the following line to LocalSettings.php after $wgSiteName = ...
:
ini_set("session.name", "{$wgSitename}Session" );
See documentation on customizing the interface and the User's Guide for usage and configuration help.
Edit MediaWiki:Sidebar.
Enable <math></math> processing
First, make the /images directory writable:
chmod -R g+rw images
Next, install ocaml (download the sources, ./configure, make world, make bootstrap, make opt, make install). What a pain! After that, go to the math directory under the wiki installation, and run make.
Finally, edit LocalSettings.php to enable TeX.
Enable image uploads
In LocalSettings.php, uncomment out $wgDisableUploads = false;
and add
$wgFileExtensions = array( 'png','jpg','jpeg','ogg','pdf');