diff --git a/src/Worker/Cron.php b/src/Worker/Cron.php index 644ef6b9d4..bf1b44f55d 100644 --- a/src/Worker/Cron.php +++ b/src/Worker/Cron.php @@ -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);