Nextcloud
Open Source Cloud Solution
Nextcloud Tools
- Nextcloud Deck
- Nextcloud Tasks
- Nextcloud Calendar
Nextcloud Maintenance
Configuration
- CalDav Calendar Address https://NEXTCLOUD_URL/remote.php/dav/calendars/USERNAME/CALENDAR
Nextcloud Disable File Locking
Disable locking in config/config.php
.
$CONFIG = array (
... ,
'filelocking.enabled' => false,
);
Nextcloud Manually remove File Locks
Clear out any locks on files in the database if you have trouble modifying files and directories.
# connect to the database and clear out any locks
mysql -u root -p'MYDBPASSWD' -D nextcloud -e 'DELETE FROM oc_file_locks WHERE 1'