Skip to content

Instantly share code, notes, and snippets.

@Latz
Created February 13, 2015 16:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Latz/5831c9238f5d5335ae32 to your computer and use it in GitHub Desktop.
Save Latz/5831c9238f5d5335ae32 to your computer and use it in GitHub Desktop.
owncloud 8.0.0 all-inkl. Workaround
lib/private/tempmanager.php einmal mit einem Editor editieren.
Dort müssten Sie auf Zeile 134 ein "return;" einfügen. Das ganze sieht dann an der Stelle wie folgt aus:
vorher:
#####################################
protected function getOldFiles() {
$cutOfTime = time() - 3600;
$files = array();
$dh = opendir($this->tmpBaseDir);
#####################################
nachher:
#####################################
protected function getOldFiles() {
$cutOfTime = time() - 3600;
$files = array();
return;
$dh = opendir($this->tmpBaseDir);
#####################################
(via all-inkl.com support)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment