Reputation: 4593
What are the steps neccessary to enable custom errors for azure websites.
I have set the 'custom errors' xml tag to 'off', yet that still does not work and i am still getting nonsense generic 500 page.
<customErrors mode="Off">
</customErrors>
theres the 'remote debugging option' that allows me to select a visual studio version.Could that be it?
Upvotes: 0
Views: 694
Reputation: 43193
That's the correct way to turn off custom errors. However, that will only be effective if the requests actually reach your site. In some situation, the requests don't make it that far, at which point you lose control over custom errors. For example, if your site is stopped, or you have a free/shared site that ran out of quota, you won't be able to turn off custom errors.
Two suggestions:
Upvotes: 1