ANNOUNCE: Apache::RedirectDBI 0.02

2001-10-05 Thread George Sanderson
I needed a module that would allow users' to login (authenticate) using a single HREF link and then be redirected to their individual web site (URL). I searched CPAN and found Apache::RedirectDBI. It was very close to what I needed, so I modified it so that it would read a URL field from the user

Re: backticks in mod_perl

2001-10-05 Thread Brian Reichert
On Fri, Oct 05, 2001 at 10:51:49PM +0200, EXP wrote: > Hi > > Simple question, it seems that the backticks won't work as expected in > mod_perl scripts. 'As expected'? What does that mean? > Is there some module like Apache::SubProcess to read the output of a > command into an array? What's

Re: [patch] overriding per directory PerlSetEnv (including bugreport)

2001-10-05 Thread ___cliff rayman___
much more well understood this time. thank you. the developers monitor this list - so if your patch has merit, i'm sure they will either commit it or something similar. YAMAMOTO Kengo wrote: > Thank you responding. > > On Thu, 4 Oct 2001 13:48:19 -0400, > Robert Landrum <[EMAIL PROTECTED]> wro

backticks in mod_perl

2001-10-05 Thread EXP
Hi Simple question, it seems that the backticks won't work as expected in mod_perl scripts. Is there some module like Apache::SubProcess to read the output of a command into an array? (my @out = `command`;) I am sure the answer is somewhere out there, but I couldn't find it. thx. BYe! EXP 3D

Re: [patch] overriding per directory PerlSetEnv (including bugreport)

2001-10-05 Thread YAMAMOTO Kengo
Thank you responding. On Thu, 4 Oct 2001 13:48:19 -0400, Robert Landrum <[EMAIL PROTECTED]> wrote: > Couldn't you do the same thing by reversing the ordering of your > Directory entries... On Thu, 04 Oct 2001 10:43:31 -0700, ___cliff rayman___ <[EMAIL PROTECTED]> wrote: > i don't think it is su

RE: Setting Perl-stuff inside section

2001-10-05 Thread Geoffrey Young
> -Original Message- > From: Perrin Harkins [mailto:[EMAIL PROTECTED]] > Sent: Friday, October 05, 2001 2:26 PM > To: Scott Lanning; [EMAIL PROTECTED] > Subject: Re: Setting Perl-stuff inside section > > > > @PerlModule = qw(Blah); # add others to the list > > Might as well just say

Re: Setting Perl-stuff inside section

2001-10-05 Thread Perrin Harkins
> @PerlModule = qw(Blah); # add others to the list Might as well just say "use Blah;", I think. - Perrin

Re: Setting Perl-stuff inside section

2001-10-05 Thread Scott Lanning
On Fri, 5 Oct 2001, raptor wrote: >How can I set in section, say : > >PerlModule Blah.pm >PerlSetVar XXX On >PerlSetVar YYY Off @PerlModule = qw(Blah); # add others to the list push @PerlSetVar, [ XXX => 'On' ]; push @PerlSetVar, [ YYY => 'Off' ]; There's good examples in the eagle book, ch

Re: webDAV server in mod_perl?

2001-10-05 Thread Craig McLane
There was some talk on the mod_perl dev list a week or so ago by Gerald Richter of using some of the XS auto generation functionality in mod_perl 2.0 to wrap mod_dav inside perl. Here is work he has done posted to the web_dav list: http://marc.theaimsgroup.com/?l=dav-announce&m=100139218624911&

Setting Perl-stuff inside section

2001-10-05 Thread raptor
hi, How can I set in section, say : PerlModule Blah.pm PerlSetVar XXX On PerlSetVar YYY Off and similar... $VirtualHost{address} = { PerlModule => 'Blah.pm', PerlSetVar => { XXX => 'On', YYY => 'Off' } }; !!?! Thanx = iVAN [EMAIL PROTECTED] =

Re: webDAV server in mod_perl?

2001-10-05 Thread Robin Berjon
On Friday 05 October 2001 13:03, tim fulcher wrote: > Frankly I'm surprised no one seems to have attempted a Perl server side > webDAV implementation by now :-) I've been thinking about it for a while, but haven't had the time to get down and have a close look at the details. A completely hookab

webDAV server in mod_perl?

2001-10-05 Thread tim fulcher
Hi I'm arriving at the conclusion that a few of the things I'm trying to do in my application are basically pseudo webDAV type actions such as PROPFIND & PROPATCH, but currently all handled on the server side via Perl & PHP. I'm looking to see whether I could move to a proper webDAV type solution

proxy block list module?

2001-10-05 Thread Mark Tiramani
I was looking for an Apache module to handle access control via URL/regex that reads a list of rules from file. I find it hard to believe no-one has done this yet so appologies in advance if I just didn't search properly. I tried searching all the usual sources but came up blank so I adapted t