Ocs-server/Install/Configuring a webserver as host
Target system
This guide is inteded to use with Ubuntu and may use Ubuntu only commands. It can be adapted to other distros however. If you want to help adding support for other distributions please feel free to edit this page.
Install distribution packages
Ubuntu
sudo apt-get install libapache2-mod-php5 mysql-server php5-mysql phpmyadmin php5-gd php5-curl
Enable URL rewriting
Ubuntu
sudo a2enmod rewrite
Now open your server configuration file with your preferred text editor:
sudo nano /etc/apache2/apache2.conf
Now change those line of code when Directory is / or /var/www:
AllowOverride None
with:
AllowOverride All
And restart your web server:
sudo service apache2 restart
Get latest source
Grab a copy of ocs-server by cloning our public repository into the DocumentRoot of your server. Keep in mind the OCS protocol is made to work on the document root of this type: http://www.example.com or this: http://localhost. If you have other websites on the same server, we suggest you to put it in a subdomain like http://ocs.example.com.
Navigate to your DocumentRoot:
cd /var/www/html
Clone ocs-server git repository:
sudo git clone git://anongit.kde.org/ocs-server.git
Copy everything to your server root:
sudo cp -r ocs-server/. .
Remove your duplicate ocs-server folder:
sudo rm -rf /var/www/html/ocs-server
And restart again your web server, just to be sure:
sudo service apache2 restart
Final result
Ocs-server should be installed and working. Check the homepage, usually http://localhost/ or your domain of choice. In the homepage there are several useful links for both end-users and developers. You are ready to follow the First run wizard tutorial.