RE: Where do I put my code?

2000-06-14 Thread Abraham, Thomas (M.)
. Thomas -Original Message- From: Ariel Manzur [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 13, 2000 2:41 PM To: [EMAIL PROTECTED] Subject: Re: Where do I put my code? Is there any way to know if the module is runnung? I put the .pm file inside /usr/lib/perl5/site_perl/5.005/i386-linux

Where do I put my code?

2000-06-13 Thread Ariel Manzur
Hi.. I need apache to do this: always ask for authentication, accept any username/password as valid, and set an enviroment variable with the password, so I can retrieve it on a CGI script later. I wrote this code: Perl my $r = Apache-request; my $username = $r-connection-user; my($ret,

Re: Where do I put my code?

2000-06-13 Thread Ariel Manzur
Hi.. this is very helpful.. thanks.. :-) Now, I have one last question. Where do I put the "pachage Test::AuthAny" code? At 09:24 13/06/2000 -0400, darren chamberlain wrote: I need apache to do this: always ask for authentication, accept any username/password as valid, and set an enviroment

Re: Where do I put my code?

2000-06-13 Thread Ariel Manzur
Is there any way to know if the module is runnung? I put the .pm file inside /usr/lib/perl5/site_perl/5.005/i386-linux (that's where Apache.pm is) and then put: AuthType Basic AuthName "Name of the Authentcation Realm" require valid-user