安装窥试图访问glimpse.axd和接收404错误? [英] Installed glimpse attempting to access glimpse.axd and receive 404 error?

查看:153
本文介绍了安装窥试图访问glimpse.axd和接收404错误?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是一个简单的,我下面这个页面安装一瞥。

It is a simple as that I installed glimpse following this page. :

http://getglimpse.com/About/QuickStart

我然后尝试导航到 HTTP://myApp/glimpse.axd 和接收未找到404错误

I then attempt to navigate to http://myApp/glimpse.axd and receive 404 error not found.

正如你可以在快速入门看到有这种说法。

As you can see in the Quickstart there is this statement. :

如果你得到一个页面没有找到浏览时/glimpse.axd检查中常见问题的故障排除部分。

If you get a "Page not found" when browsing to "/glimpse.axd" check the troubleshooting section in the FAQ.

有没有在这方面的常见问题解答。我已经脱脂本网站getGlimpse.com试图许多其他配置并没有什么工作。任何其他人遇到了这个问题,并解决它?

There is nothing in the FAQ regarding this. I have skimmed this website and getGlimpse.com attempting numerous other configurations and nothing is working. Any one else run into this issue and fix it?

试过此也。

<一个href=\"http://stackoverflow.com/questions/6668914/glimpse-for-mvc3-module-not-found-after-nuget-install-of-glimpse-mvc3\">Glimpse对于以后的NuGet找不到MVC3模块安装Glimpse.MVC3

推荐答案

请确保您有掠影模块,并在你的web.config注册的处理程序根据您所使用的Web服务器上。

Make sure you have the Glimpse module and handler registered in your web.config based on the web server you are using.


  • 如果您正在使用IIS6网站,在IIS7.x经典管道模式或Visual Studio开发服务器

  • If you are using a site on IIS6, in IIS7.x classic pipeline mode or Visual Studio Development Server

<system.web>
    <httpModules>
        <add 
            name="Glimpse" 
            type="Glimpse.Core.Module, Glimpse.Core"
        />
    </httpModules>
    <httpHandlers>
        <add 
            path="glimpse.axd" 
            verb="GET,POST" 
            type="Glimpse.Core.Handler, Glimpse.Core"
        />
   </httpHandlers>
   ...

如果你正在使用集成管道模式或IIS防爆preSS IIS 7.x的:

And if you are using IIS 7.x in integrated pipeline mode or IIS Express:

<system.webServer>
    <modules>
        <add 
            name="Glimpse" 
            type="Glimpse.Core.Module, Glimpse.Core" 
            preCondition="integratedMode" 
        />
    </modules>
    <handlers>
        <add 
            name="Glimpse" 
            path="glimpse.axd" 
            verb="GET,POST" 
            type="Glimpse.Core.Handler, Glimpse.Core" 
            preCondition="integratedMode" 
        />
    </handlers>
    ...
</system.webServer>


这篇关于安装窥试图访问glimpse.axd和接收404错误?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆