📜  删除锁定的文件 owncloud - 任何代码示例

📅  最后修改于: 2022-03-11 14:56:27.734000             🧑  作者: Mango

代码示例1
1) put ownCloud in maintenance mode: edit config/config.php and change this line:
'maintenance' => true,
2) Empty table oc_file_locks: Use tools such as phpmyadmin or connect directly to your database and run:
DELETE FROM oc_file_locks WHERE 1
3) disable maintenance mode (undo first step).