files are set 0660 and folders 0770.
fix #6545
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);
}
}
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;
}