sddl
New member
I get this error now anytime I try to connect to the forum.
I tried looking through google to see if I kind figure out what the problem was.
Google indicated it might be my webconfig
Can anyone look at this and see if they can help me?
Thank you.
	
	
	
		
 
Ps I use Godaddy for hosting.
				
			I tried looking through google to see if I kind figure out what the problem was.
Google indicated it might be my webconfig
Can anyone look at this and see if they can help me?
Thank you.
		Code:
	
	<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <rewrite>
            <rules>
                <rule name="Imported Rule 1" stopProcessing="true">
                    <match url="^.*$" />
                    <conditions logicalGrouping="MatchAny">
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" />
                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" />
                    </conditions>
                    <action type="None" />
                </rule>
                <rule name="Imported Rule 2" stopProcessing="true">
                    <match url="^(data|js|styles|install)" />
                    <action type="None" />
                </rule>
                <rule name="Imported Rule 3" stopProcessing="true">
                    <match url="^.*$" />
                    <action type="Rewrite" url="index.php" />
                </rule>
            </rules>
        </rewrite>
        <httpErrors existingResponse="PassThrough" />
    </system.webServer>
</configuration>
	Ps I use Godaddy for hosting.