I am having difficulty with this error message.
The information in the data base refers to earlier builds and I am worried that the .htaccess code may have changed on the ‘picture’ files. My .htaccess file (about pictures) reads as follows:
In case you want to add a .htpasswd authentification
you’ll have to add the host of the shop as an allowed entity,
so that calls from the host skip the authentification
Example:
Order Deny,Allow
Deny from All
AuthType Basic
AuthName “Access not allowed”
AuthUserFile path_to_htpasswd_file/.htpasswd
Require valid-user
Allow from localhost
Satisfy Any
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} config\.inc\.php [NC]
RewriteRule ^config\.inc\.php index\.php [R=301,L]
RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
RewriteRule .* - [F]
RewriteCond %{REQUEST_URI} oxseo\.php$
RewriteCond %{QUERY_STRING} mod_rewrite_module_is=off
RewriteRule oxseo\.php$ oxseo.php?mod_rewrite_module_is=on [L]
RewriteCond %{REQUEST_URI} !(\/admin\/|\/core\/|\/application\/|\/export\/|\/modules\/|\/out\/|\/setup\/|\/tmp\/|\/views\/)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule !(\.html|\/|\.jpg|\.css|\.pdf|\.doc|\.gif|\.png|\.js|\.htc|\.svg)$ %{REQUEST_URI}/ [R=301,L]
RewriteCond %{REQUEST_URI} !(\/admin\/|\/core\/|\/application\/|\/export\/|\/modules\/|\/out\/|\/setup\/|\/tmp\/|\/views\/)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (\.html|\/)$ oxseo.php
[COLOR=“Yellow”] RewriteCond %{REQUEST_URI} (/out/pictures/generated/)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.jpe?g|.gif|.png|.svg)$ getimg.php
RewriteRule ^(vendor/) - [F,L,NC][/COLOR]
Back in 2009 LeoFonic wrote:
Das kann man schon debuggen, in der htaccess steht:
Code:
[COLOR=“Yellow”]RewriteCond %{REQUEST_URI} (/out/pictures/)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.jpg|.gif|.png)$ core/utils/getimg.php
d.h. alle Aufrufe für Bilder gehen an getimg.php und dort kann man debuggen.
Frank[/COLOR]
My script is clearly different to the script that LeFonic detailed.
What to do?
Don