Created
February 13, 2015 16:27
-
-
Save Latz/5831c9238f5d5335ae32 to your computer and use it in GitHub Desktop.
owncloud 8.0.0 all-inkl. Workaround
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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