Problems getting selfoss running

by pumm3l, Tuesday, July 09, 2013, 16:13 (3967 days ago) @ mdeeter

Fair enough, thanks for the reply.

If you feel like looking at it again, I have it somewhat working. Still trying to figure some things out regarding the rewriting is IIS. For some reason it's not loading scripts or stylesheets within the page, however it does load fine if I hit it at http://localhost/all.css which is odd...

The htaccess file converted to url rewrite in IIS web.config:

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<clear />
<rule name="favicons" stopProcessing="true">
<match url="favicons/(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Rewrite" url="data/favicons/{R:1}" />
</rule>
<rule name="thumbnails" stopProcessing="true">
<match url="thumbnails/(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="Rewrite" url="data/thumbnails/{R:1}" />
</rule>
<rule name="front controller" stopProcessing="true">
<match url=".(js|ico|gif|jpg|png|css|asc|txt|eot|woff|ttf|ttf|svg)$" ignoreCase="false" negate="true" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{QUERY_STRING}" pattern="^(.*)$" ignoreCase="false" />
</conditions>
<action type="Rewrite" url="index.php?{C:1}" appendQueryString="false" />
</rule>
<rule name="Rewrite" enabled="true" stopProcessing="true">
<match url="(.*)" negate="false" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{REQUEST_FILENAME}" pattern="favicons/" negate="true" />
<add input="{REQUEST_FILENAME}" pattern="thumbnails/" negate="true" />
<add input="{REQUEST_FILENAME}" pattern="public/" negate="true" />
<add input="{REQUEST_FILENAME}" pattern="index.php" negate="true" />
</conditions>
<action type="Rewrite" url="public/{R:1}" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>


Complete thread:

 RSS Feed of thread

powered by my little forum