Received: (from majordom@localhost) by hyperreal.com (8.8.4/8.8.4) id IAA04125; Sun, 20 Apr 1997 08:40:10 -0700 (PDT) Received: (from coar@localhost) by hyperreal.com (8.8.4/8.8.4) id IAA04119 for apache-cvs; Sun, 20 Apr 1997 08:40:08 -0700 (PDT) Date: Sun, 20 Apr 1997 08:40:08 -0700 (PDT) From: Rodent of Unusual Size Message-Id: <199704201540.IAA04119@hyperreal.com> To: apache-cvs@hyperreal.com Subject: cvs commit: apache/htdocs/manual/misc FAQ.html Sender: apache-cvs-owner@apache.org Precedence: bulk Reply-To: new-httpd@apache.org coar 97/04/20 08:40:07 Modified: htdocs/manual/misc FAQ.html Log: Cleaned up some
 sections to use  and 
instead; Lynx (2.7.1) wasn't indenting properly. Revision Changes Path 1.27 +48 -22 apache/htdocs/manual/misc/FAQ.html Index: FAQ.html =================================================================== RCS file: /export/home/cvs/apache/htdocs/manual/misc/FAQ.html,v retrieving revision 1.26 retrieving revision 1.27 diff -C3 -r1.26 -r1.27 *** FAQ.html 1997/04/20 02:43:12 1.26 --- FAQ.html 1997/04/20 15:40:06 1.27 *************** *** 8,14 ****

Apache Server Frequently Asked Questions

! $Revision: 1.26 $ ($Date: 1997/04/20 02:43:12 $)

If you are reading a text-only version of this FAQ, you may find numbers --- 8,14 ----

Apache Server Frequently Asked Questions

! $Revision: 1.27 $ ($Date: 1997/04/20 15:40:06 $)

If you are reading a text-only version of this FAQ, you may find numbers *************** *** 351,361 **** If your problem involves the server crashing and generating a core dump, please include a backtrace (if possible). As an example,

!
  !      # cd ServerRoot
  !      # dbx httpd core
  !      (dbx) where
  !     

(Substitute the appropiate locations for your ServerRoot and your httpd and --- 351,368 ---- If your problem involves the server crashing and generating a core dump, please include a backtrace (if possible). As an example,

!

! !

!
# cd ServerRoot !
!
# dbx httpd core !
!
(dbx) where !
!
! !

(Substitute the appropiate locations for your ServerRoot and your httpd and *************** *** 414,427 **** AddHandler -

directive.
  1. In an appropriate section of your server configuration files, add a line such as !
      !      AddHandler cgi-script .cgi
      !     
    The server will then recognise that all files in that location (and its logical descendants) that end in ".cgi" are script files, not documents. --- 421,437 ---- AddHandler directive. +

    1. In an appropriate section of your server configuration files, add a line such as !

      !

      !
      AddHandler cgi-script .cgi !
      !
      !

      The server will then recognise that all files in that location (and its logical descendants) that end in ".cgi" are script files, not documents. *************** *** 448,458 **** disabled buffering; if you insert the following statements before your first print statement, this will probably go away.

      !
        !    $cfh = select (STDOUT);
        !    $| = 1;
        !    select ($cfh);
        !   

      If your script isn't written in Perl, do the equivalent thing for whatever language you are using (e.g., for C, call --- 458,475 ---- disabled buffering; if you insert the following statements before your first print statement, this will probably go away.

      !

      ! !

      !
      $cfh = select (STDOUT); !
      !
      $| = 1; !
      !
      select ($cfh); !
      !
      ! !

      If your script isn't written in Perl, do the equivalent thing for whatever language you are using (e.g., for C, call *************** *** 500,508 **** HREF="../mod/mod_mime.html#addhandler" >AddHandler directive: !

        !      AddHandler server-parsed .shtml
        !     
      This indicates that all files ending in ".shtml" in that location (or its descendants) should be parsed. Note that using ".html" will cause all normal HTML files to be parsed, --- 517,528 ---- HREF="../mod/mod_mime.html#addhandler" >AddHandler directive: !

      !

      !
      AddHandler server-parsed .shtml !
      !
      !

      This indicates that all files ending in ".shtml" in that location (or its descendants) should be parsed. Note that using ".html" will cause all normal HTML files to be parsed, *************** *** 669,678 **** configuration files for something that resembles the following and would affect the location where the POST-handling script resides:

      !
        !    <Limit GET>
        !       :
        !   

      Change that to <Limit GET POST> and the problem will probably go away. --- 689,704 ---- configuration files for something that resembles the following and would affect the location where the POST-handling script resides:

      !

      ! !

      !
      <Limit GET> !
      !
          : !
      !
      ! !

      Change that to <Limit GET POST> and the problem will probably go away.