sforkowany z mirror/friendica
Merge pull request #6546 from fabrixxm/fix/issue6545
Filesystem storage: handle basepath with trailing slash and set file/folders permission2022.09-rc
commit
383325f84b
|
@ -28,7 +28,8 @@ class Filesystem implements IStorage
|
|||
|
||||
private static function getBasePath()
|
||||
{
|
||||
return Config::get('storage', 'filesystem_path', self::DEFAULT_BASE_FOLDER);
|
||||
$path = Config::get('storage', 'filesystem_path', self::DEFAULT_BASE_FOLDER);
|
||||
return rtrim($path, '/');
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -69,10 +70,13 @@ class Filesystem implements IStorage
|
|||
if (!is_file($path . '/index.html')) {
|
||||
file_put_contents($path . '/index.html', '');
|
||||
}
|
||||
chmod($path . '/index.html', 0660);
|
||||
chmod($path, 0770);
|
||||
$path = dirname($path);
|
||||
}
|
||||
if (!is_file($path . '/index.html')) {
|
||||
file_put_contents($path . '/index.html', '');
|
||||
chmod($path . '/index.html', 0660);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -100,6 +104,7 @@ class Filesystem implements IStorage
|
|||
Logger::log('Failed to write data to ' . $file);
|
||||
throw new StorageException(L10n::t('Filesystem storage failed to save data to "%s". Check your write permissions', $file));
|
||||
}
|
||||
chmod($file, 0660);
|
||||
return $ref;
|
||||
}
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue