I’m having problems getting MiniProfiler to show me the reports. I’m just in the Dev environment, which should show it all the time. Adding ?pp=help
does bring up the help page. In tmp/miniprofile, there are a ton of mp_timers_ files. Apparently something is happening back there.
At first I thought it was a weird CSS issue, like my navigation bar is covering it. I tried loading the page without CSS and the MiniProfile box still doesn’t show up.
In case it matters, I do not have a before_filter
set up. When I use the simple one from their docs, though, it doesn't help anything.
Rack::MiniProfiler.authorize_request
somewhere in your controller? All I had to do was add the gem, execute the line above in my application controller (in a before_filter) and results started showing in the top-left of my views. – Parulisbefore_filter
. And that's why I'm stumped. It should show up no matter what in the dev environment. – Cleavland