Internet Explorer has a feature that blocks the true error message from
being displayed. In order to display the true error message, follow the
instructions below:
- Open Internet Explorer
- Go to "Tools" --> "Internet Options"
- Go to "Advanced" tab
- Uncheck "Show Friendly Error Message"
- Click "OK"
- Reload the page, you should now see a more detailed error message.
If your browser unchecked "Show Friendly Error Message", but still get this error, you can do the following:
Creat web.config file at your site root folder and put the code below to it and save. (If you have web.config file in your account root folder already, please update it with the code below and save.)
<?
xml
version
=
"1.0"
encoding
=
"UTF-8"
?>
<
configuration
>
<
system.webServer
>
<
httpErrors
errorMode
=
"Detailed"
/>
</
system.webServer
>
</
configuration
>
And now you should be able to see your website detailed error message.
Article ID: 155, Created: July 24, 2012 at 10:32 PM, Modified: May 29, 2013 at 10:24 PM