You are not logged in.
Pages: 1
Hi All my current setup consists of the following
GLPI: Version 10.0.11
IIS: Version 10.0.22621.1
I have GLPI running and all seems to be working except when I try add an internet calendar. I'm always prompted for a username and password.
Anyone have GLPI running on IIS that has been able to successfully open a shared internet calendar. I'm including my webconfig file below.
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Rewrite to GLPI" stopProcessing="true">
<match url="^(.*)$" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.php" appendQueryString="true" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
Any help would be greatly appreciated.
Offline
Pages: 1