码迷,mamicode.com
首页 > Web开发 > 详细

IIS7下,显示PHP错误(不显示500错误,而显示详细错误)

时间:2018-06-03 01:07:45      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:网站   ini   500错误   time   sys   targe   microsoft   TE   ati   

玛德,IIS就是个坑,害得老子进行摸索了那么久,才找到了解决方法:

1、除了将php.ini配置为:

 

display_errors = on;

error_reporting = E_ALL & ~E_NOTICE;

 

2、还要再php网站的根目录下面新建一个web.config文件:

iis的配置, 注意你首先需要在你的网站根目录添加web.config文件:

代码如下:

 

<?xml version="1.0" encoding="UTF-8"?>

<!--

  For more information on how to configure your ASP.NET application, please visit

http://go.microsoft.com/fwlink/?LinkId=169433 

  -->

<configuration>

  <system.web>

    <compilation debug="true" targetFramework="4.5"/>

    <httpRuntime targetFramework="4.5"/>

  </system.web>

  <system.webServer>

    <httpErrors errorMode="DetailedLocalOnly" existingResponse="PassThrough"></httpErrors>

  </system.webServer>

</configuration>

IIS7下,显示PHP错误(不显示500错误,而显示详细错误)

标签:网站   ini   500错误   time   sys   targe   microsoft   TE   ati   

原文地址:https://www.cnblogs.com/qing123/p/9127520.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!