mirror of https://github.com/tiyn/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
963 B
32 lines
963 B
# Owncloud
|
|
|
|
ownCloud is a free client-server cloud-service.
|
|
|
|
## Setup
|
|
|
|
The software can be setup via [Docker](/wiki/docker.md) with the
|
|
[owncloud image](./docker/owncloud.md).
|
|
|
|
## Usage
|
|
|
|
This section addresses various features of Owncloud.
|
|
|
|
### WebDAV
|
|
|
|
You can access ownCloud via WebDAV with the link
|
|
`https://<owncloud instance>/remote.php/dav/files/<user>/<path to folder or file>`.
|
|
|
|
## 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.
|