From 1793bd593e046650b88614540f4eb13bc1efd3e1 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Mon, 18 Feb 2013 22:06:39 +0100 Subject: [PATCH] Update developer_manual/app/gettingstarted.rst added folder creation tipps --- developer_manual/app/gettingstarted.rst | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/developer_manual/app/gettingstarted.rst b/developer_manual/app/gettingstarted.rst index 5af7f8b0e..56fe83654 100644 --- a/developer_manual/app/gettingstarted.rst +++ b/developer_manual/app/gettingstarted.rst @@ -26,7 +26,7 @@ ownCloud uses `GitHub`_ for developing its code. To be able to participate or ch If you need help with Git, contact the `GitHub Help Page`_. -To get started you'll need to clone the basic git repositories into your web directory. Depending on your distro this will either be **/var/www** or **/srv/http** +To get started you'll need to clone the basic git repositories into your web directory. Depending on your distro this will either be **/var/www** or **/srv/http** and the apache user and group for the chown command will either be **http** or **apache** .. code-block:: bash @@ -35,6 +35,11 @@ To get started you'll need to clone the basic git repositories into your web dir git clone https://github.com/owncloud/core.git owncloud git clone https://github.com/owncloud/apps.git apps git clone https://github.com/owncloud/3rdparty.git 3rdparty + sudo mkdir owncloud/config + sudo mkdir owncloud/data + sudo chown -R http:http owncloud/config + sudo chown -R http:http owncloud/data + sudo chown -R http:http owncloud/apps sudo chmod -R o-rw /var/www Now restart your apache server and get ready to `set up ownCloud`_ at http://localhost/owncloud.