set permissions on config file initiation

This commit is contained in:
ghost 2023-09-13 18:47:16 +03:00
parent 2226eaf243
commit fdb119587e

View File

@ -18,10 +18,12 @@ if (!in_array($_SERVER['PHP_ENV'], ['default', 'mirror', 'dev', 'test', 'prod'])
// Generate configuration file if not exists
if (!file_exists(__DIR__ . '/../../env.' . $_SERVER['PHP_ENV'] . '.php'))
{
copy(
__DIR__ . '/../../example/environment/env.example.php',
__DIR__ . '/env.' . $_SERVER['PHP_ENV'] . '.php'
);
if (copy(__DIR__ . '/../../example/environment/env.example.php', __DIR__ . '/env.' . $_SERVER['PHP_ENV'] . '.php'))
{
chmod(__DIR__ . '/env.' . $_SERVER['PHP_ENV'] . '.php', 0770);
}
else exit (_('Could not init configuration file. Please check permissions.'));
}
// Load environment configuration