Link to home
Start Free TrialLog in
Avatar of mimark
mimark

asked on

.NET application, Web.Config causes 500 - Internal server error

Hi everybody.

I will try to be short:

- On VPS server I have an Application running
- Application is in C#, .NET and uses SQL database
- Everything running perfect

I have to move it to the new VPS Server (old one was corrupted, however everything is still running, just can’t add more Virtual HDD).

Moving to:
- New Server (Again Virtual Private Server with windows server 2008 R2)
- Have access to plesk and remote desktop
- Created hosting with plesk.
- Switched in Plesk to .NET version 4.something
- Deployed through remote desktop the application on the new server, used web deploy 3.5
- Deployed SQL Database.
- The marketing part of the website written in PHP/Wordpress, the login part and a whole application in .NET
- It seems to be working perfectly but only Locally. Database connection is working and no issues updating Locally.
- As soon as I try to access from the internet it gives an error “500 - internal server error”

Looks like Web.Config has something what causes problems. Maybe something isn’t installed on the new server in IIS or somewhere else. Web.Config wasn’t changed during the move, makes me think that something is missing in the server configuration.

Since the app is running fine locally, I can’t see any more error info and when I go to IIS settings I can’t adjust them (to make error info display remotely), because it gives an error when I click on ASP in IIS on the server. It doesn’t even open any settings in IIS for the application.

I removed a part of the code from web.config and application seem to open, it doesn’t produce server error (which is good), but it doesn’t function as it has to.

Looks like I need to keep the part of the web.config, just need to make it work.

Please see attached part of the web.config, which causes problem. I couldn’t figure out which part inside of it causes the problem, only by removing everything inside of
<system.webServer></system.webServer>

it gets rid of the error

I think I installed IIS Rewrite add-on too but it doesn't help neither.

Is there a way to figure out what is installed on the OLD server or configuration of it (related to the app) or is there a way to figure out from the attached source code from web.config what else is needed?

If you need to see other parts of web.config or want me to look up something else please let me know.

Code attached below.

Thank you very much for your help

<system.webServer>
    <rewrite>
      <rules>
                <clear />
                <rule name="CanonicalHostNameRule1">
                    <match url="(.*)" />
                    <conditions logicalGrouping="MatchAll" trackAllCaptures="false">
                        <add input="{HTTP_HOST}" pattern="^www\.sampledomainname\.com$" negate="true" />
                    </conditions>
                    <action type="Redirect" url="http://www.sampledomainname.com/{R:1}" />
                </rule>
                <rule name="wordpress" patternSyntax="Wildcard">
                    <match url="*/" />
                    <conditions logicalGrouping="MatchAll" trackAllCaptures="false">
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                    </conditions>
                    <action type="Rewrite" url="index.php" />
                </rule>
                <rule name="Rewrite rule1 for Default Page Map" enabled="true" patternSyntax="ECMAScript">
                    <match url=".*" />
                    <conditions logicalGrouping="MatchAll" trackAllCaptures="false">
                        <add input="{Default Page Map:{REQUEST_URI}}" pattern="(.+)" />
                    </conditions>
                    <action type="Rewrite" url="{C:1}" appendQueryString="false" />
                </rule>
                <rule name="StumbleUpon">
                    <match url=".*" />
                    <conditions logicalGrouping="MatchAny" trackAllCaptures="false">
                        <add input="{QUERY_STRING}" pattern="utm_source" />
                        <add input="{QUERY_STRING}" pattern="gclid" />
                        <add input="{QUERY_STRING}" pattern="submit.x" />
                        <add input="{QUERY_STRING}" pattern="preview" />
                        <add input="{QUERY_STRING}" pattern="news" />
                    </conditions>
                    <action type="Rewrite" url="index.php" />
                </rule>
                <rule name="Coupon" patternSyntax="ECMAScript" stopProcessing="true">
                    <match url=".+" />
                    <conditions logicalGrouping="MatchAny" trackAllCaptures="false">
                        <add input="{QUERY_STRING}" pattern="m=R&amp;cc=AAAAAA" />
                    </conditions>
                    <action type="Rewrite" url="/Login.aspx?m=R&amp;cc=BBBBBB" appendQueryString="false" logRewrittenUrl="true" />
                </rule></rules>
            <rewriteMaps>
                <rewriteMap name="Default Page Map" defaultValue="" ignoreCase="false">
                    <add key="/" value="index.php" />
                </rewriteMap>
            </rewriteMaps>
    </rewrite>

    <defaultDocument enabled="true">
        <files>
            <clear />
            <add value="index.php" />
            <add value="default.aspx" />
        </files>
    </defaultDocument>
    <httpRedirect enabled="false" destination="http://www.sampledomainname.com/login.aspx" exactDestination="false" childOnly="false" httpResponseStatus="Temporary" />
    <applicationInitialization remapManagedRequestsTo="IEFrameWarningBypass.html" skipManagedModules="true">
      <add initializationPage="/login.aspx" />
    </applicationInitialization>
  </system.webServer>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of sammySeltzer
sammySeltzer
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Aaron Tomosky
Did you have application request routing installed on the other box? I'm not 100% if the rules you call need it but maybe
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial