diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-08-18 15:05:55 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-08-18 16:04:39 +0200 |
commit | 9d5d0cca7a2a1b9aa49058b195ee24f49b1173c8 (patch) | |
tree | 0187b2250dbf063a1b1853b72bd160d40a8ab0da | |
parent | e0c62bbd64ccb0f104724d4c572bc2f5d79b88c5 (diff) | |
download | nextcloud-server-9d5d0cca7a2a1b9aa49058b195ee24f49b1173c8.tar.gz nextcloud-server-9d5d0cca7a2a1b9aa49058b195ee24f49b1173c8.zip |
Added upgrade notice to avoid timeouts
-rw-r--r-- | core/templates/update.admin.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/templates/update.admin.php b/core/templates/update.admin.php index a09e2d07bf4..29df0dd484a 100644 --- a/core/templates/update.admin.php +++ b/core/templates/update.admin.php @@ -21,6 +21,10 @@ <?php p($l->t('Please make sure that the database, the config folder and the data folder have been backed up before proceeding.')) ?> </div> <input class="updateButton" type="button" value="<?php p($l->t('Start update')) ?>"> + <div class="infogroup"> + <?php p($l->t('To avoid timeouts with larger installations, you can instead run the following command from your installation directory:')) ?> + <pre>./occ upgrade</pre> + </div> </div> <div class="updateProgress hidden"></div> |