1

When I click on "Share" the screen it loads has no content. Even when I view source there isn't anything.

I've set MiniProfiler.Settings.Results_Authorize = r => true; in global.asax BeginRequest

When I set auth to false it shows "hidden" so I know the request is being routed to the MiniProfiler handler.

Any ideas?

Share Link

No Content

Mark Rucker
  • 6,952
  • 4
  • 39
  • 65
  • That's odd. Is this a single machine? or a cluster? In the latter case, you need to implement a trivial interface with your choice of back-end store, so that if the initial / share requests go to different machines it still makes sense (the default implementation is in-memory) - are you sure it isn't just this? – Marc Gravell Feb 22 '13 at 00:23
  • @MarcGravell Fairly certain. Right now I am simply running it locally on my machine. The plan is to deploy it to our web farm next week. In preparation for this I've been using SqlServerStorage. I also tried it using the default HttpRuntimeCacheStorage though, and it still didn't work. You can see in my answer below that building the latest source fixed it. This was true for both IStorage implementations. I'm satisfied using the latest source build. If you want more info for yourself please just let me know. Thanks for your help. – Mark Rucker Feb 22 '13 at 00:36
  • k; thanks. We're going to try and re-deploy it this weekend. Sorry 'bout that. – Marc Gravell Feb 22 '13 at 00:44
  • @MarcGravell No problem at all. Thank you for making such a great tool! Super slick use of interfaces and static properties in MiniProfiler.Settings. It has been a breeze to set up and use. – Mark Rucker Feb 22 '13 at 00:49

1 Answers1

1

Alright, I fixed it...ish. Or rather they fixed it.

Apparently this is a bug in the NuGet dll's.

When I download the source from miniprofiler.com, build it, and click on "share" everything works great.

Source Code

Mark Rucker
  • 6,952
  • 4
  • 39
  • 65