Glimpse for MVC3 module not found after NuGet install of Glimpse.MVC3
I just added Glimpse.MVC3 to an MVC3 app I'm battling to deploy to IIS / debug on IIS (7.5), but when I try to activate it via Glimpse.axd, I get a 404 not found. I am appending the 开发者_StackOverflow中文版url to my route, and no longer attempting it as an absolute url
Look through this: http://getglimpse.com/Help/Configuration
In web.config make sure it is enabled
<glimpse enabled="true" loggingEnabled="true" requestLimit="15">
IP Addresses ...
<ipAddresses>
<add address="127.0.0.1" />
<add address="192.168.100.59" />
<add address="::1" />
<add address="fe80::f17e:d177:359f:6cee%14" />
</ipAddresses>
Make sure that the module is registered properly in your web.config, remember you will set it up differently in classic vs integrated mode.
You also need to delpoy Glimpse.Core.dll to your applications bin directory.
精彩评论