Re: getting *any* variables out of the server environment

2003-06-09 Thread Ryan Muldoon
On Mon, 2003-06-09 at 15:24, Perrin Harkins wrote: > [ Please keep it on the list. ] > Sorry about that! > On Mon, 2003-06-09 at 16:12, Ryan Muldoon wrote: > > > Ryan, can you post a more complete code example? > > > > > > - Perrin > > Here

Re: getting *any* variables out of the server environment

2003-06-09 Thread Ryan Muldoon
Actually, upon flushing my browser cache and checking again, I can in fact read the MOD_PERL environment variable just fine. But still no luck on any mod_ssl related variables. --Ryan

Re: getting *any* variables out of the server environment

2003-06-09 Thread Ryan Muldoon
On Mon, 2003-06-09 at 14:35, Geoffrey Young wrote: > Ryan Muldoon wrote: > > Geoffrey, > > > > Thanks for the explanation. Unfortunately, I think I am still a little > > unclear as to how to proceed. If I understand you correctly, my first > >

Re: getting *any* variables out of the server environment

2003-06-09 Thread Ryan Muldoon
chwartz wrote: > >>>>> "Ryan" == Ryan Muldoon <[EMAIL PROTECTED]> writes: > > Ryan> Geoffrey, > Ryan> Thanks for the explanation. Unfortunately, I think I am still a little > Ryan> unclear as to how to proceed. If I understand you cor

Re: getting *any* variables out of the server environment

2003-06-09 Thread Ryan Muldoon
> > Issac > > - Original Message - > From: "Ryan Muldoon" <[EMAIL PROTECTED]> > To: "Geoffrey Young" <[EMAIL PROTECTED]> > Cc: <[EMAIL PROTECTED]> > Sent: Monday, June 09, 2003 10:13 PM > Subject: Re: getting *any* variables out

Re: getting *any* variables out of the server environment

2003-06-09 Thread Ryan Muldoon
I didn't. But I just set that, and it didn't seem to make a difference --Ryan On Mon, 2003-06-09 at 14:16, Randy Kobes wrote: > On Mon, 9 Jun 2003, Ryan Muldoon wrote: > > > Geoffrey, > > > > Thanks for the explanation. Unfortunately, I think

Re: getting *any* variables out of the server environment

2003-06-09 Thread Ryan Muldoon
env('VARIABLE'), and it definitely does not work. :( --Ryan On Mon, 2003-06-09 at 14:04, Perrin Harkins wrote: > On Mon, 2003-06-09 at 14:49, Ryan Muldoon wrote: > > I tried that as well (and just re-tried). My understanding is that the > > %ENV hash only gets upda

Re: getting *any* variables out of the server environment

2003-06-09 Thread Ryan Muldoon
httpd.conf, but it doesn't seem to make any kind of difference. To make sure it isn't just mod_ssl being lame for some reason, I've tried it with DOCUMENT_ROOT and other standard ENV variables. But to no avail. :( --Ryan On Mon, 2003-06-09 at 13:59, Geoffrey Young wr

RE: getting *any* variables out of the server environment

2003-06-09 Thread Ryan Muldoon
is applies to mp1. > > mma > > > -Original Message- > > From: Ryan Muldoon [mailto:[EMAIL PROTECTED] > > Sent: Monday, June 09, 2003 11:30 AM > > To: [EMAIL PROTECTED] > > Subject: getting *any* variables out of the server environment > > > > &

Re: getting *any* variables out of the server environment

2003-06-09 Thread Ryan Muldoon
; On Mon, 2003-06-09 at 14:29, Ryan Muldoon wrote: > > I'm not able to get *any* variables out from the apache server > > environment. > > Did you try the normal $ENV{'VARIABLE'} approach? > > - Perrin

getting *any* variables out of the server environment

2003-06-09 Thread Ryan Muldoon
I'm not able to get *any* variables out from the apache server environment. As you might be able to imagine, this is extremely frustrating, and inhibits my ability to do anything of use with mod_perl. My basic technique has been: my $uri = $r->uri; return unless $r->is_main();

problem with pulling variables from mod_ssl

2003-06-06 Thread Ryan Muldoon
I'm trying to write an apache authentication module that uses client certificates for authentication. Basically, all I'm trying to do is use what mod_ssl does for cert verification, and then set REMOTE_USER. I wrote to the list last week about a segfault, which was resolved thanks to the help you

Re: trouble with using $r->lookup_uri()

2003-06-03 Thread Ryan Muldoon
Aaron, It looks like this did the trickmy module doesn't quite work yet, but it isn't segfaulting anymore. Thanks! --Ryan On Fri, 2003-05-30 at 22:24, Aaron Ross wrote: > > my $uri = $r->uri; > > my $subr = $r->lookup_uri($uri); > > Is this recursing? the subrequest

trouble with using $r->lookup_uri()

2003-05-31 Thread Ryan Muldoon
I'm trying to write a authentication handler using mod_perl, and am encountering some difficulty. I have isolated my problem to the usage of the lookup_uri($uri) function call - whenever I call it, my module segfaults. I have tested the input with both a variable string, and just a quoted string,