Accessing environment variables prior to invoking thecontenthandler.

2003-07-31 Thread Mark Deepak Puttnam
Only PERL_SEND_HEADER=On. No other env. variables.

I did run tests by clicking on links to check to see if the HTTP_REFERER
is being set. 

Mark.



Re: Accessing environment variables prior to invoking thecontenthandler.

2003-07-31 Thread Perrin Harkins
On Thu, 2003-07-31 at 16:15, Mark Deepak Puttnam wrote:
 Only PERL_SEND_HEADER=On. No other env. variables.

And you haven't turned off PerlSetupEnv in your httpd.conf?

- Perrin


Accessing environment variables prior to invoking thecontenthandler.

2003-07-31 Thread Mark Puttnam
Hi Perrin,

my $referer = $r-header_in(Referer);
Thanks, the above statement did give me the value.

Mark