1
0
mirror of https://github.com/tiyn/wiki.git synced 2025-04-04 07:47:45 +02:00

owncloud: errorhandling for locked files added

This commit is contained in:
TiynGER 2020-10-27 09:33:20 +01:00
parent db7dda76cf
commit 35d50f8d09

View File

@ -121,3 +121,16 @@ docker run --name owncloudcli \
-e URL='https://subdomain.domain.tld' \
-d tiynger/owncloudclient
```
## Error handling
### Problems with a locked file
It is possible that you can't remove or move a locked file.
If this problem doesn't resolve after a restart you can try to disable locking in the owncloud config.
This is done by adding the line `'filelocking.enabled' => false,` into the file `config/config.php`.
Then try to resolve the error.
Afterwards enable locking again by removing the added line.
The reason I choose this process over editing the database file, is ease of use.
The editing of the database is much more time consuming especially if run with docker.