in reply to How do I get the environment variables for the owner of a CGI script?

to get the real username of the running perl script you could do this:
my $owner = getpwuid($<);
I apologize if I misunderstood you question.
  • Comment on Re: How do I get the environment variables for the owner of a CGI script?
  • Download Code