possible fix for bombarding the server with the htaccess test during setup

remotes/origin/stable5
Robin Appelman 13 years ago
parent f477fda785
commit ad720c4c17
  1. 5
      lib/util.php

@ -582,6 +582,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…
Cancel
Save