Merge pull request #329 from owncloud/upgrade-set-maintenance

Set maintenance mode before upgrade
This commit is contained in:
Morris Jobke
2014-04-30 13:31:32 +02:00

View File

@@ -35,6 +35,10 @@ To upgrade ownCloud, follow those steps:
wget http://download.owncloud.org/community/owncloud-latest.tar.bz2
#. Enable maintenance mode in config/config.php
"maintenance" => true
#. Deactivate all third party applications.
#. Delete everything from your ownCloud installation directory, except data and
config.
@@ -44,7 +48,11 @@ To upgrade ownCloud, follow those steps:
directory, you could execute this command::
tar xfj owncloud-latest.tar.bz2
#. Disable maintenance mode in config/config.php
"maintenance" => false
#. With the next page request the update procedures will run.
#. If you had 3rd party applications, check if they provide versions compatible
with the new release. If so, install and enable them, update procedures will run if needed.