Index: [Article Count Order] [Thread]

Date:  Fri, 3 Mar 2006 14:33:04 +0100
From:  Michael Stauber <bq (at mark) solarspeed.net>
Subject:  [coba-e:04246] Re: .htaccess causes an internal server error
To:  coba-e (at mark) bluequartz.org
Message-Id:  <200603031433.04282.bq (at mark) solarspeed.net>
In-Reply-To:  <BAY101-W501011C566377F9DDDAE189EA0 (at mark) phx.gbl>
References:  <BAY101-W501011C566377F9DDDAE189EA0 (at mark) phx.gbl>
X-Mail-Count: 04246

Hi David,

> Well, I got everything working (Thanks Michael), and everything works fine
> except for my .htaccess files. It causes an internal server error.  I have
> tried turning on "allow override" to "all" with no success.

On BlueQuartz you need to change the .htaccess files a bit for them to work, 
as that functionality is provided by an extra PKG that Brian Smith from 
NuOnce Networks kindly provided:

http://www.nuonce.net/mod_external_lib.php

So use one of the three methods shown below:

#Basic configuration for any users:
AuthAuthoritative On
AuthType Basic
AuthName Your_Eyes_only
AuthExternal pwauth
require valid-user

#Only allow 1 specific user to authenticate
AuthAuthoritative On
AuthType Basic
AuthName Your_Eyes_only
AuthExternal pwauth
require valid-user USERNAME_HERE

#Allow group authentication
AuthAuthoritative On
AuthType Basic
AuthName Your_Eyes_only
AuthExternal pwauth
GroupExternal unixgroup
require group site1 

-- 

With best regards,

Michael Stauber