From: barnboy%trilobyte.net <>
Date: Wed, 21 Nov 2001 01:09:38 +0000 (+0000)
Subject: Added bit about needing proper permissions in order
X-Git-Tag: bugzilla-2.16rc1~313
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=18dc27adf2a2cac082c369cff6b87fe0815d4db0;p=thirdparty%2Fbugzilla.git
Added bit about needing proper permissions in order
for .htaccess to function. See bug 97668.
---
diff --git a/docs/sgml/installation.sgml b/docs/sgml/installation.sgml
index 37d339e937..6c2aeb39ef 100644
--- a/docs/sgml/installation.sgml
+++ b/docs/sgml/installation.sgml
@@ -1,4 +1,4 @@
-
+
Installation
@@ -1203,6 +1203,37 @@ bash# ./checksetup.pl
+
+
+ The default .htaccess file may not provide adequate access
+ restrictions, depending on your web server configuration.
+ Be sure to check the <Directory> entries for your
+ Bugzilla directory so that the .htaccess
+ file is allowed to override web server defaults. For instance,
+ let's assume your installation of Bugzilla is installed to
+ /usr/local/bugzilla. You should have
+ this <Directory> entry in your httpd.conf
+ file:
+
+
+
+
+
+ Options +FollowSymLinks +Indexes +Includes +ExecCGI
+ AllowOverride All
+
+]]>
+
+
+
+
+ The important part above is AllowOverride All
.
+ Without that, the .htaccess file created by
+ checksetup.pl will not have sufficient
+ permissions to protect your Bugzilla installation.
+
+
If you are using Internet Information Server or other web
server which does not observe .htaccess
diff --git a/docs/xml/installation.xml b/docs/xml/installation.xml
index 37d339e937..6c2aeb39ef 100644
--- a/docs/xml/installation.xml
+++ b/docs/xml/installation.xml
@@ -1,4 +1,4 @@
-
+
Installation
@@ -1203,6 +1203,37 @@ bash# ./checksetup.pl
+
+
+ The default .htaccess file may not provide adequate access
+ restrictions, depending on your web server configuration.
+ Be sure to check the <Directory> entries for your
+ Bugzilla directory so that the .htaccess
+ file is allowed to override web server defaults. For instance,
+ let's assume your installation of Bugzilla is installed to
+ /usr/local/bugzilla. You should have
+ this <Directory> entry in your httpd.conf
+ file:
+
+
+
+
+
+ Options +FollowSymLinks +Indexes +Includes +ExecCGI
+ AllowOverride All
+
+]]>
+
+
+
+
+ The important part above is AllowOverride All
.
+ Without that, the .htaccess file created by
+ checksetup.pl will not have sufficient
+ permissions to protect your Bugzilla installation.
+
+
If you are using Internet Information Server or other web
server which does not observe .htaccess