logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: os64 error or other
Author
yangshaoxing



Joined: 08 Jul 2010
Posts: 23

PostPosted: Tue 31 Jul '12 15:00    Post subject: os64 error or other Reply with quote

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

PostPosted: Tue 31 Jul '12 15:06    Post subject: Reply with quote

What apache version you are running ?
Back to top
wm003



Joined: 24 Mar 2006
Posts: 88

PostPosted: Wed 01 Aug '12 8:58    Post subject: Reply with quote

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

PostPosted: Wed 01 Aug '12 11:27    Post subject: Reply with quote

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

PostPosted: Wed 01 Aug '12 11:29    Post subject: Reply with quote

but "winnt_accept: Asynchronous AcceptEx failed."?
Back to top
wm003



Joined: 24 Mar 2006
Posts: 88

PostPosted: Wed 01 Aug '12 11:35    Post subject: Reply with quote

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

PostPosted: Wed 01 Aug '12 11:36    Post subject: Reply with quote

add a seperate line with just Win32DisableAcceptEx in it somewhere in httpd.conf

http://httpd.apache.org/docs/2.2/mod/mpm_winnt.html#win32disableacceptex
Back to top
yangshaoxing



Joined: 08 Jul 2010
Posts: 23

PostPosted: Tue 07 Aug '12 2:27    Post subject: Reply with quote

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

PostPosted: Thu 30 Aug '12 7:06    Post subject: file does not exist error Reply with quote

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

PostPosted: Thu 30 Aug '12 13:34    Post subject: Reply with quote

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


Reply to topic   Topic: os64 error or other View previous topic :: View next topic
Post new topic   Forum Index -> Apache