Home > Article > Backend Development > How to set iis7 php error prompt
iis7 How to set error prompts in php: 1. Modify the content of the PHP configuration file to "display_errors = on;"; 2. Add the web.config file in the root directory of the website.
The operating environment of this article: windows7 system, PHP7.1 version, DELL G3 computer
iis7 How to set php error prompt?
Under IIS7, display PHP errors
In fact, we all know that setting php to display errors, but under iis7/7.5, additional configuration is required . First look at the configuration of php:
display_errors = on; error_reporting = E_ALL & ~E_NOTICE;
iis configuration. Note that you first need to configure Add the web.config file to the directory:
The code is as follows:
<?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>
This is really Baidu’s experience. .
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of How to set iis7 php error prompt. For more information, please follow other related articles on the PHP Chinese website!