From 32f070496ca4ba61d2286759e16759dbb8d78f51 Mon Sep 17 00:00:00 2001 From: Void <63229898+OnlyVoidd@users.noreply.github.com> Date: Thu, 29 Feb 2024 19:24:41 +0100 Subject: [PATCH] Update Nextcloud app documentation to fix wrong command The last command to scan for new files after migrating nextcloud data directory lacks the actual command `occ` to make the command work properly. See: https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/occ_command.html#scan --- pages/04.applications/10.docs/nextcloud/app_nextcloud.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/04.applications/10.docs/nextcloud/app_nextcloud.md b/pages/04.applications/10.docs/nextcloud/app_nextcloud.md index 45c0fe9a..cf445236 100644 --- a/pages/04.applications/10.docs/nextcloud/app_nextcloud.md +++ b/pages/04.applications/10.docs/nextcloud/app_nextcloud.md @@ -195,7 +195,7 @@ Save the file (**CTRL** + **o**) and exit nano (**CTRL** + **c**). Then run a scan by executing next command as root: ```bash -sudo -u nextcloud php8.1 --define apc.enable_cli=1 files:scan --all +sudo -u nextcloud php8.1 --define apc.enable_cli=1 occ files:scan --all ``` Now the problem is fixed.