From 725ee147036832bc685866d948b12c8b7c38f797 Mon Sep 17 00:00:00 2001 From: Mitja Sovec Date: Thu, 29 Nov 2018 14:11:45 +0100 Subject: [PATCH 1/2] Added point 9 to remind user to copy theme --- admin_manual/maintenance/manual_upgrade.rst | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/admin_manual/maintenance/manual_upgrade.rst b/admin_manual/maintenance/manual_upgrade.rst index c1c4fef92..014a1b04b 100644 --- a/admin_manual/maintenance/manual_upgrade.rst +++ b/admin_manual/maintenance/manual_upgrade.rst @@ -39,23 +39,27 @@ Always start by making a fresh backup and disabling all 3rd party apps. directory to your new one. Make sure the directory permissions of your third party application directories are the same as for the other ones. ## THIS APPS part IS INSUFFICIENTLY DOCUMENTED (needs better instructions) + +9. If you are using 3rd party theme make sure to copy it from your ``theme/`` + directory to your new one. It is possible you will have to make some + modifications to it after the upgrade. -9. Adjust file ownership and permissions:: +10. Adjust file ownership and permissions:: chown -R www-data:www-data nextcloud find nextcloud/ -type d -exec chmod 750 {} \; find nextcloud/ -type f -exec chmod 640 {} \; -10. Restart your Web server. +11. Restart your Web server. -11. Now launch the upgrade from the command line using ``occ``, like this +12. Now launch the upgrade from the command line using ``occ``, like this example on Ubuntu Linux:: sudo -u www-data php occ upgrade (!) this MUST be executed from within your nextcloud installation directory -12. The upgrade operation takes a few minutes to a few hours, depending on the +13. The upgrade operation takes a few minutes to a few hours, depending on the size of your installation. When it is finished you will see a success message, or an error message that will tell where it went wrong. From d4ee4cab731fee62543875c6942cf24c75cc59a6 Mon Sep 17 00:00:00 2001 From: Mitja Sovec Date: Thu, 29 Nov 2018 14:18:31 +0100 Subject: [PATCH 2/2] Fix a missing s --- admin_manual/maintenance/manual_upgrade.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin_manual/maintenance/manual_upgrade.rst b/admin_manual/maintenance/manual_upgrade.rst index 014a1b04b..657414e7e 100644 --- a/admin_manual/maintenance/manual_upgrade.rst +++ b/admin_manual/maintenance/manual_upgrade.rst @@ -40,7 +40,7 @@ Always start by making a fresh backup and disabling all 3rd party apps. party application directories are the same as for the other ones. ## THIS APPS part IS INSUFFICIENTLY DOCUMENTED (needs better instructions) -9. If you are using 3rd party theme make sure to copy it from your ``theme/`` +9. If you are using 3rd party theme make sure to copy it from your ``themes/`` directory to your new one. It is possible you will have to make some modifications to it after the upgrade.