I'm currently having problems with enabling/disabling the trace information. The problem is that the ASP.NET trace is printed for the 404 page.
Wanted situation: - No trace information at all, not via ?umbdebugshowtrace=true and not via the 404 page.
Current situation: - Trace information via ?umbdebugshowtrace=true is disabled, but the 404 page does print trace information
Current configuration: - umbracoDebugMode: false - system.web/trace: enabled="false" - system.web/compilation: debug="false" - default.aspx page declaration: Trace="true" (default, shipped by umbraco)
The only thing I can do not printing the trace information on the 404 page, is by setting Trace to false on the default.aspx page declaration. The issue with that is, it's impossible to get any trace information, so ?umbdebugshowtrace=true doesn't work anymore.
Could someone shed some light on this? Are we doing something wrong or is this a bug?
Umbraco debug mode and trace
I'm currently having problems with enabling/disabling the trace information.
The problem is that the ASP.NET trace is printed for the 404 page.
Wanted situation:
- No trace information at all, not via ?umbdebugshowtrace=true and not via the 404 page.
Current situation:
- Trace information via ?umbdebugshowtrace=true is disabled, but the 404 page does print trace information
Current configuration:
- umbracoDebugMode: false
- system.web/trace: enabled="false"
- system.web/compilation: debug="false"
- default.aspx page declaration: Trace="true" (default, shipped by umbraco)
The only thing I can do not printing the trace information on the 404 page, is by setting Trace to false on the default.aspx page declaration.
The issue with that is, it's impossible to get any trace information, so ?umbdebugshowtrace=true doesn't work anymore.
Could someone shed some light on this? Are we doing something wrong or is this a bug?
Good question.
For anyone else that lands here as this scores highly on Google. In the more modern Umbraco it's
?umbDebug=true you're looking for (and make sure the website webconfig debug is enabled.
Works like a charm when debug is set to true from web.config. Thanks!
is working on a reply...