IIS 7 | Rev CMS 1.9.9.9 | VPS | Help

unberon

New Member
Jul 13, 2012
6
0
Hello community of DevBeast. I hate to be a pain, but I've recently got my hands on a web-server, and after following the tutorial thoroughly. I am still experiencing the following error.

1129zyt.png
 

Legion

Gaming Lord
Staff member
Nov 23, 2011
1,801
669
You must delete your .htaccess and make a 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>
            </rules>
        </rewrite>
    </system.webServer>
</configuration>
And, If that doesn't fix it, also enable Directory Browsing
 

Gajeel

Well-Known Member
Oct 4, 2011
2,411
413
I believe my tutorial no longer works, that's why I had the thread closed years ago. As suggested by @proxyservice, you could try re-installing IIS or wiping your VPS. This would likely work in the case you followed other tutorials before trying mine, and that dirty data has been causing problems. Seeing you've tried all options available, this is your last viable option to resort upon.
 

Users who are viewing this thread

Top