Nextcloud Knoffhoff: Unterschied zwischen den Versionen
Aus Froggis Wissenssammlung
Froggi (Diskussion | Beiträge) |
Froggi (Diskussion | Beiträge) |
||
| (Eine dazwischenliegende Version desselben Benutzers wird nicht angezeigt) | |||
| Zeile 11: | Zeile 11: | ||
RewriteCond %{HTTPS} !=on | RewriteCond %{HTTPS} !=on | ||
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] | RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] | ||
| + | |||
| + | ==== Deadlock's or other locked files ==== | ||
| + | |||
| + | occ ‘files:scan --all’ | ||
| + | occ ‘files:cleanup’ | ||
| + | occ ‘maintenance:mode --on’ | ||
| + | In mysql or phpmyadmin: delete from oc_file_locks where 1 | ||
| + | occ ‘maintenance:mode --off’ | ||
| + | |||
<btn>mainpage|Zurück zur Hauptseite</btn> | <btn>mainpage|Zurück zur Hauptseite</btn> | ||
Aktuelle Version vom 26. November 2019, 00:38 Uhr
Entweder arraycache:
'memcache.local' => '\\OC\\Memcache\\ArrayCache',
oder APCu
'memcache.local' => '\\OC\\Memcache\\APCu',
Umleitung zu https in die .htaccess bauen:
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Deadlock's or other locked files
occ ‘files:scan --all’ occ ‘files:cleanup’ occ ‘maintenance:mode --on’ In mysql or phpmyadmin: delete from oc_file_locks where 1 occ ‘maintenance:mode --off’
<btn>mainpage|Zurück zur Hauptseite</btn>