<?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=Andreas</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=Andreas"/>
	<link rel="alternate" type="text/html" href="https://docs.ulyssis.org/Special:Contributions/Andreas"/>
	<updated>2026-04-30T01:30:12Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.15</generator>
	<entry>
		<id>https://docs.ulyssis.org/index.php?title=Using_MySQL&amp;diff=653</id>
		<title>Using MySQL</title>
		<link rel="alternate" type="text/html" href="https://docs.ulyssis.org/index.php?title=Using_MySQL&amp;diff=653"/>
		<updated>2018-11-05T11:41:33Z</updated>

		<summary type="html">&lt;p&gt;Andreas: /* Linux, Mac OSX */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Creating a MySQL user==&lt;br /&gt;
To use MySQL on your ULYSSIS account you first need to create a MySQL user on [https://ucc.ulyssis.org UCC]. In the MySQL section of the panel you will be suggested to click a link to create a user. Then fill in a password for the database user. It is highly recommended that this password differs from the password you use for your account. Then you just click ''Create user'' and you are ready to go.&lt;br /&gt;
&lt;br /&gt;
==Creating a MySQL database==&lt;br /&gt;
After creating a MySQL user, you can simple press ''Add database'' in [https://ucc.ulyssis.org UCC] and enter the name for your new database. It will automatically be prefixed by your username.&lt;br /&gt;
&lt;br /&gt;
==Using MySQL for your website or application==&lt;br /&gt;
 Host: mysql.ulyssis.org&lt;br /&gt;
 Username: your account's username&lt;br /&gt;
 Password: the password you chose when you made the MySQL user&lt;br /&gt;
 Database: the database name you chose, prefixed by your username&lt;br /&gt;
&lt;br /&gt;
For example, if my username is foobar, I made a database called website and I were to create a PHP website I would use something like:&lt;br /&gt;
 &amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;$db = new mysqli('mysql.ulyssis.org', 'foobar', 'correct horse battery staple', 'foobar_website');&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
or&lt;br /&gt;
 &amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;$db = new PDO('mysql:host=mysql.ulyssis.org;dbname=foobar_website', 'foobar', 'correct horse battery staple');&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Managing MySQL with PHPMyAdmin==&lt;br /&gt;
Using your username and password you can easily manage your MySQL databases, tables and records on https://phpmyadmin.ulyssis.org&lt;br /&gt;
&lt;br /&gt;
==Accessing MySQL from outside of our network==&lt;br /&gt;
To prevent unnecessary load on our database server by hackers and bots it is only available inside of our network. If you wish to access it externally the easiest way is to use an SSH-tunnel. In many MySQL management tools this is already supported. &lt;br /&gt;
&lt;br /&gt;
=== MySQL Workbench ===&lt;br /&gt;
While [https://www.mysql.com/products/workbench/ MySQL Workbench] might not fully support our MySQL database, all commonly used operations work perfectly. You can connect to our database using MySQL Workbench by creating a connection as follows ([username] should be replaced by your username, of course):&lt;br /&gt;
[[File:MySQL_Workbench_SSH.png]]&lt;br /&gt;
&lt;br /&gt;
=== Linux, Mac OSX ===&lt;br /&gt;
On Linux, Mac OSX and other Unix-like Operating Systems it is also easily possible to use the following command to create a tunnel to a local port (in this case 3300)&lt;br /&gt;
 ssh username@ssh2.ulyssis.org -L 3300:mysql.ulyssis.org:3306 -N&lt;br /&gt;
&lt;br /&gt;
While this command is running, you can connect to the MySQL server with host 'localhost' and port '3300'.&lt;br /&gt;
To terminate the port forwarding, press ctrl-C in the terminal.&lt;br /&gt;
&lt;br /&gt;
You can use &amp;quot;ssh -f username@ssh2.ulyssis.org -L 3300:mysql.ulyssis.org:3306 -N&amp;quot;: the f-argument will put the command in the background.&lt;/div&gt;</summary>
		<author><name>Andreas</name></author>
	</entry>
	<entry>
		<id>https://docs.ulyssis.org/index.php?title=Using_PostgreSQL&amp;diff=652</id>
		<title>Using PostgreSQL</title>
		<link rel="alternate" type="text/html" href="https://docs.ulyssis.org/index.php?title=Using_PostgreSQL&amp;diff=652"/>
		<updated>2018-11-05T11:37:37Z</updated>

		<summary type="html">&lt;p&gt;Andreas: /* Accessing PostgreSQL from outside of our network */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Creating a database =&lt;br /&gt;
&lt;br /&gt;
You can create one or more PostgreSQL databases in [https://ucc.ulyssis.org UCC].&lt;br /&gt;
&lt;br /&gt;
The first database you create will have the same name as your username. Subsequent databases will be prefixed with &amp;quot;''username''_&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
= Managing your database =&lt;br /&gt;
&lt;br /&gt;
* The easiest way to manage your database is using [https://phppgadmin.ulyssis.org phpPgAdmin].&lt;br /&gt;
* You can also access it via the [[Accessing shell servers over SSH|command line]] with:&lt;br /&gt;
 psql -h pgsql.ulyssis.org&lt;br /&gt;
&lt;br /&gt;
= Connecting to the database =&lt;br /&gt;
&lt;br /&gt;
You can connect to the database with the following details:&lt;br /&gt;
&lt;br /&gt;
* Host: &amp;lt;code&amp;gt;pgsql.ulyssis.org&amp;lt;/code&amp;gt;&lt;br /&gt;
* Login: your ULYSSIS username&lt;br /&gt;
* Password: the PostgreSQL password you chose in UCC&lt;br /&gt;
* Database: the database you created in UCC&lt;br /&gt;
&lt;br /&gt;
Note that some CMSs will assume that you use &amp;quot;localhost&amp;quot; as the host, and will hide the host option under advanced settings in the installation process. If you can't find anywhere to enter the hostname, look under advanced settings.&lt;br /&gt;
&lt;br /&gt;
== Connection string ==&lt;br /&gt;
&lt;br /&gt;
If you are programming your application yourself, PostgreSQL often uses the following connection format:&lt;br /&gt;
 host=$host user=$username password=$password db=$dbname&lt;br /&gt;
&lt;br /&gt;
Where you replace the parts starting with &amp;lt;code&amp;gt;$&amp;lt;/code&amp;gt; with the above connection details.&lt;br /&gt;
&lt;br /&gt;
== pg_connect ==&lt;br /&gt;
&lt;br /&gt;
If you are using PHP's [http://www.php.net/manual/en/function.pg-connect.php pg_connect] to connect to the&lt;br /&gt;
database, and your username is &amp;quot;foo&amp;quot;, your password is &amp;quot;password&amp;quot; and your database name is &amp;quot;foo&amp;quot;:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$connection = pg_connect(&amp;quot;host=pgsql.ulyssis.org user=foo password=password db=foo&amp;quot;);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
== PDO ==&lt;br /&gt;
&lt;br /&gt;
If you want to connect using [http://be2.php.net/manual/en/intro.pdo.php PDO], your username is &amp;quot;foo&amp;quot;, your password is &amp;quot;password&amp;quot; and your database is &amp;quot;foo&amp;quot;:&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
$pdo = new PDO('pgsql:host=pgsql.ulyssis.org;dbname=foo', 'foo', 'password');&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Accessing PostgreSQL from outside of our network=&lt;br /&gt;
To prevent unnecessary load on our database server by hackers and bots it is only available inside of our network. If you wish to access it externally the easiest way is to use an SSH-tunnel. On Linux, Mac OSX and other Unix-like Operating Systems it is easily possible to use the following command to create a tunnel to a local port (in this case 5400):&lt;br /&gt;
 ssh username@ssh2.ulyssis.org -L 5400:pgsql.ulyssis.org:5432 -N&lt;br /&gt;
&lt;br /&gt;
You can use &amp;quot;ssh -f username@ssh2.ulyssis.org -L 3300:mysql.ulyssis.org:3306 -N&amp;quot;: the f-argument will put the command in the background.&lt;br /&gt;
&lt;br /&gt;
= PostGIS =&lt;br /&gt;
If necessary for an application or website you wish to use on ULYSSIS, we can always enable PostGIS for the specific database you wish to use it on. Contact us at ulyssis@ulyssis.org and let us know you would like to get PostGIS enabled and on which specific database.&lt;/div&gt;</summary>
		<author><name>Andreas</name></author>
	</entry>
	<entry>
		<id>https://docs.ulyssis.org/index.php?title=Overview&amp;diff=425</id>
		<title>Overview</title>
		<link rel="alternate" type="text/html" href="https://docs.ulyssis.org/index.php?title=Overview&amp;diff=425"/>
		<updated>2017-02-01T21:41:48Z</updated>

		<summary type="html">&lt;p&gt;Andreas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;background:#f9f9f9;border:1px solid #ddd;font-size:95%;padding:1.5em;&amp;quot;&amp;gt;&lt;br /&gt;
Welcome to our documentation website. Many of the common procedures and issues our users experience are described here. If you still encounter problems we haven't covered or you just can't seem to get things to work, even though you followed one of our manuals, be free to contact us on ulyssis@ulyssis.org for personal support.&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:45%;float:left;padding-right:10px;&amp;quot;&amp;gt;&lt;br /&gt;
== Account ==&lt;br /&gt;
* [[Registering a new account]]&lt;br /&gt;
* [[Renewing your account]]&lt;br /&gt;
* [[Transferring your account]]&lt;br /&gt;
* [[Resetting your password]]&lt;br /&gt;
* [[Help, my account has been disabled]]&lt;br /&gt;
* [[Why do I have to pay 0.00 euro and how?]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div style=&amp;quot;width:45%;float:left&amp;quot;&amp;gt;&lt;br /&gt;
== Files ==&lt;br /&gt;
* [[Accessing your files]]&lt;br /&gt;
* [[Transferring files over SFTP]]&lt;br /&gt;
* [[Using SSHFS]]&lt;br /&gt;
* [[Making Backups]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:45%;float:left;padding-right:10px;&amp;quot;&amp;gt;&lt;br /&gt;
== Webserver ==&lt;br /&gt;
* [[Webserver changes summer 2016]]&lt;br /&gt;
* [[Using your webspace]]&lt;br /&gt;
* [[Using (Fast)CGI for non-PHP websites]]&lt;br /&gt;
* [[Getting Apache logs]]&lt;br /&gt;
* [[Managing PHP errors]]&lt;br /&gt;
* [[Setting PHP options]]&lt;br /&gt;
* [[Adding domain names|Adding domain names (.be, .com, .org, ...)]]&lt;br /&gt;
* [[Getting SSL|Getting SSL (https-security)]]&lt;br /&gt;
* [[Shibboleth|Shibboleth (Centrale KU Leuven Login)]]&lt;br /&gt;
* [[Basic authentication|Basic authentication in PHP]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div style=&amp;quot;width:45%;float:left&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Databases ==&lt;br /&gt;
* [[Using PostgreSQL]]&lt;br /&gt;
* [[Using MySQL]]&lt;br /&gt;
* [[Using PHPMyAdmin]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:45%;float:left;padding-right:10px;&amp;quot;&amp;gt;&lt;br /&gt;
== CMSs ==&lt;br /&gt;
* [[Setting up Wordpress]]&lt;br /&gt;
* [[Setting up Drupal]]&lt;br /&gt;
* [[Setting up Joomla]]&lt;br /&gt;
* [[Setting up MediaWiki]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div style=&amp;quot;width:45%;float:left&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Security &amp;amp; anti-spam ==&lt;br /&gt;
* [[Regular updates on a CMS]]&lt;br /&gt;
* [[Preventing spam on Wordpress]]&lt;br /&gt;
* [[Preventing spam on Joomla]]&lt;br /&gt;
* [[Preventing spam on Drupal]]&lt;br /&gt;
* [[Preventing spam on MediaWiki]]&lt;br /&gt;
* [[Anti-spam policies]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:45%;float:left;padding-right:10px;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Mail ==&lt;br /&gt;
* [[ULYSSIS mail]]&lt;br /&gt;
* [[Forwarders]]&lt;br /&gt;
* [[Using a forwarder as an alias]]&lt;br /&gt;
* [[Add an alias in Gmail]]&lt;br /&gt;
* [[Add an alias in Hotmail/Outlook]]&lt;br /&gt;
* [[Add an alias in Thunderbird]]&lt;br /&gt;
* [[Fetch your KU Leuven email into another email address]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div style=&amp;quot;width:45%;float:left&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Shell ==&lt;br /&gt;
* [[Accessing your files]]&lt;br /&gt;
* [[Transferring files over SFTP]]&lt;br /&gt;
* [[Accessing shell servers over SSH]]&lt;br /&gt;
* [[ULYSSIS public IRC]]&lt;br /&gt;
* [[Useful Linux Commands]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:45%;float:left;padding-right:10px;&amp;quot;&amp;gt;&lt;br /&gt;
== Versioning ==&lt;br /&gt;
* [[Subversion]]&lt;br /&gt;
* [[GitLab]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div style=&amp;quot;width:45%;float:left&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== ULYSSIS Public Services  ==&lt;br /&gt;
* [[ULYSSIS public IRC]]&lt;br /&gt;
* [[ULYSSIS public FTP]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:45%;float:left;padding-right:10px;&amp;quot;&amp;gt;&lt;br /&gt;
== Development ==&lt;br /&gt;
* [[Local web development]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&amp;lt;div style=&amp;quot;width:45%;float:left&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== LaTeX ==&lt;br /&gt;
* [[Using the kulemt package]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;/div&gt;</summary>
		<author><name>Andreas</name></author>
	</entry>
	<entry>
		<id>https://docs.ulyssis.org/index.php?title=Setting_up_Joomla&amp;diff=246</id>
		<title>Setting up Joomla</title>
		<link rel="alternate" type="text/html" href="https://docs.ulyssis.org/index.php?title=Setting_up_Joomla&amp;diff=246"/>
		<updated>2015-09-03T19:00:17Z</updated>

		<summary type="html">&lt;p&gt;Andreas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Installing Joomla on our servers is definitely easy==&lt;br /&gt;
&lt;br /&gt;
Installing Joomla on our servers is deffinately easy.&lt;br /&gt;
&lt;br /&gt;
You download the install components from the http://joomla.org joomla-site.&lt;br /&gt;
&lt;br /&gt;
Here you get a compressed file (.zip) which you have to extract..&lt;br /&gt;
&lt;br /&gt;
You get a folder with files, those files (so no the folder) you copy via filezilla or an other ftp programme to your www-map on your shellaccount.&lt;br /&gt;
&lt;br /&gt;
Afterwards you go to your account, I.E username.ulyssis.be, here you get a notification telling you your needs to be configured. The fist part is the &amp;quot;main configuration&amp;quot; which will be individual for every user.&lt;br /&gt;
&lt;br /&gt;
Afterwards click on ''Next'' which will prompt you for your database credentials &amp;amp; information:&lt;br /&gt;
&lt;br /&gt;
*'''Databasetype: ''' Select ''MySQL'' from the dropdown.&lt;br /&gt;
*''''Hostname: ''' this is the location of the database server, use &amp;lt;code&amp;gt;mysql.ulyssis.org&amp;lt;/code&amp;gt;.&lt;br /&gt;
*''''Username: ''' this is the name you gave during the creation of your mysql account, often this is the same as your username with ULYSSIS.&lt;br /&gt;
*'''password: ''' the password hat you gave during the creation of your mysql account&lt;br /&gt;
* You don't change the last two fields&lt;br /&gt;
&lt;br /&gt;
When you're done click on “Next” twice since ftp is already configured. Here you can see the last few details.&lt;br /&gt;
&lt;br /&gt;
Afterwards the install will run by it own and thats it, you installed Joomla.&lt;br /&gt;
&lt;br /&gt;
==Setting up multiple instances of Joomla==&lt;br /&gt;
&lt;br /&gt;
If you want to have multiple instances of a Joomla site then you the create a new folder in your homedir from your shell account. You need a new virtual host, you can send us an [mailto:ulyssis@ulyssis.org email] and we will create one for you.&lt;br /&gt;
&lt;br /&gt;
After your new virtual host is ready, you need to do all the same steps as for a regular Joomla installation.&lt;br /&gt;
&lt;br /&gt;
Another option is to use the Joomla [https://docs.joomla.org/Multiple_Domains_and_Web_Sites_in_a_single_Joomla!_installation multisite] option.&lt;/div&gt;</summary>
		<author><name>Andreas</name></author>
	</entry>
	<entry>
		<id>https://docs.ulyssis.org/index.php?title=Setting_up_Joomla&amp;diff=245</id>
		<title>Setting up Joomla</title>
		<link rel="alternate" type="text/html" href="https://docs.ulyssis.org/index.php?title=Setting_up_Joomla&amp;diff=245"/>
		<updated>2015-09-03T18:58:13Z</updated>

		<summary type="html">&lt;p&gt;Andreas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Installing Joomla on our servers is definitely easy==&lt;br /&gt;
&lt;br /&gt;
Installing Joomla on our servers is deffinately easy.&lt;br /&gt;
&lt;br /&gt;
You download the install components from the http://joomla.org joomla-site.&lt;br /&gt;
&lt;br /&gt;
Here you get a compressed file (.zip) which you have to extract..&lt;br /&gt;
&lt;br /&gt;
You get a folder with files, those files (so no the folder) you copy via filezilla or an other ftp programme to your www-map on your shellaccount.&lt;br /&gt;
&lt;br /&gt;
Afterwards you go to your account, I.E username.ulyssis.be, here you get a notification telling you your needs to be configured. The fist part is the &amp;quot;main configuration&amp;quot; which will be individual for every user.&lt;br /&gt;
&lt;br /&gt;
Afterwards click on ''Next'' which will prompt you for your database credentials &amp;amp; information:&lt;br /&gt;
&lt;br /&gt;
*'''Databasetype: ''' Select ''MySQL'' from the dropdown.&lt;br /&gt;
*''''Hostname: ''' this is the location of the database server, use &amp;lt;code&amp;gt;mysql.ulyssis.org&amp;lt;/code&amp;gt;.&lt;br /&gt;
*''''Username: ''' this is the name you gave during the creation of your mysql account, often this is the same as your username with ULYSSIS.&lt;br /&gt;
*'''password: ''' the password hat you gave during the creation of your mysql account&lt;br /&gt;
* You don't change the last two fields&lt;br /&gt;
&lt;br /&gt;
When you're done click on “Next” twice since ftp is already configured. Here you can see the last few details.&lt;br /&gt;
&lt;br /&gt;
Afterwards the install will run by it own and thats it, you installed Joomla.&lt;br /&gt;
&lt;br /&gt;
==Setting up multiple instances of Joomla==&lt;br /&gt;
&lt;br /&gt;
If you want to have multiple instances of a Joomla site then you the create a new folder in your homedir from your shell account. You need a new virtual host, you can send us an [mailto:ulyssis@ulyssis.org email] and we will create one for you.&lt;br /&gt;
&lt;br /&gt;
After your new virtual host is ready, you need to do all the same steps as for a regular Joomla installation.&lt;/div&gt;</summary>
		<author><name>Andreas</name></author>
	</entry>
	<entry>
		<id>https://docs.ulyssis.org/index.php?title=Setting_up_WordPress&amp;diff=244</id>
		<title>Setting up WordPress</title>
		<link rel="alternate" type="text/html" href="https://docs.ulyssis.org/index.php?title=Setting_up_WordPress&amp;diff=244"/>
		<updated>2015-09-03T18:55:49Z</updated>

		<summary type="html">&lt;p&gt;Andreas: /* Setting up multiple instances of Wordpress */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Installing wordpress on our servers is definitely easy==&lt;br /&gt;
&lt;br /&gt;
Installing wordpress on our servers is deffinately easy.&lt;br /&gt;
&lt;br /&gt;
You download the install components from the http://wordpress.org wordpress-site.&lt;br /&gt;
&lt;br /&gt;
Here you get a compressed file (.tar.gz or .zip) which you have to extract..&lt;br /&gt;
&lt;br /&gt;
You get a folder with files, those files (so no the folder) you copy via filezilla or an other ftp programme to your www-map on your shellaccount.&lt;br /&gt;
&lt;br /&gt;
Afterwards you go to your account, I.E username.ulyssis.be, here you get a notification telling you your &amp;lt;code&amp;gt;wp-config.php&amp;lt;/code&amp;gt; has to be created, the easiest way is to follow the wizard, so click on “Create a Configuration File”.&lt;br /&gt;
&lt;br /&gt;
Afterwards on ''Let's go!'' which will prompt you for your database credentials:&lt;br /&gt;
&lt;br /&gt;
*'''Database Name: ''' if you haven't created a mysql database or user on UCC then you have to create it there. The default database is: username_username.&lt;br /&gt;
*''''User Name: ''' this is the name you gave during the creation of your mysql account, often this is the same as your username with ULYSSIS.&lt;br /&gt;
*'''Password: ''' the password hat you gave during the creation of your mysql account&lt;br /&gt;
*'''Database Host: ''' this is &amp;lt;code&amp;gt;mysql.ulyssis.org&amp;lt;/code&amp;gt;&lt;br /&gt;
* You don't change the last field&lt;br /&gt;
&lt;br /&gt;
When you're done click on “Run the install” Here you can give the last few details.&lt;br /&gt;
&lt;br /&gt;
Afterwards the install will run by it own and thats it, you installed wordpress.&lt;br /&gt;
&lt;br /&gt;
==Setting up multiple instances of Wordpress==&lt;br /&gt;
&lt;br /&gt;
If you want to have multiple instances of a Wordpress site then you the create a new folder in your homedir from your shell account. You need a new virtual host, send us an email and we will create one for you.&lt;br /&gt;
&lt;br /&gt;
After your new virtual host has been configured, you need to do al the same steps as for a regular wordpress installation.&lt;br /&gt;
&lt;br /&gt;
You could also use the Wordpress [https://codex.wordpress.org/Create_A_Network multisite] option. You can find more help about the multisite option [https://wordpress.org/support/forum/multisite here].&lt;/div&gt;</summary>
		<author><name>Andreas</name></author>
	</entry>
	<entry>
		<id>https://docs.ulyssis.org/index.php?title=Setting_up_WordPress&amp;diff=243</id>
		<title>Setting up WordPress</title>
		<link rel="alternate" type="text/html" href="https://docs.ulyssis.org/index.php?title=Setting_up_WordPress&amp;diff=243"/>
		<updated>2015-09-03T18:54:22Z</updated>

		<summary type="html">&lt;p&gt;Andreas: /* Setting up multiple instances of Wordpress */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Installing wordpress on our servers is definitely easy==&lt;br /&gt;
&lt;br /&gt;
Installing wordpress on our servers is deffinately easy.&lt;br /&gt;
&lt;br /&gt;
You download the install components from the http://wordpress.org wordpress-site.&lt;br /&gt;
&lt;br /&gt;
Here you get a compressed file (.tar.gz or .zip) which you have to extract..&lt;br /&gt;
&lt;br /&gt;
You get a folder with files, those files (so no the folder) you copy via filezilla or an other ftp programme to your www-map on your shellaccount.&lt;br /&gt;
&lt;br /&gt;
Afterwards you go to your account, I.E username.ulyssis.be, here you get a notification telling you your &amp;lt;code&amp;gt;wp-config.php&amp;lt;/code&amp;gt; has to be created, the easiest way is to follow the wizard, so click on “Create a Configuration File”.&lt;br /&gt;
&lt;br /&gt;
Afterwards on ''Let's go!'' which will prompt you for your database credentials:&lt;br /&gt;
&lt;br /&gt;
*'''Database Name: ''' if you haven't created a mysql database or user on UCC then you have to create it there. The default database is: username_username.&lt;br /&gt;
*''''User Name: ''' this is the name you gave during the creation of your mysql account, often this is the same as your username with ULYSSIS.&lt;br /&gt;
*'''Password: ''' the password hat you gave during the creation of your mysql account&lt;br /&gt;
*'''Database Host: ''' this is &amp;lt;code&amp;gt;mysql.ulyssis.org&amp;lt;/code&amp;gt;&lt;br /&gt;
* You don't change the last field&lt;br /&gt;
&lt;br /&gt;
When you're done click on “Run the install” Here you can give the last few details.&lt;br /&gt;
&lt;br /&gt;
Afterwards the install will run by it own and thats it, you installed wordpress.&lt;br /&gt;
&lt;br /&gt;
==Setting up multiple instances of Wordpress==&lt;br /&gt;
&lt;br /&gt;
If you want to have multiple instances of a Wordpress site then you the create a new folder in your homedir from your shell account. You need a new virtual host, send us an email and we will create one for you.&lt;br /&gt;
&lt;br /&gt;
After your new virtual host has been configured, you need to do al the same steps as for a regular wordpress installation.&lt;br /&gt;
&lt;br /&gt;
You could also use the Wordpress [https://wordpress.org/support/forum/multisite multisite] option.&lt;/div&gt;</summary>
		<author><name>Andreas</name></author>
	</entry>
	<entry>
		<id>https://docs.ulyssis.org/index.php?title=Setting_up_WordPress&amp;diff=242</id>
		<title>Setting up WordPress</title>
		<link rel="alternate" type="text/html" href="https://docs.ulyssis.org/index.php?title=Setting_up_WordPress&amp;diff=242"/>
		<updated>2015-09-03T18:52:22Z</updated>

		<summary type="html">&lt;p&gt;Andreas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Installing wordpress on our servers is definitely easy==&lt;br /&gt;
&lt;br /&gt;
Installing wordpress on our servers is deffinately easy.&lt;br /&gt;
&lt;br /&gt;
You download the install components from the http://wordpress.org wordpress-site.&lt;br /&gt;
&lt;br /&gt;
Here you get a compressed file (.tar.gz or .zip) which you have to extract..&lt;br /&gt;
&lt;br /&gt;
You get a folder with files, those files (so no the folder) you copy via filezilla or an other ftp programme to your www-map on your shellaccount.&lt;br /&gt;
&lt;br /&gt;
Afterwards you go to your account, I.E username.ulyssis.be, here you get a notification telling you your &amp;lt;code&amp;gt;wp-config.php&amp;lt;/code&amp;gt; has to be created, the easiest way is to follow the wizard, so click on “Create a Configuration File”.&lt;br /&gt;
&lt;br /&gt;
Afterwards on ''Let's go!'' which will prompt you for your database credentials:&lt;br /&gt;
&lt;br /&gt;
*'''Database Name: ''' if you haven't created a mysql database or user on UCC then you have to create it there. The default database is: username_username.&lt;br /&gt;
*''''User Name: ''' this is the name you gave during the creation of your mysql account, often this is the same as your username with ULYSSIS.&lt;br /&gt;
*'''Password: ''' the password hat you gave during the creation of your mysql account&lt;br /&gt;
*'''Database Host: ''' this is &amp;lt;code&amp;gt;mysql.ulyssis.org&amp;lt;/code&amp;gt;&lt;br /&gt;
* You don't change the last field&lt;br /&gt;
&lt;br /&gt;
When you're done click on “Run the install” Here you can give the last few details.&lt;br /&gt;
&lt;br /&gt;
Afterwards the install will run by it own and thats it, you installed wordpress.&lt;br /&gt;
&lt;br /&gt;
==Setting up multiple instances of Wordpress==&lt;br /&gt;
&lt;br /&gt;
If you want to have multiple instances of a Wordpress site then you the create a new folder in your homedir from your shell account. You need a new virtual host, send us an email and we will create one for you.&lt;br /&gt;
&lt;br /&gt;
After your new virtual host has been configured, you need to do al the same steps as for a regular wordpress installation.&lt;br /&gt;
&lt;br /&gt;
You could also use the Wordpress https://wordpress.org/support/forum/multisite multisite option.&lt;/div&gt;</summary>
		<author><name>Andreas</name></author>
	</entry>
	<entry>
		<id>https://docs.ulyssis.org/index.php?title=Setting_up_WordPress&amp;diff=241</id>
		<title>Setting up WordPress</title>
		<link rel="alternate" type="text/html" href="https://docs.ulyssis.org/index.php?title=Setting_up_WordPress&amp;diff=241"/>
		<updated>2015-09-03T18:43:44Z</updated>

		<summary type="html">&lt;p&gt;Andreas: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Installing wordpress on our servers is definitely easy==&lt;br /&gt;
&lt;br /&gt;
Installing wordpress on our servers is deffinately easy.&lt;br /&gt;
&lt;br /&gt;
You download the install components from the http://wordpress.org wordpress-site.&lt;br /&gt;
&lt;br /&gt;
Here you get a compressed file (.tar.gz or .zip) which you have to extract..&lt;br /&gt;
&lt;br /&gt;
You get a folder with files, those files (so no the folder) you copy via filezilla or an other ftp programme to your www-map on your shellaccount.&lt;br /&gt;
&lt;br /&gt;
Afterwards you go to your account, I.E username.ulyssis.be, here you get a notification telling you your &amp;lt;code&amp;gt;wp-config.php&amp;lt;/code&amp;gt; has to be created, the easiest way is to follow the wizard, so click on “Create a Configuration File”.&lt;br /&gt;
&lt;br /&gt;
Afterwards on ''Let's go!'' which will prompt you for your database credentials:&lt;br /&gt;
&lt;br /&gt;
*'''Database Name: ''' if you haven't created a mysql database or user on UCC then you have to create it there. The default database is: username_username.&lt;br /&gt;
*''''User Name: ''' this is the name you gave during the creation of your mysql account, often this is the same as your username with ULYSSIS.&lt;br /&gt;
*'''Password: ''' the password hat you gave during the creation of your mysql account&lt;br /&gt;
*'''Database Host: ''' this is &amp;lt;code&amp;gt;mysql.ulyssis.org&amp;lt;/code&amp;gt;&lt;br /&gt;
* You don't change the last field&lt;br /&gt;
&lt;br /&gt;
When you're done click on “Run the install” Here you can give the last few details.&lt;br /&gt;
&lt;br /&gt;
Afterwards the install will run by it own and thats it, you installed wordpress.&lt;br /&gt;
&lt;br /&gt;
==Setting up multiple instances of Wordpress==&lt;br /&gt;
&lt;br /&gt;
If you want to have multiple instances of a Wordpress site then you the create a new folder in your homedir from your shell account. You need a new virtual host, send us an email and we will create one for you.&lt;br /&gt;
&lt;br /&gt;
After your new virtual host has been configured, you need to do al the same steps as for a regular wordpress installation.&lt;/div&gt;</summary>
		<author><name>Andreas</name></author>
	</entry>
</feed>