diff options
author | dgaudet <dgaudet@unknown> | 1998-02-18 21:07:25 +0000 |
---|---|---|
committer | dgaudet <dgaudet@unknown> | 1998-02-18 21:07:25 +0000 |
commit | 28088280bbaea1debba549767fd95a52bcc39cfa (patch) | |
tree | 58be51a0f47c493efe623cd7a97cebb3f7c6b781 | |
parent | fb522592e34256795055750e2b5b81a0ba9e5dc1 (diff) | |
download | httpd-28088280bbaea1debba549767fd95a52bcc39cfa.tar.gz |
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
-rw-r--r-- | docs/manual/misc/FAQ.html | 36 |
1 files changed, 35 insertions, 1 deletions
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 @@ <!--#include virtual="header.html" --> <H1 ALIGN="CENTER">Apache Server Frequently Asked Questions</H1> <P> - $Revision: 1.107 $ ($Date: 1998/02/14 13:06:25 $) + $Revision: 1.108 $ ($Date: 1998/02/18 21:07:25 $) </P> <P> 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</a> </li> + <li><a href="#redhat-htm">I'm using RedHat Linux and my .htm files are showing + up as html source rather than being formatted!</a> + </li> + <li><a href="#glibc-crypt">I'm using RedHat Linux 5.0, or some other glibc + based Linux system, and I get errors with the <code>crypt</code> function when + I attempt to build Apache 1.2.</a> + </li> </OL> </LI> </UL> @@ -2232,6 +2239,33 @@ </li> + <li><a name="redhat-htm"><strong>I'm using RedHat Linux and my .htm files are showing + up as html source rather than being formatted!</strong></a> + + <p>RedHat messed up and forgot to put a content type for <code>.htm</code> + files into <code>/etc/mime.types</code>. Edit <code>/etc/mime.types</code>, + find the line containing <code>html</code> and add <code>htm</code> to it. + Then restart your httpd server: + <pre> + kill -HUP `cat /var/run/httpd.pid` + </pre> + Then <b>clear your browsers' caches</b>. (Many browsers won't re-examine + the content type after they've reloaded a page.) + </p> + <hr> + + <li><a name="glibc-crypt"><strong>I'm using RedHat Linux 5.0, or some other glibc + based Linux system, and I get errors with the <code>crypt</code> function when + I attempt to build Apache 1.2.</strong></a> + + <p>glibc puts the crypt function into a separate library. Edit your + <code>src/Configuration</code> file and set this: + <pre> + EXTRA_LIBS=-lcrypt + </pre> + </p> + <hr> + <!-- Don't forget to add HR tags at the end of each list item.. --> </OL> |