Return-Path: Delivered-To: apmail-perl-modperl-archive@www.apache.org Received: (qmail 51533 invoked from network); 6 Apr 2005 17:27:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 6 Apr 2005 17:27:50 -0000 Received: (qmail 21646 invoked by uid 500); 6 Apr 2005 17:27:31 -0000 Delivered-To: apmail-perl-modperl-archive@perl.apache.org Received: (qmail 21605 invoked by uid 500); 6 Apr 2005 17:27:31 -0000 Mailing-List: contact modperl-help@perl.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Delivered-To: mailing list modperl@perl.apache.org Received: (qmail 21538 invoked by uid 99); 6 Apr 2005 17:27:30 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,RCVD_BY_IP,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of tagireddy@gmail.com designates 64.233.170.207 as permitted sender) Received: from rproxy.gmail.com (HELO rproxy.gmail.com) (64.233.170.207) by apache.org (qpsmtpd/0.28) with ESMTP; Wed, 06 Apr 2005 10:27:30 -0700 Received: by rproxy.gmail.com with SMTP id f1so390462rne for ; Wed, 06 Apr 2005 10:27:28 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=oIJJSgF5HOKaeP/MLM/I6IWgvkt1jAk+TC5/+8yrtdgs/cHXvaylX8MJY9zuKUd+1LopuWl61aX0reARiSp5T+YmPixXFh6Nd27Efe2NKF82RKA2xuU+O6ITR8MFgCHxWK7hIa2245INgvNHOKdilsuQjjpMV6HKFDsrSscTz0U= Received: by 10.38.67.25 with SMTP id p25mr994550rna; Wed, 06 Apr 2005 10:27:26 -0700 (PDT) Received: by 10.38.152.40 with HTTP; Wed, 6 Apr 2005 10:27:25 -0700 (PDT) Message-ID: Date: Wed, 6 Apr 2005 13:27:25 -0400 From: raja agireddy Reply-To: raja agireddy To: modperl@perl.apache.org Subject: Alias is not being recognized undet the Directory Directive In-Reply-To: <42541A3A.2090403@modperlcookbook.org> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit References: <008301c53ac8$f9ee4760$142afea9@microsoft.com> <42541A3A.2090403@modperlcookbook.org> X-Virus-Checked: Checked X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N I have installed modperl 2.0, Apache 2.0 and AuthenSmb. Alias is not being recognized under the "Directory" directive in the httpd.conf file. The same alis works for "Location" directive. The work around I am using is giving the full path of the directory and it works. Please let me know if you have any suggestions or reason for this behaviour. Under the Directory directive I am using PerlAuthenHandler. Following is the usage > > AuthName "ISO Authentication" > AuthType Basic > PerlAuthenHandler Apache::AuthenSmb > PerlSetVar myPDC acdc01 > PerlSetVar myBDC acdc02 > PerlSetVar myDOMAIN xxx.com > Require valid-user > Options FollowSymLinks > > > Where as when I use the following the authentication box pops up. > > AuthName "ISO Authentication" > AuthType Basic > PerlAuthenHandler Apache::AuthenSmb > PerlSetVar myPDC acdc01 > PerlSetVar myBDC acdc02 > PerlSetVar myDOMAIN xxx.com > Require valid-user > Options FollowSymLinks > > Regards, Raja