Re: Setting %ENV from modperl handler

2005-09-25 Thread Ray Licon
$ENV{'LOGIN_GROUP'}. The idea was to make values necessary for later page processing easily available to CGI and the result of only a single database call done from the handler. Any ideas? -ray --- "Philip M. Gollucci" <[EMAIL PROTECTED]> wrote: > Ray Licon wrote: &g

Re: Setting %ENV from modperl handler

2005-09-25 Thread Ray Licon
work. By adding some name value pair into the response header, I thought it should show up as an 'HTTP_' prefixed value in %ENV, like HTTP_MY_USER, as in ...$r->headers_out->set('MY_USER' => > 'some_value'); but I get nothing. Ray --- "Phil

Setting %ENV from modperl handler

2005-09-25 Thread Ray Licon
aders_out->add('MY_USER' => 'some_value'); $r->headers_out->set('MY_USER' => $ticket{'user'}); Yet, when I finally call the cgi perl script that simply prints out all %ENV, (which is called through redirection from an html page0, I never see the MY_USER variable. Help! Ray Licon SBC, California

TicketTool port for mod_perl_2.0

2005-07-07 Thread Ray Licon
t yet asked for a request object. Also looking for the equivalent mod_perl_2.x packages to Apache::File and Apache::URI. Any help is appreciated. -thanks Ray Licon

Can't get simple ModPerl::Registery test page working

2005-07-06 Thread Ray Licon
> LoadModule perl_module modules/mod_perl.so > > and my test page is in > "/www/apache2.0.54/perl/rock.pl" > > #!/usr/local/bin/perl > print "Content-type: text/plain\n\n"; > print "mod_perl 2.0 rocks!\n"; > > > When I ask for the page from the server, it merely > attempts to download the text of the page. > > Any ideas? > > -thanks > Ray Licon >