The page cannot be displayed because an internal server error has occurred.

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.
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.
 
http 500 is a generic server error. It could mean lots of things. File / folder permissions is one possible cause. Folders are normally chmod 755, and files are normally 644. But it can be different depending on your server configuration. On some servers this error can be caused by an excess of permissions, such as 777 permissions.

But more generally, to discover the cause of a 500 error you need to get with your host and find the log entry on the server for that error.
 
Top Bottom