Reputation: 1827
I have wampserver 2.4 installed on a computer and Apache stops responding to web requests. If I try to access the site nothing happens. It will work fine for a day, or about 69 hours in this last case and then, seemingly randomly, it stops.
It can always be resolved by restarting the apache service.
I don't see anything in the apache_error.log file either.
What else can I do to find the cause of this problem?
Upvotes: 1
Views: 2845
Reputation: 94662
Check your httpd.conf
file and if these entries do not exist try adding them
AcceptFilter http none
EnableSendfile Off
EnableMMAP off
This has fixed this issue in the past.
Upvotes: 1