Difference between pages "MediaWiki" and "Midi"

From Linuxintro
(Difference between pages)
imported>ThorstenStaerk
 
imported>ThorstenStaerk
(Created page with "To play midi (.mid) files, use timidity. = SUSE Linux = yast -i timidity timidity ''whatever.mid''")
 
Line 1: Line 1:
Mediawiki is a wiki software used by wikipedia and this wiki.
+
To play midi (.mid) files, use timidity.
  
= Configuration =
+
= SUSE Linux =
 
+
  yast -i timidity
== Allowing pictures ==
+
  timidity ''whatever.mid''
 
 
If you are the only editor of a wiki (otherwise [[security]] flaws!) and want to allow pictures from all over the web, add the following line to the LocalSettings.php
 
  $wgAllowExternalImages = true;
 
below the line
 
require_once( "includes/DefaultSettings.php" );
 
 
 
== Allow all html tags ==
 
 
 
If you are the only editor of a wiki (otherwise [[security]] flaws!) and want to allow any [[html]] code in your wiki, read and follow http://www.mediawiki.org/wiki/Manual:%24wgRawHtml
 
 
 
== Changing the sidebar ==
 
 
 
This is done on the [[application]] level; just edit [[Mediawiki:Sidebar]].
 
 
 
== beautify URL ==
 
 
 
By default, mediawiki's main page is in http://whatever/index.php/Main_Page. To get rid of "index.php", read and follow http://www.mediawiki.org/wiki/Manual:Short_URL
 
 
 
= Backup =
 
 
 
On the application layer:
 
php maintenance/dumpBackup.php --full >backup.xml
 
On the database layer:
 
  mysqldump wikidb >wikidbdump.sql
 
 
 
= Migrate =
 
This describes how to migrate a wiki from one computer to another. It copies the mediawiki software and the content. Let's assume your mediawiki is running on computer ''earth'' and you want to have it running on ''mars''.
 
* copy your mediawiki software
 
* on ''mars'', delete LocalSettings.php
 
* call your wiki on mars. You get the opportunity to set up your wiki.
 
 
 
= Setup =
 
* [[Set up mediawiki with SUSE]]
 

Revision as of 15:06, 13 October 2012

To play midi (.mid) files, use timidity.

SUSE Linux

yast -i timidity
timidity whatever.mid