Automatically create a .htaccess when not existing
authorMichael <heluecht@pirati.ca>
Sat, 21 Jul 2018 05:41:19 +0000 (05:41 +0000)
committerMichael <heluecht@pirati.ca>
Sat, 21 Jul 2018 05:41:19 +0000 (05:41 +0000)
src/Worker/Cron.php

index 644ef6b..bf1b44f 100644 (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);