From ef9f32941c10d533c6557f59841dd6639f0aef6d Mon Sep 17 00:00:00 2001 From: RipleyBooya Date: Sun, 23 Nov 2025 14:01:59 +0100 Subject: [PATCH] Update README.md --- README.md | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 88d0560..f7e9793 100644 --- a/README.md +++ b/README.md @@ -50,10 +50,21 @@ This document proposes a complete, reliable, automated workaround. ## Summary of the Solution -### 0. (Optional) Set “Availability check interval” to **0 minutes** -In the ONLYOFFICE admin panel: -**Settings → ONLYOFFICE → Availability check interval → set to `0`** +### 0. (Optional) Set “editors_check_interval” to **0** via OCC + +There is no GUI option anymore for this in the ONLYOFFICE admin panel, +so you have to use the CLI (occ) inside the Nextcloud container: + +```bash +docker exec -it nextcloud-aio-nextcloud \ + sudo -E -u www-data php occ config:system:set onlyoffice editors_check_interval --value=0 + +docker exec -it nextcloud-aio-nextcloud \ + sudo -E -u www-data php occ config:system:get onlyoffice editors_check_interval +``` + + This reduces periodic background checks, **BUT on its own it does *not* fix the nightly-backup issue.**