Archive for June, 2015

Show classic ASP errors in Azure

Here is the web.config to show classic ASP (.asp files) in Azure, or in my case Windows Azure Pack with websites. [code] <configuration> <system.webServer> <asp scriptErrorSentToBrowser="true"/> <httpErrors existingResponse="PassThrough"/> <!–<httpErrors errorMode="Detailed"/>–> </system.webServer> </configuration> [/code] I commented out detailed error messages. With that enabled it would not show the classic ASP errors.

Read More →

Fix Failed to retrieve configuration information. in Windows Azure pack Websites

Did you try enabling failed request tracing for a web site in the admin portal for Windows Azure Pack: Websites? And now you’re getting this error when you try to open the configure tab? Failed to retrieve configuration information.: Please try again. If the problem persists, contact support. Thanks to a kind gentleman on the […]

Read More →