Revcms IIS Error 500.21

Jamescool12

Member
Jan 17, 2014
139
13
Hello guys Im having a error with IIS 8.5 it keeps giving me a error 500.21 I installed everything correct I followed the tut, but then it gives this error i added the PHP extension so please someone here help me!

bvzugp
 

Jamescool12

Member
Jan 17, 2014
139
13
go to your server manager , click roles , and remove iis. Then just reinstall IIS with those features in the screenshot I provided.
I did that and the error seemed to go away but this is the new one smh.

 
go to your server manager , click roles , and remove iis. Then just reinstall IIS with those features in the screenshot I provided.
Aye bro this is the error i got its the new one
 

Jamescool12

Member
Jan 17, 2014
139
13
I believe if it's 500, it's to do with the web.config. Make sure you've configured the web.config correctly.
this is my web.config

<?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>
 

Users who are viewing this thread

Top