首頁 > 後端開發 > PHP問題 > iis7下,php如何顯示錯誤

iis7下,php如何顯示錯誤

coldplay.xixi
發布: 2023-03-08 14:28:02
原創
1661 人瀏覽過

iis7下,php顯示錯誤的方法:首先在iis7下,需配置PHP,程式碼為【display_errors = on】;然後需要在網站根目錄新增【web.config】文件,程式碼為【compilation debug="true"..】。

iis7下,php如何顯示錯誤

本教學操作環境:windows7系統、PHP5.6&&iis7版,DELL G3電腦。

iis7下,php顯示錯誤的方法:

事實上,我們都知道設定php顯示錯誤,但在iis7/7.5下,還需要額外的配置。首先看php的配置:

display_errors = on;
error_reporting = E_ALL & ~E_NOTICE;
登入後複製

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>
登入後複製

相關影片推薦:PHP影片教學

#

以上是iis7下,php如何顯示錯誤的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板