Warum werden bei der "Systemprüfung" jedes mal etliche .htaccess Dateien geschrieben?

Moin Moin

ich beziehe mich bei meiner Anfrage auch auf diesen Thread:

http://forum.piwik.org/read.php?5,102690

Bei jeder Ausführung der Systemprüfung (unter Einstellungen) werden jedes mal in etlichen Piwik Ordner .htaccess Dateien mit nachfolgenden unterschiedlichen Inhalte geschrieben. In den Piwik Installations Pakete sind diese .htaccess Dateien nicht enthalten.

Ich habe das heute mit mehreren Piwik-Installationen getestet. Was ist der Grund dafür?


<Files "*">
<IfModule mod_access.c>
Deny from all
</IfModule>
<IfModule !mod_access_compat>
<IfModule mod_authz_host.c>
Deny from all
</IfModule>
</IfModule>
<IfModule mod_access_compat>
Deny from all
</IfModule>
</Files>


<Files ~ "\.(php|php4|php5|inc|tpl|in)$">
<IfModule mod_access.c>
Deny from all
</IfModule>
<IfModule !mod_access_compat>
<IfModule mod_authz_host.c>
Deny from all
</IfModule>
</IfModule>
<IfModule mod_access_compat>
Deny from all
</IfModule>
</Files>
<Files ~ "\.(test\.php|gif|ico|jpg|png|svg|js|css|swf)$">
<IfModule mod_access.c>
Allow from all
</IfModule>
<IfModule !mod_access_compat>
<IfModule mod_authz_host.c>
Allow from all
</IfModule>
</IfModule>
<IfModule mod_access_compat>
Allow from all
</IfModule>
Satisfy any
</Files>