Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I tired to install the MiniProfiler, using the HowTo on http://miniprofiler.com/

This seems to Work:

<%= StackExchange.Profiling.MiniProfiler.RenderIncludes() %>

But when I start the site, I get this error message:

'MiniProfiler' is undefined

The problem is in the included MiniProfiler code:

 var initMp = function(){
                load('/mini-profiler-resources/includes.js?v=6cJT7lsVkH6SxAlFpQstk1/AgtUwMUApXN3pviVvaRE=',function(){
                    MiniProfiler.init({.....

When I try open "http://localhost/mini-profiler-resources/includes.js?v=6cJT7lsVkH6SxAlFpQstk1/AgtUwMUApXN3pviVvaRE=" with IE I get an 404.

I even tried this Solution found on stackoverflow but it did not work for me :(

Does anybody know this problem, or know what I can do to fix that?

SOLUTUION

I solved the problem by adding the config section from this solution and the "runAllManagedModulesForAllRequests" line:

<system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
    <handlers>
        <add name="UrlRoutingModule1" path="mini-profiler*.js" verb="*" type="System.Web.Routing.UrlRoutingModule" resourceType="Unspecified" preCondition="integratedMode" />
        <add name="UrlRoutingModule2" path="mini-profiler*.css" verb="*" type="System.Web.Routing.UrlRoutingModule" resourceType="Unspecified" preCondition="integratedMode" />
        <add name="UrlRoutingModule3" path="mini-profiler*.tmpl" verb="*" type="System.Web.Routing.UrlRoutingModule" resourceType="Unspecified" preCondition="integratedMode" />
    </handlers>
</system.webServer>

The "trick" was to add the line below to get the handlers to work.

<modules runAllManagedModulesForAllRequests="true"/>
share|improve this question
Are you using any kind of url-rewriting? Isapirewrite maybe? – Paul Lemke Jul 16 '12 at 13:50
No. We are just using basic asp.net, no fancy frameworks and stuff. – Oliver Jul 16 '12 at 14:01
what version of IIS? 6? – Paul Lemke Jul 16 '12 at 14:27
IIS is at Version 7.0.0.0 – Oliver Jul 16 '12 at 14:36
I see that it's loading up "localhost". Are you using IIS Express? or a local instance of IIS 7? – Paul Lemke Jul 16 '12 at 14:41
show 5 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.