[WINDOWS] gallery 3 iis problem

okutbay

Joined: 2010-12-09
Posts: 8
Posted: Thu, 2010-12-09 09:40

I've installed gallery 3 to my server(w2008 r2 and iis 7.5).
Seems everything is working fine.

The only problem if i do not include index.php a get internal server error.

is it about rewrite rules?

Here are the rewrite rules to import

<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
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>

Thanks in advance

 
JWBokx

Joined: 2010-12-01
Posts: 5
Posted: Thu, 2010-12-09 15:01

On my WindowsHomeServer with II6, I had to add the 'index.php' to default page settings in iis.
Only index.html en default.aspx where there.

 
okutbay

Joined: 2010-12-09
Posts: 8
Posted: Thu, 2010-12-09 15:09

i already got it in the default documents... thanks for your reply.