From be16df689383578b7435224dcf5c743d4196e1d2 Mon Sep 17 00:00:00 2001 From: "Roy T. Fielding" Date: Sat, 3 Jul 1999 22:12:50 +0000 Subject: [PATCH] Some answers to problems that often come up on the www.servers.unix newsgroup. Submitted by: Joshua Slive Reviewed by: Roy Fielding git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83428 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/misc/FAQ-A.html | 4 ++-- docs/manual/misc/FAQ-E.html | 28 ++++++++++++++++++++++- docs/manual/misc/FAQ-F.html | 19 ++++++++++++++-- docs/manual/misc/FAQ-I.html | 44 ++++++++++++++++++++++++++++++++++++- 4 files changed, 89 insertions(+), 6 deletions(-) diff --git a/docs/manual/misc/FAQ-A.html b/docs/manual/misc/FAQ-A.html index e4c441fb9a..bf436858de 100644 --- a/docs/manual/misc/FAQ-A.html +++ b/docs/manual/misc/FAQ-A.html @@ -31,7 +31,7 @@

Apache Server Frequently Asked Questions

- $Revision: 1.1 $ ($Date: 1999/06/24 15:02:51 $) + $Revision: 1.2 $ ($Date: 1999/07/03 22:12:49 $)

The latest version of this FAQ is always available from the main @@ -182,7 +182,7 @@ How thoroughly tested is Apache?

- Apache is run on over 1.2 million Internet servers (as of July 1998). It has + Apache is run on over 3 million Internet servers (as of June 1999). It has been tested thoroughly by both developers and users. The Apache Group maintains rigorous standards before releasing new versions of their server, and our server runs without a hitch on over one half of all diff --git a/docs/manual/misc/FAQ-E.html b/docs/manual/misc/FAQ-E.html index 0f1e8e2dc0..a7f27657ee 100644 --- a/docs/manual/misc/FAQ-E.html +++ b/docs/manual/misc/FAQ-E.html @@ -31,7 +31,7 @@

Apache Server Frequently Asked Questions

- $Revision: 1.1 $ ($Date: 1999/06/24 15:02:52 $) + $Revision: 1.2 $ ($Date: 1999/07/03 22:12:49 $)

The latest version of this FAQ is always available from the main @@ -108,6 +108,9 @@

  • My .htaccess files are being ignored.
  • +
  • Why do I get a + "Forbidden" message whenever I try to + access a particular directory?
  • @@ -559,6 +562,29 @@


    +
  • + Why do I get a "Forbidden" message + whenever I try to access a particular directory? +

    + This message is generally caused because either +

      +
    • The underlying file system permissions do not allow the + User/Group under which Apache is running to access the necessary + files; or +
    • The Apache configuration has some access restrictions in + place which forbid access to the files. +
    + You can determine which case applies to your situation by checking the + error log. +

    +

    + In the case where file system permission are at fault, remember + that not only must the directory and files in question be readable, + but also all parent directories must be at least searchable by the + web server in order for the content to be accessible. +

    +
    +
  • diff --git a/docs/manual/misc/FAQ-F.html b/docs/manual/misc/FAQ-F.html index 007c6bf77a..a4442a481e 100644 --- a/docs/manual/misc/FAQ-F.html +++ b/docs/manual/misc/FAQ-F.html @@ -31,7 +31,7 @@

    Apache Server Frequently Asked Questions

    - $Revision: 1.1 $ ($Date: 1999/06/24 15:02:52 $) + $Revision: 1.2 $ ($Date: 1999/07/03 22:12:50 $)

    The latest version of this FAQ is always available from the main @@ -209,7 +209,16 @@ server. To see if this is the case, try running the script standalone from an interactive session, rather than as a script under the server. If you get error messages, this is almost certainly the cause of the - "premature end of script headers" message. + "premature end of script headers" message. Even if the CGI + runs fine from the command line, remember that the environment and + permissions may be different when running under the web server. The + CGI can only access resources allowed for the User and + Group specified in + your Apache configuration. In addition, the environment will not be + the same as the one provided on the command line, but it can be + adjusted using the directives provided by mod_env.

    The second most common cause of this (aside from people not @@ -254,6 +263,12 @@ get the message if the CGI script was killed due to a resource limit.

    +

    + In addition, a configuration problem in suEXEC, mod_perl, or another third party + module can often interfere with the execution of your CGI and cause + the "premature end of script headers" message. +


    diff --git a/docs/manual/misc/FAQ-I.html b/docs/manual/misc/FAQ-I.html index 0f81df6f21..80d51656bf 100644 --- a/docs/manual/misc/FAQ-I.html +++ b/docs/manual/misc/FAQ-I.html @@ -31,7 +31,7 @@

    Apache Server Frequently Asked Questions

    - $Revision: 1.2 $ ($Date: 1999/06/24 15:06:27 $) + $Revision: 1.3 $ ($Date: 1999/07/03 22:12:50 $)

    The latest version of this FAQ is always available from the main @@ -77,6 +77,11 @@

  • Why doesn't Apache include SSL?
  • +
  • How can I attach a footer to my documents + without using SSI? +
  • +
  • Does Apache include a search engine? +
  • @@ -162,6 +167,43 @@


    +
  • + How can I attach a footer to my documents + without using SSI? + +

    + You can make arbitrary changes to static documents by configuring an + + Action which launches a CGI script. The CGI is then + responsible for setting a content-type and delivering the requested + document (the location of which is passed in the + PATH_TRANSLATED environment variable), along with + whatever footer is needed. +

    +

    + Busy sites may not want to run a CGI script on every request, and + should consider using an Apache module to add the footer. There are + several third party modules available through the Apache Module Registry which + will add footers to documents. These include mod_trailer, PHP + (php3_auto_append_file), and mod_perl + (Apache::Sandwich). +

    +
    +
  • +
  • + Does Apache include a search engine? + +

    Apache does not include a search engine, but there are many good + commercial and free search engines which can be used easily with + Apache. Some of them are listed on the Web Site Search + Tools page. Open source search engines that are often used with + Apache include ht://Dig and SWISH-E. +

    +
    +
  • -- 2.40.0