Mvc mini profiler - IIS7 issue

similar to this question mvc mini profiler (1.4) and IIS

I am running IIS 7.5 and my application pool is running in integrated mode on the website

and when requests for mini profiler, includes files happen, I get a bunch of 404 errors?

The only thing I changed is that I deleted the MVChelpers folder and MVC link because we don't have them on our site.

It works fine with VS2010

Any ideas what I need to do to fix this?

thank

+1


source to share


1 answer


google knows everything ... sometimes I just need to dig a little deeper, I suppose

anyway if you have this problem try adding this to your web.config



<system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>

      

worked for me.

+4


source







All Articles