SiDocRe uses the php getenv function widely. However the php ISAPI module for IIS seems to have a problem with this function.
The following code "getenv('QUERY_STRING'))" must be replaced with "$_SERVER['QUERY_STRING']"
If you don´t want replace all the code in sidocre, you can use the php CGI mode on IIS.
Hi all,
SiDocRe uses the php getenv function widely. However the php ISAPI module for IIS seems to have a problem with this function.
The following code "getenv('QUERY_STRING'))" must be replaced with "$_SERVER['QUERY_STRING']"
If you don´t want replace all the code in sidocre, you can use the php CGI mode on IIS.
See: http://www.php.net/manual/en/function.getenv.php#47247