<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://docs.ulyssis.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Koen</id>
	<title>ULYSSIS documentation - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://docs.ulyssis.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Koen"/>
	<link rel="alternate" type="text/html" href="https://docs.ulyssis.org/Special:Contributions/Koen"/>
	<updated>2026-05-13T19:04:06Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.15</generator>
	<entry>
		<id>https://docs.ulyssis.org/index.php?title=Setting_up_MediaWiki&amp;diff=211</id>
		<title>Setting up MediaWiki</title>
		<link rel="alternate" type="text/html" href="https://docs.ulyssis.org/index.php?title=Setting_up_MediaWiki&amp;diff=211"/>
		<updated>2014-11-19T14:36:30Z</updated>

		<summary type="html">&lt;p&gt;Koen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will go through a basic setup of MediaWiki. It is based on [http://www.mediawiki.org/wiki/Manual:Installing_MediaWiki the official MediaWiki installation wikipage], and it gives a few specifics for setting it up on a hosted account over at ULYSSIS.&lt;br /&gt;
&lt;br /&gt;
This tutorial we'll use a ULYSSIS-account with username &amp;quot;me&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
=Putting setup-files in place=&lt;br /&gt;
&lt;br /&gt;
First we'll have to download the setup file which you can find over at [http://www.mediawiki.org/wiki/Download the official MediaWiki website].&lt;br /&gt;
&lt;br /&gt;
It's an archived file, so you need to extract it first and put the files in a subdirectory of your &amp;quot;document root&amp;quot;.&lt;br /&gt;
The default is just a www directory in your home folder.&lt;br /&gt;
You can also see it by looking at your [https://ucc.ulyssis.org/vhosts vhost configuration].&lt;br /&gt;
&lt;br /&gt;
Putting your files in document_root/wiki/ will make your wiki be located at usersname.ulyssis.be/wiki/.&lt;br /&gt;
&lt;br /&gt;
If you prefer, you can do this all graphically; [https://docs.ulyssis.org/Accessing_your_files].&lt;br /&gt;
&lt;br /&gt;
If you prefer the command line;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
homeuser@home:~$ ssh me@ssh1.ulyssis.org&lt;br /&gt;
enter super secret password:&lt;br /&gt;
me@zap:~$ wget http://releases.wikimedia.org/mediawiki/1.23/mediawiki-1.23.6.tar.gz&lt;br /&gt;
me@zap:~$ tar xvxf mediawiki-1.23.6.tar.gz&lt;br /&gt;
me@zap:~$ mv mediawiki-1.23.6 www/wiki&lt;br /&gt;
me@zap:~$ rm -r mediawiki-1.23.6.tar.gz&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Setting up database=&lt;br /&gt;
&lt;br /&gt;
Like the [http://www.mediawiki.org/wiki/Manual:Installing_MediaWiki the official MediaWiki installation wiki] tells us, we have three different options to choose from; PostgreSQL, MySQL and SQLite.&lt;br /&gt;
&lt;br /&gt;
It's easy to set a PostgreSQL or MySQL database; just go to the UCC. For this tutorial we will continue with a MySQL database (PostgreSQL installation steps are quite similar).&lt;br /&gt;
&lt;br /&gt;
Let us visit https://ucc.ulyssis.org/mysql; if this is your first time using MySQL you'll need to create a new account by putting in a super secret password.&lt;br /&gt;
The wizard will create your MySQL account with the same name as your user-account.&lt;br /&gt;
We'll also create a new database with an appropriate name by clicking on 'Add database'. In this tutorial we will choose; &amp;quot;wiki&amp;quot;, notice that it will be prepended with our username, so we'll end up with a new database named &amp;quot;me_wiki&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
=Setup your wiki=&lt;br /&gt;
&lt;br /&gt;
If all went well, you can access your website at http://username.ulyssis.be/the_folder_you_used and start the setup wizard.&lt;br /&gt;
In our example, will surf to http://me.ulyssis.be/wiki.&lt;br /&gt;
&lt;br /&gt;
The wizard will guide you through some configuration options. Most of them our pretty straight-forward.&lt;br /&gt;
When in doubt, you can always click the question mark wich will show you some sensible and recommended default...&lt;br /&gt;
We'll just discuss the page were the wizard asks you for the database.&lt;br /&gt;
In our example;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Database host: mysql.ulyssis.org&lt;br /&gt;
Database name: me_wiki&lt;br /&gt;
// The name of our database; i.e. the name we chose, prepended by our username.&lt;br /&gt;
Database table prefix:&lt;br /&gt;
// We can leave this blank.&lt;br /&gt;
Database user: me&lt;br /&gt;
// This is the name of our MySQL-user, which was named after our ULLYSIS-username.&lt;br /&gt;
Database password: supersecretpassword&lt;br /&gt;
// Please note that this is not your ULLYSIS-password, but the password you used in UCC when creating the MySQL user!&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Creating the wiki=&lt;br /&gt;
&lt;br /&gt;
After the setup wizard is complete, you can begin the installation procedure.&lt;br /&gt;
If all went well, you'll be greeted by a page which congratulates you with your new installation.&lt;br /&gt;
&lt;br /&gt;
=Finalizing steps=&lt;br /&gt;
&lt;br /&gt;
The setup will offer you a configuration file (containing some settings you specified) that you need to download to your server (more specifically in directory where your MediaWiki-files reside in).&lt;br /&gt;
&lt;br /&gt;
You again can do this graphically, or if you prefer a terminal;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
homeuser@home:~$ scp path_to_file/LocalSettings.php me@ssh1.ulyssis.org:~/www/wiki&lt;br /&gt;
enter super secret password:&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After this is done, you can finally start using your wiki.&lt;br /&gt;
&lt;br /&gt;
!!! Note that this is only a very basic case of a wiki install. Please refer to [http://www.mediawiki.org/wiki/MediaWiki the original MediaWiki wiki] for a more in depth source. !!!&lt;br /&gt;
&lt;br /&gt;
!!! Please know that managing a wiki comes with great responsibility, keep your wiki up to date and follow healthy and recommended security practices. !!!&lt;/div&gt;</summary>
		<author><name>Koen</name></author>
	</entry>
	<entry>
		<id>https://docs.ulyssis.org/index.php?title=Setting_up_MediaWiki&amp;diff=210</id>
		<title>Setting up MediaWiki</title>
		<link rel="alternate" type="text/html" href="https://docs.ulyssis.org/index.php?title=Setting_up_MediaWiki&amp;diff=210"/>
		<updated>2014-11-19T14:32:27Z</updated>

		<summary type="html">&lt;p&gt;Koen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will go through a basic setup of MediaWiki. It is based on [http://www.mediawiki.org/wiki/Manual:Installing_MediaWiki the official MediaWiki installation wikipage], and it gives a few specifics for setting it up on a hosted account over at ULYSSIS.&lt;br /&gt;
&lt;br /&gt;
=Putting setup-files in place=&lt;br /&gt;
&lt;br /&gt;
First we'll have to download the setup file which you can find over at [http://www.mediawiki.org/wiki/Download the official MediaWiki website].&lt;br /&gt;
&lt;br /&gt;
It's an archived file, so you need to extract it first and put the files in a subdirectory of your &amp;quot;document root&amp;quot;.&lt;br /&gt;
The default is just a www directory in your home folder.&lt;br /&gt;
You can also see it by looking at your [https://ucc.ulyssis.org/vhosts vhost configuration].&lt;br /&gt;
&lt;br /&gt;
Putting your files in document_root/wiki/ will make your wiki be located at usersname.ulyssis.be/wiki/.&lt;br /&gt;
&lt;br /&gt;
If you prefer, you can do this all graphically; [https://docs.ulyssis.org/Accessing_your_files].&lt;br /&gt;
&lt;br /&gt;
If you prefer the command line;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
homeuser@home:~$ ssh me@ssh1.ulyssis.org&lt;br /&gt;
enter super secret password:&lt;br /&gt;
me@zap:~$ wget http://releases.wikimedia.org/mediawiki/1.23/mediawiki-1.23.6.tar.gz&lt;br /&gt;
me@zap:~$ tar xvxf mediawiki-1.23.6.tar.gz&lt;br /&gt;
me@zap:~$ mv mediawiki-1.23.6 www/wiki&lt;br /&gt;
me@zap:~$ rm -r mediawiki-1.23.6.tar.gz&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Setting up database=&lt;br /&gt;
&lt;br /&gt;
Like the [http://www.mediawiki.org/wiki/Manual:Installing_MediaWiki the official MediaWiki installation wiki] tells us, we have three different options to choose from; PostgreSQL, MySQL and SQLite.&lt;br /&gt;
&lt;br /&gt;
It's easy to set a PostgreSQL or MySQL database; just go to the UCC. For this tutorial we will continue with a MySQL database (PostgreSQL installation steps are quite similar).&lt;br /&gt;
&lt;br /&gt;
Let us visit https://ucc.ulyssis.org/mysql; if this is your first time using MySQL you'll need to create a new account by putting in a super secret password.&lt;br /&gt;
The wizard will create your MySQL account with the same name as your user-account.&lt;br /&gt;
We'll also create a new database with an appropriate name by clicking on 'Add database'. In this tutorial we will choose; &amp;quot;wiki&amp;quot;, notice that it will be prepended with our username, so we'll end up with a new database named &amp;quot;me_wiki&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
=Setup your wiki=&lt;br /&gt;
&lt;br /&gt;
If all went well, you can access your website at http://username.ulyssis.be/the_folder_you_used and start the setup wizard.&lt;br /&gt;
In our example, will surf to http://me.ulyssis.be/wiki.&lt;br /&gt;
&lt;br /&gt;
The wizard will guide you through some configuration options. Most of them our pretty straight-forward.&lt;br /&gt;
When in doubt, you can always click the question mark wich will show you some sensible and recommended default...&lt;br /&gt;
We'll just discuss the page were the wizard asks you for the database.&lt;br /&gt;
In our example;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Database host: mysql.ulyssis.org&lt;br /&gt;
Database name: me_wiki&lt;br /&gt;
// The name of our database; i.e. the name we chose, prepended by our username.&lt;br /&gt;
Database table prefix:&lt;br /&gt;
// We can leave this blank.&lt;br /&gt;
Database user: me&lt;br /&gt;
// This is the name of our MySQL-user, which was named after our ULLYSIS-username.&lt;br /&gt;
Database password: supersecretpassword&lt;br /&gt;
// Please note that this is not your ULLYSIS-password, but the password you used in UCC when creating the MySQL user!&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Creating the wiki=&lt;br /&gt;
&lt;br /&gt;
After the setup wizard is complete, you can begin the installation procedure.&lt;br /&gt;
If all went well, you'll be greeted by a page which congratulates you with your new installation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Finalizing steps=&lt;br /&gt;
&lt;br /&gt;
The setup will offer you a configuration file (containing some settings you specified) that you need to download to your server (more specifically in directory where your MediaWiki-files reside in).&lt;br /&gt;
&lt;br /&gt;
You again can do this graphically, or if you prefer a terminal;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
homeuser@home:~$ scp path_to_file/LocalSettings.php me@ssh1.ulyssis.org:~/www/wiki&lt;br /&gt;
enter super secret password:&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After this is done, you can finally start using your wiki.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
!!! Note that this is only a very basic case of a wiki install. Please refer to [http://www.mediawiki.org/wiki/MediaWiki the original MediaWiki wiki] for a more in depth source. !!!&lt;br /&gt;
&lt;br /&gt;
!!! Please know that managing a wiki comes with great responsibility, keep your wiki up to date and follow healthy and recommended security practices. !!!&lt;/div&gt;</summary>
		<author><name>Koen</name></author>
	</entry>
	<entry>
		<id>https://docs.ulyssis.org/index.php?title=Setting_up_MediaWiki&amp;diff=209</id>
		<title>Setting up MediaWiki</title>
		<link rel="alternate" type="text/html" href="https://docs.ulyssis.org/index.php?title=Setting_up_MediaWiki&amp;diff=209"/>
		<updated>2014-11-19T14:30:36Z</updated>

		<summary type="html">&lt;p&gt;Koen: Created page with &amp;quot;This page will go through a basic setup of MediaWiki. It is based on [http://www.mediawiki.org/wiki/Manual:Installing_MediaWiki the official MediaWiki installation wikipage], ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will go through a basic setup of MediaWiki. It is based on [http://www.mediawiki.org/wiki/Manual:Installing_MediaWiki the official MediaWiki installation wikipage], and it gives a few specifics for setting it up on a hosted account over at ULYSSIS.&lt;br /&gt;
&lt;br /&gt;
=Putting setup-files in place=&lt;br /&gt;
&lt;br /&gt;
First we'll have to download the setup file which you can find over at [http://www.mediawiki.org/wiki/Download the official MediaWiki website].&lt;br /&gt;
&lt;br /&gt;
It's an archived file, so you need to extract it first and put the files in a subdirectory of your &amp;quot;document root&amp;quot;.&lt;br /&gt;
The default is just a www directory in your home folder.&lt;br /&gt;
You can also see it by looking at your [https://ucc.ulyssis.org/vhosts vhost configuration].&lt;br /&gt;
If you put your files in www/wiki/ your wiki will be located at usersname.ulyssis.be/wiki/.&lt;br /&gt;
&lt;br /&gt;
If you prefer, you can do this all graphically; [https://docs.ulyssis.org/Accessing_your_files].&lt;br /&gt;
&lt;br /&gt;
If you prefer the command line;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
homeuser@home:~$ ssh me@ssh1.ulyssis.org&lt;br /&gt;
enter super secret password:&lt;br /&gt;
me@zap:~$ wget http://releases.wikimedia.org/mediawiki/1.23/mediawiki-1.23.6.tar.gz&lt;br /&gt;
me@zap:~$ tar xvxf mediawiki-1.23.6.tar.gz&lt;br /&gt;
me@zap:~$ mv mediawiki-1.23.6 www/wiki&lt;br /&gt;
me@zap:~$ rm -r mediawiki-1.23.6.tar.gz&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Setting up database=&lt;br /&gt;
&lt;br /&gt;
Like the [http://www.mediawiki.org/wiki/Manual:Installing_MediaWiki the official MediaWiki installation wiki] tells us, we have three different options to choose from; PostgreSQL, MySQL and SQLite.&lt;br /&gt;
&lt;br /&gt;
It's easy to set a PostgreSQL or MySQL database; just go to the UCC. For this tutorial we will continue with a MySQL database (PostgreSQL installation steps are quite similar).&lt;br /&gt;
&lt;br /&gt;
Let us visit https://ucc.ulyssis.org/mysql; if this is your first time using MySQL you'll need to create a new account by putting in a super secret password.&lt;br /&gt;
The wizard will create your MySQL account with the same name as your user-account.&lt;br /&gt;
We'll also create a new database with an appropriate name by clicking on 'Add database'. In this tutorial we will choose; &amp;quot;wiki&amp;quot;, notice that it will be prepended with our username, so we'll end up with a new database named &amp;quot;me_wiki&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
=Setup your wiki=&lt;br /&gt;
&lt;br /&gt;
If all went well, you can access your website at http://username.ulyssis.be/the_folder_you_used and start the setup wizard.&lt;br /&gt;
In our example, will surf to http://me.ulyssis.be/wiki.&lt;br /&gt;
&lt;br /&gt;
The wizard will guide you through some configuration options. Most of them our pretty straight-forward.&lt;br /&gt;
When in doubt, you can always click the question mark wich will show you some sensible and recommended default...&lt;br /&gt;
We'll just discuss the page were the wizard asks you for the database.&lt;br /&gt;
In our example;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Database host: mysql.ulyssis.org&lt;br /&gt;
Database name: me_wiki&lt;br /&gt;
// The name of our database; i.e. the name we chose, prepended by our username.&lt;br /&gt;
Database table prefix:&lt;br /&gt;
// We can leave this blank.&lt;br /&gt;
Database user: me&lt;br /&gt;
// This is the name of our MySQL-user, which was named after our ULLYSIS-username.&lt;br /&gt;
Database password: supersecretpassword&lt;br /&gt;
// Please note that this is not your ULLYSIS-password, but the password you used in UCC when creating the MySQL user!&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Creating the wiki=&lt;br /&gt;
&lt;br /&gt;
After the setup wizard is complete, you can begin the installation procedure.&lt;br /&gt;
If all went well, you'll be greeted by a page which congratulates you with your new installation.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Finalizing steps=&lt;br /&gt;
&lt;br /&gt;
The setup will offer you a configuration file (containing some settings you specified) that you need to download to your server (more specifically in directory where your MediaWiki-files reside in).&lt;br /&gt;
&lt;br /&gt;
You again can do this graphically, or if you prefer a terminal;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
homeuser@home:~$ scp path_to_file/LocalSettings.php me@ssh1.ulyssis.org:~/www/wiki&lt;br /&gt;
enter super secret password:&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After this is done, you can finally start using your wiki.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
!!! Note that this is only a very basic case of a wiki install. Please refer to [http://www.mediawiki.org/wiki/MediaWiki the original MediaWiki wiki] for a more in depth source. !!!&lt;br /&gt;
&lt;br /&gt;
!!! Please know that managing a wiki comes with great responsibility, keep your wiki up to date and follow healthy and recommended security practices. !!!&lt;/div&gt;</summary>
		<author><name>Koen</name></author>
	</entry>
	<entry>
		<id>https://docs.ulyssis.org/index.php?title=Why_do_I_have_to_pay_0.00_euro_and_how%3F&amp;diff=207</id>
		<title>Why do I have to pay 0.00 euro and how?</title>
		<link rel="alternate" type="text/html" href="https://docs.ulyssis.org/index.php?title=Why_do_I_have_to_pay_0.00_euro_and_how%3F&amp;diff=207"/>
		<updated>2014-11-08T16:08:13Z</updated>

		<summary type="html">&lt;p&gt;Koen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If you stumbled upon this question, don't worry; you don't have to (and coudn't) make an empty transfer.&lt;/div&gt;</summary>
		<author><name>Koen</name></author>
	</entry>
	<entry>
		<id>https://docs.ulyssis.org/index.php?title=Why_do_I_have_to_pay_0.00_euro_and_how%3F&amp;diff=206</id>
		<title>Why do I have to pay 0.00 euro and how?</title>
		<link rel="alternate" type="text/html" href="https://docs.ulyssis.org/index.php?title=Why_do_I_have_to_pay_0.00_euro_and_how%3F&amp;diff=206"/>
		<updated>2014-11-08T16:04:28Z</updated>

		<summary type="html">&lt;p&gt;Koen: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If you stumbled upon this question, don't worry; you already payed us.&lt;/div&gt;</summary>
		<author><name>Koen</name></author>
	</entry>
	<entry>
		<id>https://docs.ulyssis.org/index.php?title=Why_do_I_have_to_pay_0.00_euro_and_how%3F&amp;diff=205</id>
		<title>Why do I have to pay 0.00 euro and how?</title>
		<link rel="alternate" type="text/html" href="https://docs.ulyssis.org/index.php?title=Why_do_I_have_to_pay_0.00_euro_and_how%3F&amp;diff=205"/>
		<updated>2014-11-08T16:03:45Z</updated>

		<summary type="html">&lt;p&gt;Koen: Created page with &amp;quot;If you stumble upon this question, don't worry; you already payed us.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If you stumble upon this question, don't worry; you already payed us.&lt;/div&gt;</summary>
		<author><name>Koen</name></author>
	</entry>
</feed>