Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Umbraco ?umbDebugShowTrace=true not working

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:

<trace enabled="true" requestLimit="10" pageOutput="true" traceMode="SortByTime" localOnly="true" />

within the <system.web> tag.

How do I get information on why a page is taking too long to load initially?

like image 245
Solomon Closson Avatar asked Mar 28 '14 17:03

Solomon Closson


1 Answers

Try to set the next key in AppSettings section:

<add key="umbracoDebugMode" value="true" />
like image 198
Ivan Doroshenko Avatar answered Sep 19 '22 23:09

Ivan Doroshenko