Tracking: Fix issue displaying the pChart-generated charts due to Apache 2.4 syntax change - refs #5393

pull/5396/head
Yannick Warnier 1 year ago
parent 2a47d07420
commit 524522867b
  1. 8
      app/cache/.htaccess

@ -1,13 +1,19 @@
<IfModule mod_authz_core.c>
Require all denied
# pChart generated files should be allowed
<FilesMatch "^[0-9a-f]+$">
require all granted
</FilesMatch>
</IfModule>
<IfModule !mod_authz_core.c>
Order deny,allow
Deny from all
</IfModule>
# pChart generated files should be allowed
<FilesMatch "^[0-9a-f]+$">
order allow,deny
allow from all
</FilesMatch>
</IfModule>
php_flag engine off
Loading…
Cancel
Save