Zap Ase not working?

Status
Not open for further replies.

Dalle Beck

Member
Sep 27, 2011
40
3
Hello everyone, when i tries to enter my Housekeeping in RevCMS i get the 404-page!
How comes?

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=index" 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="^habbo-imaging/badge/([^/]+)" ignoreCase="false" />
                    <action type="Rewrite" url="/habbo-imaging/badge.php?badge={R:1}" appendQueryString="false" />
                </rule>
                <rule name="Imported Rule 2-1">
                    <match url="^habbo-imaging/head/([^/]+)" ignoreCase="false" />
                    <action type="Rewrite" url="/habbo-imaging/head.php?figure={R:1}" appendQueryString="false" />
                </rule>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>
 

Vinnie

Member
Dec 20, 2012
287
33
The link RevCMS is using as your housekeeping is not the link to the actual housekeeping.
go to class.template.php and ctrl+f (find) "housek" look for housekeeping thats how you edit the link.
 

Dalle Beck

Member
Sep 27, 2011
40
3
The link RevCMS is using as your housekeeping is not the link to the actual housekeeping.
go to class.template.php and ctrl+f (find) "housek" look for housekeeping thats how you edit the link.

Won't help because i get the same error if i goes to url/ase/login
 

Data

Posting Freak
May 19, 2013
593
97
Still -.--
In wwwroot/ase put a web.config there put the following inside:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
                <remove name="Imported Rule 5" />
                <remove name="Imported Rule 4" />
                <remove name="Imported Rule 3" />
                <remove name="Imported Rule 2" />
                <remove name="Imported Rule 1" />
                <rule name="Imported Rule 1" enabled="false">
                    <match url="^(|/)$" ignoreCase="false" />
                    <conditions />
                    <serverVariables />
                    <action type="Rewrite" url="index.php?url={R:1}" appendQueryString="false" />
                </rule>
                <rule name="Imported Rule 2" enabled="false">
                    <match url="^([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
                    <conditions />
                    <serverVariables />
                    <action type="Rewrite" url="index.php?url={R:1}" appendQueryString="false" />
                </rule>
                <rule name="Imported Rule 3" enabled="false">
                    <match url="^(.*)\.htm$" />
                    <conditions />
                    <serverVariables />
                    <action type="Rewrite" url="{R:1}.php" />
                </rule>
                <rule name="Imported Rule 4" enabled="false">
                    <match url="^(|/)$" ignoreCase="false" />
                    <conditions />
                    <serverVariables />
                    <action type="Rewrite" url="dash.php?page={R:1}" appendQueryString="false" />
                </rule>
                <rule name="Imported Rule 5" enabled="false">
                    <match url="^([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
                    <conditions />
                    <serverVariables />
                    <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