summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-10-26 18:17:43 +0200
committerRobin Appelman <icewind@owncloud.com>2012-10-26 18:24:06 +0200
commitad720c4c17867df24de0dc55453efd0eea8b9a17 (patch)
treeef4871f1f17cdb907636f47a42600065fe69de7e
parentf477fda78530fc74c8f9103c638da5615048e562 (diff)
downloadnextcloud-server-ad720c4c17867df24de0dc55453efd0eea8b9a17.tar.gz
nextcloud-server-ad720c4c17867df24de0dc55453efd0eea8b9a17.zip
possible fix for bombarding the server with the htaccess test during setup
-rwxr-xr-xlib/util.php37
1 files changed, 21 insertions, 16 deletions
diff --git a/lib/util.php b/lib/util.php
index 72b5e4d260e..4ca84ba75af 100755
--- a/lib/util.php
+++ b/lib/util.php
@@ -64,23 +64,23 @@ class OC_Util {
}
public static function loadUserMountPoints($user) {
- $user_dir = '/'.$user.'/files';
- $user_root = OC_User::getHome($user);
+ $user_dir = '/'.$user.'/files';
+ $user_root = OC_User::getHome($user);
$userdirectory = $user_root . '/files';
- if (is_file($user_root.'/mount.php')) {
- $mountConfig = include $user_root.'/mount.php';
- if (isset($mountConfig['user'][$user])) {
- foreach ($mountConfig['user'][$user] as $mountPoint => $options) {
- OC_Filesystem::mount($options['class'], $options['options'], $mountPoint);
- }
- }
-
- $mtime=filemtime($user_root.'/mount.php');
- $previousMTime=OC_Preferences::getValue($user,'files','mountconfigmtime',0);
- if($mtime>$previousMTime) {//mount config has changed, filecache needs to be updated
- OC_FileCache::triggerUpdate($user);
- OC_Preferences::setValue($user,'files','mountconfigmtime',$mtime);
- }
+ if (is_file($user_root.'/mount.php')) {
+ $mountConfig = include $user_root.'/mount.php';
+ if (isset($mountConfig['user'][$user])) {
+ foreach ($mountConfig['user'][$user] as $mountPoint => $options) {
+ OC_Filesystem::mount($options['class'], $options['options'], $mountPoint);
+ }
+ }
+
+ $mtime=filemtime($user_root.'/mount.php');
+ $previousMTime=OC_Preferences::getValue($user,'files','mountconfigmtime',0);
+ if($mtime>$previousMTime) {//mount config has changed, filecache needs to be updated
+ OC_FileCache::triggerUpdate($user);
+ OC_Preferences::setValue($user,'files','mountconfigmtime',$mtime);
+ }
}
}
@@ -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);