﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	blockedby	blocking
1770	phpFastCache: .htaccess ohne Apache 2.4 Syntax	Stefan	somebody	"In der Datei 
/includes/external/phpfastcache/src/phpFastCache/.htaccess
findet sich ausschließlich Apache 2.2 Syntax:

{{{
order deny,allow
deny from all
allow from 127.0.0.1
}}}

Korrekturvorschlag mit ""Require local"", das auch die IPv6-Adresse ::1 einschließt:

{{{
<IfModule mod_authz_core.c>
  # Apache 2.4
  <RequireAll>
    Require local
  </RequireAll>
</IfModule>
<IfModule !mod_authz_core.c>
  # Apache 2.2
  Order Deny,Allow
  Deny from all
  Allow from 127.0.0.1
</IfModule>
}}}

['''EDIT Tomcraft 24.04.2020:''' Pfad korrigiert.]"	Bug/Fehler	closed	normal	modified-shop-2.0.5.1	Shop	2.0.5.0	fixed				
