From 28088280bbaea1debba549767fd95a52bcc39cfa Mon Sep 17 00:00:00 2001 From: dgaudet Date: Wed, 18 Feb 1998 21:07:25 +0000 Subject: [PATCH] tired tired tired of these stupid linux questions git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@80244 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/misc/FAQ.html | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/docs/manual/misc/FAQ.html b/docs/manual/misc/FAQ.html index 1deb331605..5b44ad3c8b 100644 --- a/docs/manual/misc/FAQ.html +++ b/docs/manual/misc/FAQ.html @@ -15,7 +15,7 @@

Apache Server Frequently Asked Questions

- $Revision: 1.107 $ ($Date: 1998/02/14 13:06:25 $) + $Revision: 1.108 $ ($Date: 1998/02/18 21:07:25 $)

The latest version of this FAQ is always available from the main @@ -265,6 +265,13 @@ than 1.2.0 and suddenly I have problems with Apache dying randomly or not restarting properly +

  • I'm using RedHat Linux and my .htm files are showing + up as html source rather than being formatted! +
  • +
  • I'm using RedHat Linux 5.0, or some other glibc + based Linux system, and I get errors with the crypt function when + I attempt to build Apache 1.2. +
  • @@ -2232,6 +2239,33 @@ +
  • I'm using RedHat Linux and my .htm files are showing + up as html source rather than being formatted! + +

    RedHat messed up and forgot to put a content type for .htm + files into /etc/mime.types. Edit /etc/mime.types, + find the line containing html and add htm to it. + Then restart your httpd server: +

    +	kill -HUP `cat /var/run/httpd.pid`
    +    
    + Then clear your browsers' caches. (Many browsers won't re-examine + the content type after they've reloaded a page.) +

    +
    + +
  • I'm using RedHat Linux 5.0, or some other glibc + based Linux system, and I get errors with the crypt function when + I attempt to build Apache 1.2. + +

    glibc puts the crypt function into a separate library. Edit your + src/Configuration file and set this: +

    +	EXTRA_LIBS=-lcrypt
    +    
    +

    +
    + -- 2.40.0