possible fix for bombarding the server with the htaccess test during setup
This commit is contained in:
parent
c6177d2629
commit
46e9bf5678
|
@ -544,6 +544,11 @@ class OC_Util {
|
|||
|
||||
// creating a test file
|
||||
$testfile = OC_Config::getValue( "datadirectory", OC::$SERVERROOT."/data" ).'/'.$filename;
|
||||
|
||||
if(file_exists($testfile)){// already running this test, possible recursive call
|
||||
return false;
|
||||
}
|
||||
|
||||
$fp = @fopen($testfile, 'w');
|
||||
@fwrite($fp, $testcontent);
|
||||
@fclose($fp);
|
||||
|
|
Loading…
Reference in New Issue