[RevCMS] Site not working properly

iRawrHotel

Member
Mar 4, 2012
41
0
Hello,
I have installed RevCMS, and I have the following web.config:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule 1">
<match url="^(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 2">
<match url="^([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 3">
<match url="^(.*)\.htm$" />
<action type="Rewrite" url="{R:1}.php" />
</rule>
<rule name="Imported Rule 4">
<match url="^(|/)$" ignoreCase="false" />
<action type="Rewrite" url="dash.php?page={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 5">
<match url="^([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="dash.php?url={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 6">
<match url="^account/password/reset/([^/]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="/forgotpassword.php?Reset={R:1}" appendQueryString="false" />
</rule>
</rules>
</rewrite>
</system.webServer>
<system.net>
<mailSettings>
<smtp deliveryMethod="Network" from="[EMAIL][email protected][/EMAIL]">
<network host="localhost" />
<specifiedPickupDirectory pickupDirectoryLocation="C:\inetpub\wwwroot\password" />
</smtp>
</mailSettings>
</system.net>
</configuration>
However, When i load my site;
It doesn't load, it gives a 404 error.
However if i go to the {URL}/app/tpl/skins/{SKINNAME}/index.php
It loads.

Can anyone help?
 

Sledmore

Chaturbate Livestreamer
Staff member
FindRetros Moderator
Jul 24, 2010
5,195
3,906
Ensure that URL rewrite is installed.

(This is 100% a URL rewriting issue, )
 

iRawrHotel

Member
Mar 4, 2012
41
0
Please refrain from double posting.
Ensure that URL rewrite is installed.

(This is 100% a URL rewriting issue, )

I think it might be our Web.config.
As:
Code:
rule name="Imported Rule 1">
<match url="^(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 2">
<match url="^([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 3">
<match url="^(.*)\.htm$" />
<action type="Rewrite" url="{R:1}.php" />
</rule>

Sorry for double post,
But can anyone help?

I think it's to do with my Web.Config rewrite thingy.

Not sure though, URL Rewrite is there..... But has no rules...
 

iRawrHotel

Member
Mar 4, 2012
41
0
Ensure that URL rewrite is installed.

(This is 100% a URL rewriting issue, )

Still not working, we've tried multiple themes. Same happens with them all.

I know it's to do with URL rewriting, but am I meant to put any rules in the URL Rewrite 2.0 tool in IIS?

If so, please tell me what ones.
 

Users who are viewing this thread

Top