iis7 php設定錯誤提示的方法:1.修改PHP設定檔內容為「display_errors = on;」;2、在網站根目錄新增web.config檔即可。
本文操作環境:windows7系統、PHP7.1版,DELL G3電腦
iis7 php 錯誤提示怎麼設定?
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中文網其他相關文章!