Opened 6 years ago

Last modified 6 years ago

#1770 closed Bug/Fehler

phpFastCache: .htaccess ohne Apache 2.4 Syntax — at Initial Version

Reported by: Stefan Owned by: somebody
Priority: normal Milestone: modified-shop-2.0.5.1
Component: Shop Version: 2.0.5.0
Keywords: Cc:
Blocked By: Blocking:

Description

In der Datei
/shoproot/includes/external/phpfastcache/src/phpFastCache/Core/Pool/IO/.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>

Change History (0)

Note: See TracTickets for help on using tickets.