Gallery 3.0.9 - mod_rewrite and AllowOverride Problem

serenity2013

Joined: 2013-07-29
Posts: 1
Posted: Mon, 2013-07-29 12:38

Hey,

i have a problem with my gallery installation.

Erorr Message:

"Oh no! Your server needs a configuration change in order for you to hide photos! Ask your server administrator to enable mod_rewrite and set AllowOverride FileInfo Options to fix this."

.htacces File:

#
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?kohana_uri=$1 [QSA,PT,L]
RewriteRule ^$ index.php?kohana_uri=$1 [QSA,PT,L]
RewriteRule ^index.php/(.*) $1 [QSA,R,L]
</IfModule>

VHOST File:

<virtualhost *:443>
SSLEngine On
SSLCertificateFile /etc/apache2/ssl/apache.pem
DocumentRoot /var/www/gallery3
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all

</virtualhost>

Thanks for your help.