Hello I have in the AppSettings of the web.config file and using Umbraco 4.6.1.
I go to page that takes way to long to load initially, so I append ?umbDebugShowTrace=true to the page, but it doesn't output anything that tells me anything about a stack trace. I also have the following in the web.config file:
within the
How do I get information on why a page is taking too long to load initially?
Sorry I canĀ“t see what you have added to your web.cofig file, but you should be able to get the stack trace is by setting the umbracoDebugMode to true in the AppSettings section.
<add key="umbracoDebugMode" value="true" />
After that you should get the stack trace by append the ?umbDebugShowTrace=true to the page as you said.
?umbDebugShowTrace=true Does not work
Hello I have in the AppSettings of the web.config file and using Umbraco 4.6.1.
I go to page that takes way to long to load initially, so I append ?umbDebugShowTrace=true to the page, but it doesn't output anything that tells me anything about a stack trace. I also have the following in the web.config file:
within the
How do I get information on why a page is taking too long to load initially?
Hi Charles,
Sorry I canĀ“t see what you have added to your web.cofig file, but you should be able to get the stack trace is by setting the umbracoDebugMode to true in the AppSettings section.
<add key="umbracoDebugMode" value="true" />
After that you should get the stack trace by append the ?umbDebugShowTrace=true to the page as you said.
Hope this helps,
/Dennis
That is what I have for my settings in Umbraco.
Hi Charles,
I have just tried set up an Umbraco 4.6.1 instance on my localhost and I can get the ?umbDebugShowTrace=true to work.
My AppSettings look like this:
And I get the DebugShowTrace by request the page like this: http://www.yourdomain.com/?umbDebugShowTrace=true
/Dennis
is working on a reply...