IIS站点配置时出现了错误,信息如下:The page cannot be displayed
You have attempted to execute a CGI, ISAPI, or other executable program from a directory that does not allow programs to be executed. 
--------------------------------------------------------------------------------Please try the following:Contact the Web site administrator if you believe this directory should allow execute access. 
HTTP Error 403.1 - Forbidden: Execute access is denied.
Internet Information Services (IIS)--------------------------------------------------------------------------------Technical Information (for support personnel)Go to Microsoft Product Support Services and perform a title search for the words HTTP and 403. 
Open IIS Help, which is accessible in IIS Manager (inetmgr), and search for topics titled Configuring ISAPI Extensions, Configuring CGI Applications, Securing Your Site with Web Site Permissions, and About Custom Error Messages. 
In the IIS Software Development Kit (SDK) or at the MSDN Online Library, search for topics titled Developing ISAPI Extensions, ISAPI and CGI, and Debugging ISAPI Extensions and Filters. 备注:
1、IIS配置中“Web服务扩展”,“所有未知的CGI扩展”和“所有未知的ISAPI扩展”都设为了允许。
2、站点中用到了“MyZebGraph.dll”,也就是“ZebGraph图形报表”。问题一:是什么导致了这个错误,应该怎样排除???问题二:是不是需要为某些文件夹目录配置执行“CGI, ISAPI”的权限???问题三:“CGI, ISAPI”的作用是什么???江湖救急啊,小弟急配站点。

解决方案 »

  1.   

    403错误,是网站访问过程中,常见的错误提示。资源不可用。服务器理解客户的请求,但拒绝处理它。通常由于服务器上文件或目录的权限设置导致,比如IIS或者apache 设置了访问权限不当。楼主看看IIS的访问权限设置呢
      

  2.   

    http://baike.baidu.com/view/245912.htm也可看看
      

  3.   


    这个问题解决了,但是又出现了新的问题。现在只要问一下:“CGI, ISAPI”的作用是什么???
      

  4.   

    执行权限忘记更改为“纯脚本”了。
    IIS配置中“Web服务扩展”,“所有未知的CGI扩展”和“所有未知的ISAPI扩展”的作用是什么呢???
      

  5.   


    http://www.hackbase.com/lib/2007-06-09/21413.html
      

  6.   

    ISAPI 服务器扩展为使用 Internet 服务器的通用网关接口 (CGI) 应用程序提供了另一种选择。与 CGI 应用程序不同,ISA 在 HTTP 服务器所在的同一地址空间运行,并且可以访问可由 HTTP 服务器使用的所有资源。ISA 的系统开销比 CGI 应用程序低,因为它们不要求创建其他进程,也不执行需要越过进程边界的通信,而这种通信非常耗时。如果内存被其他进程所需要,扩展和筛选器 DLL 都可能被卸载。详细信息
      

  7.   

    给图表控件MyZebGraph 产生图片的文件夹给个可写入权限 
      

  8.   

    CGI:Common GateWay InterFace
    ISAPI:Internet Server Application Program InterFace看这些单词就能理解了!
      

  9.   

    http://baike.baidu.com/view/245912.htm
    .    .. 看看。
      

  10.   

    试试将isapi添加到iis中的isapi筛选器中
      

  11.   

    CGI:处理客户端的“.exe”可执行程序的请求。ISAPI:处理客户端的“.DLL”的程序的请求。