Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi,
What do i need to do to get debug info on a vers. 7.
I have added <add key="umbracoDebugMode" value="true" /> in web.config
But it dosnt work, what else do i need to do?
I tried:?umbdebug=true?umbDebugShowTrace=true
Hi Peter
Since Umbraco 6 was released the old "umbdebugshowtrace" string can't be used anymore.
?umbdbebug=1 should work and be hooked up using mini profiler. But I have never figured out how it works and if it works out of the box.
But I believe it's the same thing that should be used with v7.
You can read more about the mini profiler at the umbraco.com blog and Jorge Lusar has created a package that might be of interest. He has written more about it here http://jlusar.es/miniprofiler-for-umbraco and there is another blogpost on mini profiler here http://blog.dotnetnerd.dk/post/2012/01/16/Using-the-MVC-Mini-Profiler-with-Umbraco.aspx
Hope this helps!
/Jan
Hi
I believe the appsetting key umbracoDebugMode is not used anymore in V7. I don't have it in my install.
To get it working you need to change your compilation tag in the web.config.
You need to set the debug attribute to true like this
<compilation defaultLanguage="c#" debug="true" batch="false" targetFramework="4.5"> <buildProviders> <add extension=".cshtml" type="umbraco.MacroEngines.RazorBuildProvider, umbraco.MacroEngines" /> <add extension=".vbhtml" type="umbraco.MacroEngines.RazorBuildProvider, umbraco.MacroEngines" /> <add extension=".razor" type="umbraco.MacroEngines.RazorBuildProvider, umbraco.MacroEngines" /> </buildProviders> </compilation>
Dave
Forgot to mention that you have to append ?umbdebug=true to your url to see it
thanks, it worked.
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
umbdebug version 7
Hi,
What do i need to do to get debug info on a vers. 7.
I have added <add key="umbracoDebugMode" value="true" /> in web.config
But it dosnt work, what else do i need to do?
I tried:
?umbdebug=true
?umbDebugShowTrace=true
Hi Peter
Since Umbraco 6 was released the old "umbdebugshowtrace" string can't be used anymore.
?umbdbebug=1 should work and be hooked up using mini profiler. But I have never figured out how it works and if it works out of the box.
But I believe it's the same thing that should be used with v7.
You can read more about the mini profiler at the umbraco.com blog and Jorge Lusar has created a package that might be of interest. He has written more about it here http://jlusar.es/miniprofiler-for-umbraco and there is another blogpost on mini profiler here http://blog.dotnetnerd.dk/post/2012/01/16/Using-the-MVC-Mini-Profiler-with-Umbraco.aspx
Hope this helps!
/Jan
Hi
I believe the appsetting key umbracoDebugMode is not used anymore in V7. I don't have it in my install.
To get it working you need to change your compilation tag in the web.config.
You need to set the debug attribute to true like this
Dave
Forgot to mention that you have to append ?umbdebug=true to your url to see it
thanks, it worked.
is working on a reply...