Author |
|
yangshaoxing
Joined: 08 Jul 2010 Posts: 23
|
Posted: Tue 31 Jul '12 15:00 Post subject: os64 error or other |
|
|
apche error.log:
winnt_accept: Asynchronous AcceptEx failed.
and say file DOES NOT exist:
[error] [client 61.49.183.30] File does not exist: R:/wy2/_vti_bin
why?how to solve? |
|
Back to top |
|
Steffen Moderator
Joined: 15 Oct 2005 Posts: 3092 Location: Hilversum, NL, EU
|
Posted: Tue 31 Jul '12 15:06 Post subject: |
|
|
What apache version you are running ? |
|
Back to top |
|
wm003
Joined: 24 Mar 2006 Posts: 88
|
Posted: Wed 01 Aug '12 8:58 Post subject: |
|
|
I was getting this everytime a user used IE and clicked on "Discuss this website".
I got rid of that by redirecting those request back to microsoft:
Code: | Redirect permanent /_vti_bin http://www.microsoft.com/_vti_bin
Redirect permanent /MSOffice http://www.microsoft.com/MSOffice |
|
|
Back to top |
|
yangshaoxing
Joined: 08 Jul 2010 Posts: 23
|
Posted: Wed 01 Aug '12 11:27 Post subject: |
|
|
Steffen wrote: | What apache version you are running ? |
Apache/2.2.21 (Win64) PHP/5.3.8-Win64 |
|
Back to top |
|
yangshaoxing
Joined: 08 Jul 2010 Posts: 23
|
Posted: Wed 01 Aug '12 11:29 Post subject: |
|
|
but "winnt_accept: Asynchronous AcceptEx failed."? |
|
Back to top |
|
wm003
Joined: 24 Mar 2006 Posts: 88
|
Posted: Wed 01 Aug '12 11:35 Post subject: |
|
|
Do you have
Win32DisableAcceptEx
in your httpd.conf?
If so, try to disable it. I had similar issues some years ago |
|
Back to top |
|
glsmith Moderator
Joined: 16 Oct 2007 Posts: 2268 Location: Sun Diego, USA
|
|
Back to top |
|
yangshaoxing
Joined: 08 Jul 2010 Posts: 23
|
Posted: Tue 07 Aug '12 2:27 Post subject: |
|
|
wm003 wrote: | I was getting this everytime a user used IE and clicked on "Discuss this website".
I got rid of that by redirecting those request back to microsoft:
Code: | Redirect permanent /_vti_bin http://www.microsoft.com/_vti_bin
Redirect permanent /MSOffice http://www.microsoft.com/MSOffice |
|
can i refuse discuss? |
|
Back to top |
|
yangshaoxing
Joined: 08 Jul 2010 Posts: 23
|
Posted: Thu 30 Aug '12 7:06 Post subject: file does not exist error |
|
|
wm003 wrote: | I was getting this everytime a user used IE and clicked on "Discuss this website".
I got rid of that by redirecting those request back to microsoft:
Code: | Redirect permanent /_vti_bin http://www.microsoft.com/_vti_bin
Redirect permanent /MSOffice http://www.microsoft.com/MSOffice |
|
i have set these in http.conf:
<IfModule mpm_winnt.c>
ThreadsPerChild 100
MaxRequestsPerChild 1000
Win32DisableAcceptEx
EnableSendfile off
EnableMMAP off
</IfModule>
and i have also set these:
Redirect permanent /_vti_bin http://about:blank
Redirect permanent /MSOffice http://about:blank
but the error.log alse say:
[Thu Aug 30 11:05:38 2012] [error] [client 118.251.71.95] File does not exist: c:/myweb/_vti_bin
[Thu Aug 30 11:05:38 2012] [error] [client 118.251.71.95] File does not exist: c:/myweb/MSOffice
and
[Wed Aug 29 19:32:36 2012] [error] [client 183.46.72.28] File does not exist: c:/myweb/apple-touch-icon-114x114-precomposed.png
[Wed Aug 29 19:32:37 2012] [error] [client 183.46.72.28] File does not exist: c:/myweb/apple-touch-icon-114x114.png
[Wed Aug 29 19:32:37 2012] [error] [client 183.46.72.28] File does not exist: c:/myweb/apple-touch-icon-precomposed.png
[Wed Aug 29 19:32:37 2012] [error] [client 183.46.72.28] File does not exist: c:/myweb/apple-touch-icon.png
[Wed Aug 29 21:38:39 2012] [error] [client 183.46.72.28] File does not exist: c:/myweb/apple-touch-icon-114x114-precomposed.png
[Wed Aug 29 21:38:39 2012] [error] [client 183.46.72.28] File does not exist: c:/myweb/apple-touch-icon-114x114.png
[Wed Aug 29 21:38:39 2012] [error] [client 183.46.72.28] File does not exist: c:/myweb/apple-touch-icon-precomposed.png
[Wed Aug 29 21:38:39 2012] [error] [client 183.46.72.28] File does not exist: c:/myweb/apple-touch-icon.png |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Thu 30 Aug '12 13:34 Post subject: |
|
|
Those are only 404 (File not found) errors. There is nothing bad about it.
The apple-touch-icon* requests come from apple devices like iphone or ipad.
if you don't want to log those errors see
http://www.apachelounge.com/viewtopic.php?t=2958 |
|
Back to top |
|