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 중국어 웹사이트의 기타 관련 기사를 참조하세요!