On Sat, 17 Feb 2001, Erdmut Pfeifer wrote:
> On Sat, Feb 17, 2001 at 08:56:40PM +1100, Jie Gao wrote:
> >
> > %LocationMatch = (
> > '^/(myscript|cgi-bin)/' => {
> > 'AuthName' => 'Elephant',
> > 'AuthType' => 'Animals',
> > 'AuthDBMUserFile' => '/mydir/userdbm',
> > 'AuthDBMGroupFile' => '/mydir/groupdbm',
> > 'PerlAuthenHandler' => 'Animals::ElephantCookieHandler->authen',
> > 'PerlSetVar' => (
> > [ 'VirtualServerName' => qw(www.myhouse.org) ],
> > [ 'AuthCookieDebug' => 7 ],
> > ),
>
> syntactically, you need an array reference here, so try using:
>
> 'PerlSetVar' => [
> [ 'VirtualServerName' => qw(www.myhouse.org) ],
> [ 'AuthCookieDebug' => 7 ],
> ],
You are right. I totally missed that. Thanks a lot!
But I still don't know what to do with the following:
<Limit GET POST>
require group group1 group2
</Limit>
<Limit PUT>
require group group1
</Limit>
Anybody has any idea?
Jie