我正在运行umbraco 7的实例。但我似乎无法设置miniprofiler来使用它。
在我的global.asax:
上设置此项 protected void Application_BeginRequest()
{
if (Request.IsLocal)
{
MiniProfiler.Start();
}
}
protected void Application_EndRequest()
{
MiniProfiler.Stop();
}
还在web.config上定义了处理程序:
<add name="MiniProfiler" path="mini-profiler-resources/*" verb="*" type="System.Web.Routing.UrlRoutingModule" resourceType="Unspecified" preCondition="integratedMode" />
真正感谢任何帮助。
答案 0 :(得分:8)
MiniProfiler内置于Umbraco v6和v7。您不必手动设置它。您所要做的就是通过在AppSettings中设置密钥来启用调试模式:
<add key="umbracoDebugMode" value="true" />
使用?umbDebug = true 查询字符串参数加载页面。
答案 1 :(得分:0)
你的global.asax文件是继承自umbraco全局http类还是你编写此代码的那个?如果是前者,那就不行了。请尝试使用Web Activator。或者从global.asax.cs中的umbraco全局文件继承。