From: Joshua Slive Date: Fri, 25 Apr 2003 19:18:06 +0000 (+0000) Subject: Add a question to the FAQ. (The first 2.0 FAQ!) X-Git-Tag: pre_ajp_proxy~1774 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cf120bdc0c836ca66fc70f6eb0ec1439e9cf8e16;p=apache Add a question to the FAQ. (The first 2.0 FAQ!) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@99603 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/faq/all_in_one.html.en b/docs/manual/faq/all_in_one.html.en index 1270b50534..e805d2a504 100644 --- a/docs/manual/faq/all_in_one.html.en +++ b/docs/manual/faq/all_in_one.html.en @@ -27,11 +27,13 @@
top

Topics

Support
What do I do when I have problems?
+
Error Messages
What does this error message mean?
top

Support

@@ -132,6 +134,35 @@ a number of companies.

+
top
+
+

Error Messages

+ + +

Invalid argument: + core_output_filter: writing data to the network

+ +

Apache uses the sendfile syscall on platforms + where it is available in order to speed sending of responses. + Unfortunately, on some systems, Apache will detect the presence of + sendfile at compile-time, even when it does not work + properly. This happens most frequently when using network or + other non-standard file-system.

+ +

Symptoms of this problem include the above message in the error + log and zero-length responses to non-zero-sized files. The + problem generally occurs only for static files, since dynamic + content usually does not make use of sendfile.

+ +

To fix this problem, simply use the EnableSendfile directive to disable + sendfile for all or part of your server. Also see + the EnableMMAP, which can + help with similar problems.

+ +