Closed (fixed)
Project:
Zina
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
8 Nov 2008 at 16:27 UTC
Updated:
14 Jul 2012 at 23:29 UTC
First things first: this is great :p
I have it running on IIS 6 with ISAPI Rewrite, all is OK except for the form actions, i checked the code and your check for clean URL's isn't working for IIS, code from common.php
if (!isset($script)) {
$script = (strpos($_SERVER['SERVER_SOFTWARE'], 'Apache') === FALSE) ? 'index.php' : '';
}
so I added $script = ''; as a work-around and it's working :p
Comments
Comment #1
ryanlath commentedThanks! I'll put a check in there for clean urls...
So does ISAPI Rewrite use .htaccess files? Or how does that work?
Comment #2
attiks commentedISAPI Rewrite uses the same .htaccess files and syntax
Comment #3
ryanlath commented