php iis7 500錯誤訊息的解決方法:先開啟“php.ini”檔案;然後修改內容為“display_errors = on;”;接著在php網站的根目錄下新建一個“web.config”文件;最後根據詳細的錯誤進行解決即可。
推薦:《PHP影片教學》
IIS7下,顯示PHP錯誤(不顯示500錯誤,而顯示詳細錯誤)
瑪德,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>
以上是php iis7 500錯誤訊息怎麼顯示的詳細內容。更多資訊請關注PHP中文網其他相關文章!