home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Complet / Apache / apache_2.0.52-win32-x86-no_ssl.msi / Data.Cab / F277816_error.xml < prev    next >
Extensible Markup Language  |  2004-04-17  |  3KB  |  84 lines

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE faq SYSTEM "../style/faq.dtd">
  3. <?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
  4. <!-- $Revision: 1.1.2.6 $ -->
  5.  
  6. <!--
  7.  Copyright 2003-2004 The Apache Software Foundation
  8.  
  9.  Licensed under the Apache License, Version 2.0 (the "License");
  10.  you may not use this file except in compliance with the License.
  11.  You may obtain a copy of the License at
  12.  
  13.      http://www.apache.org/licenses/LICENSE-2.0
  14.  
  15.  Unless required by applicable law or agreed to in writing, software
  16.  distributed under the License is distributed on an "AS IS" BASIS,
  17.  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18.  See the License for the specific language governing permissions and
  19.  limitations under the License.
  20. -->
  21.  
  22. <faq metafile="error.xml.meta">
  23. <parentdocument href="./">FAQ</parentdocument>
  24.  
  25. <title>Error Messages - Frequently Asked Questions</title>
  26. <description>What does this error message mean?</description>
  27.  
  28.  
  29.  
  30. <section id="error"><title>Error Messages</title>
  31.     <ul>
  32.     <li><a href="#error.sendfile">Invalid argument:
  33.     core_output_filter: writing data to the network</a></li>
  34.     <li><a href="#error.acceptex">AcceptEx failed</a></li>
  35.     <li><a href="#error.scriptheaders">Premature end of script 
  36.     headers</a></li>
  37.     </ul>
  38.  
  39.     <section id="error.sendfile"><title>Invalid argument:
  40.     core_output_filter: writing data to the network</title>
  41.  
  42.     <p>Apache uses the <code>sendfile</code> syscall on platforms
  43.     where it is available in order to speed sending of responses.
  44.     Unfortunately, on some systems, Apache will detect the presence of
  45.     <code>sendfile</code> at compile-time, even when it does not work
  46.     properly.  This happens most frequently when using network or
  47.     other non-standard file-system.</p>
  48.  
  49.     <p>Symptoms of this problem include the above message in the error
  50.     log and zero-length responses to non-zero-sized files.  The
  51.     problem generally occurs only for static files, since dynamic
  52.     content usually does not make use of <code>sendfile</code>.</p>
  53.  
  54.     <p>To fix this problem, simply use the <directive
  55.     module="core">EnableSendfile</directive> directive to disable
  56.     <code>sendfile</code> for all or part of your server.  Also see
  57.     the <directive module="core">EnableMMAP</directive>, which can
  58.     help with similar problems.</p>
  59.  
  60.     </section>
  61.  
  62.     <section id="error.acceptex"><title>AcceptEx Failed</title>
  63.  
  64.     <p>If you get error messages related to the <code>AcceptEx</code> syscall
  65.     on win32, see the <directive module="mpm_winnt">Win32DisableAcceptEx</directive>
  66.     directive.</p>
  67.     </section>
  68.  
  69.  
  70.     <section id="error.scriptheaders"><title>Premature end of script 
  71.     headers</title>
  72.  
  73.     <p>Most problems with CGI scripts result in this message written in the
  74.     error log together with an <code>Internal Server Error</code> delivered
  75.     to the browser.  A guide to helping debug this type of problem is
  76.     available in the <a href="../howto/cgi.html#troubleshoot">CGI
  77.     tutorial</a>.</p>
  78.     </section>
  79.  
  80. </section>
  81.  
  82. </faq>
  83.  
  84.