Hi, I am trying to get Cosmic working again. I got a new VPS, followed the tutorial and installed everything.
I get this error in IIS:
When I remove a line from the web.config (<action type="Rewrite" url="/Cosmic/public/{R:1}" />) I get this:
Hope someone can help me!
I get this error in IIS:
You must be registered for see links
When I remove a line from the web.config (<action type="Rewrite" url="/Cosmic/public/{R:1}" />) I get this:
You must be registered for see links
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="habbo-imaging" stopProcessing="true">
<match url="^habbo-imaging/avatarimage$" ignoreCase="false" />
<action type="Rewrite" url="habbo-imaging/avatarimage.php" appendQueryString="true" />
</rule>
<rule name="Imported Rule 1" stopProcessing="true">
<match url="(.*)" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{URL}" pattern="Cosmic/public/" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="/Cosmic/public/{R:1}" />
</rule>
</rules>
</rewrite>
<staticContent>
<mimeMap fileExtension="." mimeType="text/xml" />
</staticContent>
</system.webServer>
</configuration>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="habbo-imaging" stopProcessing="true">
<match url="^habbo-imaging/avatarimage$" ignoreCase="false" />
<action type="Rewrite" url="habbo-imaging/avatarimage.php" appendQueryString="true" />
</rule>
<rule name="Imported Rule 1" stopProcessing="true">
<match url="(.*)" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{URL}" pattern="Cosmic/public/" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="/Cosmic/public/{R:1}" />
</rule>
</rules>
</rewrite>
<staticContent>
<mimeMap fileExtension="." mimeType="text/xml" />
</staticContent>
</system.webServer>
</configuration>
Hope someone can help me!