Home  >  Article  >  Backend Development  >  What should I do if IIS PHP error "Enable file monitoring for files that cannot be found"

What should I do if IIS PHP error "Enable file monitoring for files that cannot be found"

藏色散人
藏色散人Original
2020-08-08 09:55:363492browse

iis PHP errors occur because there is an error in pointing or mapping in the service in iis. The solution is to change the hosting pipeline mode of the application pool from classic to integrated, and change the logo to "network service" That’s it.

What should I do if IIS PHP error

Recommendation: "PHP Video Tutorial"

IIS7 configuration PHP error "cannot be found" File Enable File Monitoring"

Introduction: The original article IIS7 configuration PHP5.4 error reporting enable file monitoring for files that cannot be found, how to solve the problem? Case environment: Windows2008 IIS7 PHP5.4 ZEND LOADER users encountered an error after configuration: Error summary HTTP error 500.0 - Internal Server Error Enable file monitoring for files that cannot be found Wanwei Jingsheng engineers share solutions with you.

Case environment: windows2008 IIS7 PHP5.4 ZEND LOADER users encountered an error after configuration: Error summary HTTP error 500.0 - Internal Server Error Enable file monitoring for files that cannot be found Wanweijingsheng engineers will share the solution with you method.

The detailed error report on the page is as follows:

详细错误信息 
模块
FastCgiModule 
通知
ExecuteRequestHandler 
处理程序
php-5.3.13 
错误代码
0x80070003 
请求的 URL
http://localhost:80/index.php 
物理路径
d:\wwwroot\bbs\wwwroot\index.php 
登录方法
匿名 
登录用户
匿名

The most likely reasons: •IIS received the request; but an internal error occurred during processing of the request. The root cause of this error depends on which module is handling the request and what happened in the worker process when the error occurred.

•IIS cannot access the website or application's web.config file. This can occur if the NTFS permissions are set incorrectly.

•IIS was unable to process the configuration of the website or application.

•The authenticated user does not have permission to use this DLL.

•The request will be mapped to a managed handler, but the .NET extensible features will not be installed.

Things to try: • Make sure the NTFS permissions on the web.config file are correct and allow access to the web server's computer account.

• Check the event log to see if any additional information is logged.

•Confirm the permissions of the DLL.

•Install .NET extensible features if the request is mapped to a managed handler.

•Create a tracking rule to track failed requests for this HTTP status code. For more information about creating tracking rules for failed requests, click here.

Links and more information This error indicates that there was a problem processing the request. The web server received the request, but an error occurred during processing, resulting in a 500 error.

Judging from the error report, there is an error in the service transfer pointing or mapping in iis. After exploration, I found that the problem was solved by changing the hosting pipeline mode of the application pool from classic to integrated and changing the identification to network service.

The above is the detailed content of What should I do if IIS PHP error "Enable file monitoring for files that cannot be found". For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn