Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Charles 42 posts 63 karma points
    Mar 28, 2014 @ 18:03
    Charles
    0

    ?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?

  • Dennis Aaen 4500 posts 18255 karma points admin hq c-trib
    Mar 28, 2014 @ 18:32
    Dennis Aaen
    0

    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

  • Charles 42 posts 63 karma points
    Mar 28, 2014 @ 18:57
    Charles
    0
      <appSettings>
    <add key="umbracoDbDSN" value="server=127.0.0.1;database=PHL;user id=phl;password=Phl2014!1!" />
    <add key="umbracoConfigurationStatus" value="4.6.1" />
    <add key="umbracoReservedUrls" value="~/config/splashes/booting.aspx,~/install/default.aspx,~/config/splashes/noNodes.aspx" />
    <add key="umbracoReservedPaths" value="~/umbraco,~/install/,~/testbed/,~/floorplans/,~/" />
    <add key="umbracoContentXML" value="~/App_Data/umbraco.config" />
    <add key="umbracoStorageDirectory" value="~/App_Data" />
    <add key="umbracoPath" value="~/umbraco" />
    <add key="umbracoEnableStat" value="false" />
    <add key="umbracoHideTopLevelNodeFromPath" value="true" />
    <add key="umbracoEditXhtmlMode" value="true" />
    <add key="umbracoUseDirectoryUrls" value="true" />
    <add key="umbracoDebugMode" value="true" />
    <add key="umbracoTimeOutInMinutes" value="20" />
    <add key="umbracoVersionCheckPeriod" value="7" />
    <add key="umbracoDisableXsltExtensions" value="true" />
    <add key="umbracoDefaultUILanguage" value="en" />
    <add key="umbracoProfileUrl" value="profiler" />
    <add key="umbracoUseSSL" value="false" />
    <add key="umbracoUseMediumTrust" value="false" />
    <add key="umbracoContentXMLUseLocalTemp" value="false" />
    </appSettings>
    

    That is what I have for my settings in Umbraco.

  • Dennis Aaen 4500 posts 18255 karma points admin hq c-trib
    Mar 28, 2014 @ 19:35
    Dennis Aaen
    0

    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:

    <appSettings>
        <add key="umbracoDbDSN" value="datalayer=SQLCE4Umbraco.SqlCEHelper,SQLCE4Umbraco;data source=|DataDirectory|\Umbraco.sdf" />
        <add key="umbracoConfigurationStatus" value="4.6.1" />
        <add key="umbracoReservedUrls" value="~/config/splashes/booting.aspx,~/install/default.aspx,~/config/splashes/noNodes.aspx" />
        <add key="umbracoReservedPaths" value="~/umbraco,~/install/" />
        <add key="umbracoContentXML" value="~/App_Data/umbraco.config" />
        <add key="umbracoStorageDirectory" value="~/App_Data" />
        <add key="umbracoPath" value="~/umbraco" />
        <add key="umbracoEnableStat" value="false" />
        <add key="umbracoHideTopLevelNodeFromPath" value="true" />
        <add key="umbracoEditXhtmlMode" value="true" />
        <add key="umbracoUseDirectoryUrls" value="false" />
        <add key="umbracoDebugMode" value="true" />
        <add key="umbracoTimeOutInMinutes" value="20" />
        <add key="umbracoVersionCheckPeriod" value="7" />
        <add key="umbracoDisableXsltExtensions" value="true" />
        <add key="umbracoDefaultUILanguage" value="en" />
        <add key="umbracoProfileUrl" value="profiler" />
        <add key="umbracoUseSSL" value="false" />
        <add key="umbracoUseMediumTrust" value="false" />
        <add key="umbracoContentXMLUseLocalTemp" value="false" />
      </appSettings>

    And I get the DebugShowTrace by request the page like this: http://www.yourdomain.com/?umbDebugShowTrace=true

    /Dennis

Please Sign in or register to post replies

Write your reply to:

Draft