Automatically create a .htaccess when not existing

This commit is contained in:
Michael 2018-07-21 05:41:19 +00:00
parent e4a652cae8
commit f02bcdba51
1 changed files with 7 additions and 0 deletions

View File

@ -112,6 +112,13 @@ class Cron
Config::set('system', 'last_cron_hourly', time());
}
// Ensure to have a .htaccess file.
// this is a precaution for systems that update automatically
$basepath = $a->get_basepath();
if (!file_exists($basepath . '/.htaccess')) {
copy($basepath . '/.htaccess-dist', $basepath . '/.htaccess');
}
// Poll contacts
self::pollContacts($parameter, $generation);