in reply to get user name

You could try $ENV{REMOTE_USER}. Not sure how generic that is, but it works on our Solaris boxes.

--Dave

Replies are listed 'Best First'.
Re: Re: get user name
by vagnerr (Prior) on Jan 21, 2002 at 20:11 UTC
    $ENV{REMOTE_USER} will work as long as some sort of basic authentication has been performed (IE those times when a little box pops up on the users browser asking them for a user and password). For example if you are restricting part of your site with .htpassword files or using AuthCookie etc.

    However if the area of the site is public or a more complex authentication is in place (ie nice cute forms with submit buttons) then $ENV{REMOTE_USER} will remain undefined.

    ---If it doesn't fit use a bigger hammer

      Thanks for the helpful explanation vagnerr. The tidbits of useful knowledge that come from posts like yours are one of the great values that PM provides.

      ++ to you!
      --Dave