Loading...
 
Architecture / Installation

Architecture / Installation


Re : Help my tiki-install.php

posts: 1092

I just check the code between 1.8 and 1.9 around SCRIPT_FILENAME

in 1.9:

Copy to clipboard
if (strpos($_SERVER["SERVER_SOFTWARE"],"IIS")==TRUE){ $docroot = dirname($_SERVER['PATH_TRANSLATED']); } else{ $docroot = getcwd(); }


in 1.8

Copy to clipboard
$docroot = dirname($_SERVER['SCRIPT_FILENAME']);


It seems something was fixed for IIS, perhaps you can try to change the code


There are no comments at this time.