[Help] Housekeeping?

Status
Not open for further replies.

Mystic

New Member
Sep 20, 2011
4
0
I am currently using RevCMS 1.8 and I am having a problem with the housekeeping. When I click the Housekeeping link, it gives this:
HTTP Error 500.52 - URL Rewrite Module Error.

. I am using IIS, obviously. Any suggestions?
 

Kryptos

prjRev.com
Jul 21, 2010
2,205
1,252
I would suggest you try to go to: mywebsite.com/ase/index.php?url=login

If that URL works, then it's that the web.config you're using isn't affecting the /ase/ folder, so you might need to make a copy of your web.config and paste it there, see if that works.
 

Mystic

New Member
Sep 20, 2011
4
0
That works, but when I log in I get the 404 not found error. So that would be web.config, here it is:
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 1-1">
                    <match url="^(|/)$" ignoreCase="false" />
                    <action type="Rewrite" url="index.php?url={R:1}" appendQueryString="false" />
                </rule>
                <rule name="Imported Rule 2-1">
                    <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-1">
                    <match url="^(.*)\.htm$" />
                    <action type="Rewrite" url="{R:1}.php" />
                </rule>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>
 
Status
Not open for further replies.

Users who are viewing this thread

Top