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 / F277822_support.xml < prev    next >
Extensible Markup Language  |  2004-04-17  |  6KB  |  135 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.5 $ -->
  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="support.xml.meta">
  23. <parentdocument href="./">FAQ</parentdocument>
  24.  
  25. <title>Support - Frequently Asked Questions</title>
  26. <description>What do I do when I have problems?</description>
  27.  
  28. <section id="support"><title>Support</title>
  29.     <ul>
  30.     <li><a href="#support.what2do">"Why can't I ...? Why won't ... work?" What
  31.     to do in case of problems</a></li>
  32.  
  33.     <li><a href="#support.support">Whom do I contact for support?</a></li>
  34.     </ul>
  35.  
  36.     <section id="support.what2do">
  37.     <title>"Why can't I ...? Why won't ... work?" What to do in case of
  38.     problems</title>
  39.  
  40.       <p>If you are having trouble with your Apache server software, you should
  41.       take the following steps:</p>
  42.  
  43.       <dl>
  44.       <dt>Check the errorlog!</dt>
  45.       <dd>Apache tries to be helpful when it encounters a problem. In many
  46.       cases, it will provide some details by writing one or messages to the
  47.       server error log. Sometimes this is enough for you to diagnose & fix
  48.       the problem yourself (such as file permissions or the like). The default
  49.       location of the error log is
  50.       <code>/usr/local/apache2/logs/error_log</code>, but see the <directive
  51.       module="core">ErrorLog</directive> directive in your config files for the
  52.       location on your server.</dd>
  53.  
  54.       <dt>Check the <a
  55.       href="http://httpd.apache.org/docs-2.0/faq/">FAQ</a>!</dt>
  56.       <dd>The latest version of the Apache Frequently-Asked Questions list can
  57.       always be found at the main Apache web site.</dd>
  58.  
  59.       <dt>Check the Apache bug database</dt>
  60.       <dd>Most problems that get reported to The Apache Group are recorded in
  61.       the <a href="http://httpd.apache.org/bug_report.html">bug database</a>.
  62.       <strong>Please</strong> check the existing reports, open
  63.       <strong>and</strong> closed, before adding one. If you find that your
  64.       issue has already been reported, please <em>don't</em> add a "me, too"
  65.       report. If the original report isn't closed yet, we suggest that you
  66.       check it periodically. You might also consider contacting the original
  67.       submitter, because there may be an email exchange going on about the
  68.       issue that isn't getting recorded in the database.</dd>
  69.  
  70.       <dt><a id="support.what2do.user-support"
  71.       name="support.what2do.user-support">Ask in a user support forum</a></dt>
  72.       <dd><p>Apache has an active community of users who are willing to share
  73.       their knowledge. Participating in this community is usually the best and
  74.       fastest way to get answers to your questions and problems.</p>
  75.  
  76.       <p><a href="http://httpd.apache.org/userslist.html">Users
  77.       mailing list</a></p>
  78.  
  79.       <p>USENET newsgroups:</p>
  80.  
  81.       <ul>
  82.       <li>comp.infosystems.www.servers.unix
  83.       [<a href="news:comp.infosystems.www.servers.unix">news</a>]
  84.       [<a href="http://groups.google.com/groups?group=comp.infosystems.www.servers.unix">google</a>]
  85.       </li>
  86.  
  87.       <li>comp.infosystems.www.servers.ms-windows
  88.       [<a href="news:comp.infosystems.www.servers.ms-windows">news</a>]
  89.       [<a href="http://groups.google.com/groups?group=comp.infosystems.www.servers.ms-windows">google</a>]
  90.       </li>
  91.  
  92.       <li>comp.infosystems.www.authoring.cgi
  93.       [<a href="news:comp.infosystems.www.authoring.cgi">news</a>]
  94.       [<a href="http://groups.google.com/groups?group=comp.infosystems.www.authoring.cgi">google</a>]
  95.       </li>
  96.       </ul></dd>
  97.  
  98.       <dt>If all else fails, report the problem in the bug database</dt>
  99.       <dd><p>If you've gone through those steps above that are appropriate and
  100.       have obtained no relief, then please <em>do</em> let the httpd developers
  101.       know about the problem by <a
  102.       href="http://httpd.apache.org/bug_report.html">logging a bug
  103.       report</a>.</p>
  104.  
  105.       <p>If your problem involves the server crashing and generating a core
  106.       dump, please include a backtrace (if possible). As an example,</p>
  107.  
  108.       <example>
  109.         # cd <var>ServerRoot</var><br />
  110.         # dbx <var>httpd</var> <var>core</var><br />
  111.         (dbx) where
  112.       </example>
  113.  
  114.       <p>(Substitute the appropriate locations for your <var>ServerRoot</var>
  115.       and your <var>httpd</var> and <var>core</var> files. You may have to use
  116.       <code>gdb</code> instead of <code>dbx</code>.)</p>
  117.       </dd>
  118.       </dl>
  119.     </section>
  120.  
  121.     <section id="support.support"><title>Whom do I contact for support?</title>
  122.       <p>With several million users and fewer than forty volunteer developers,
  123.       we cannot provide personal support for Apache. For free support, we
  124.       suggest participating in a <a href="#support.what2do.user-support"
  125.       >user forum</a>.</p>
  126.  
  127.       <p>Professional, commercial support for Apache is available from
  128.       <a href="http://www.apache.org/info/support.cgi">a number of
  129.       companies</a>.</p>
  130.     </section>
  131. </section>
  132.  
  133. </faq>
  134.  
  135.