Difference between revisions of "Owncloud"

From Jon's Wiki
Line 1: Line 1:
 
Install:
 
Install:
  
  git clone https://github.com/owncloud/core.git owncloud
+
  git clone <nowiki>https://github.com/owncloud/core.git</nowiki> owncloud
 
  cd owncloud
 
  cd owncloud
 
  git submodule init  # 3rdparty directory
 
  git submodule init  # 3rdparty directory
Line 8: Line 8:
 
There's a command-line tool for administering it:
 
There's a command-line tool for administering it:
  
  sudo -u www-data php5 occ
+
  sudo -u www-data php occ
  
Use this for upgrading point releases, adding/managing users, apps, etc. May need to disable non-core apps to do upgrades.
+
Use this for upgrading point releases, adding and managing users, enabling and disabling apps, etc.
 +
 
 +
== Upgrading from before version 6.x ==
 +
 
 +
After version 6 the calendar and contacts apps were moved from core to the third party repository. You may need to disable them before upgrading from 6 to newer 8.x versions, and sort them out afterwards.

Revision as of 22:13, 18 October 2015

Install:

git clone https://github.com/owncloud/core.git owncloud
cd owncloud
git submodule init  # 3rdparty directory
git submodule update

There's a command-line tool for administering it:

sudo -u www-data php occ

Use this for upgrading point releases, adding and managing users, enabling and disabling apps, etc.

Upgrading from before version 6.x

After version 6 the calendar and contacts apps were moved from core to the third party repository. You may need to disable them before upgrading from 6 to newer 8.x versions, and sort them out afterwards.