Hi Shannon, looking into it a bit further it might not be an issue specific to Umbraco... I think
Miniprofiler only offers an option to change the MaxJsonResponseSize, (Thanks Jeavon for that snippet) but not the recursion limit which is odd.
What I can't tell is whether the limit is being exceed by something I am doing or by something within Umbraco. There's not enough info in the exception message just now to be sure so I'll probably have to download the source and attach to the process.
It's vital I figure this out anyway as I'm experience some severe slow down on a site we've just deployed to Azure (6x slower), that's with Examine config changes, trimming fcn etc.
Cheers for the input. Appreciate it!
P.S. The version of MiniProfiler that bundles with Umbraco is really old (~2.5 years) and un-upgradeable. Is there a specific reason for this?
MiniProfiler in Umbraco 7.3
Is the MiniProfiler still working properly in Umbraco 7.3?
All the results I get to see are from the Umbraco backoffice.
One of the calls to /mini-profiler-resources/results gives a 500 error, RecursionLimit exceeded, on JavaScriptSerializer.SerializeValue
Hi John,
Did you ever find a solution to this? I've just discovered the same issue.
I've not seen this issue, if you have steps to replicate please create and issue on the tracker
We haven't seen any issues with the mini profiler in 7.3
Dave
In a application started event you need to add this
MiniProfiler.Settings.MaxJsonResponseSize = 104857600;
(Sorry for crap formatting, posted from iPhone)
Now I have a computer here is the whole thing:
Hi Shannon, looking into it a bit further it might not be an issue specific to Umbraco... I think
Miniprofiler only offers an option to change the
MaxJsonResponseSize
, (Thanks Jeavon for that snippet) but not the recursion limit which is odd.What I can't tell is whether the limit is being exceed by something I am doing or by something within Umbraco. There's not enough info in the exception message just now to be sure so I'll probably have to download the source and attach to the process.
It's vital I figure this out anyway as I'm experience some severe slow down on a site we've just deployed to Azure (6x slower), that's with Examine config changes, trimming fcn etc.
Cheers for the input. Appreciate it!
P.S. The version of MiniProfiler that bundles with Umbraco is really old (~2.5 years) and un-upgradeable. Is there a specific reason for this?
Jeavon's solution did not solve the problem for me, I still get the Recursion Limit Exceeded error.
is working on a reply...