How to solve the problem of apache stopping responding

王林
Release: 2020-11-20 15:41:30
forward
12071 people have browsed it

How to solve the problem of apache stopping responding

Background:

Recently when developing a mobile website, I found that two mobile phones often cannot access the development server (wamp environment).

(Recommended tutorial: apache)

Test localhost on the homepage and there is no problem at all; then check Apache logs and see no abnormal errors and no related access records; use other computers Browser test to eliminate problems caused by browser differences; finally find relevant solutions online, as shown below:

1. Open Apache2\conf\httpd.conf

2. Search

#AcceptFilter http none
#AcceptFilter https none
Copy after login

3. Change it to

AcceptFilter http none
AcceptFilter https none
Copy after login

upupw added this configuration by default but commented it out. We remove the # sign and enable the configuration.

Here you can solve the problem that some browsers cause apache to be slow or suspended and unresponsive, and improve compatibility.

4. Restart Apache to solve this problem.

The above is the detailed content of How to solve the problem of apache stopping responding. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template