Can anyone help with this? On a script that is writing to a file I'm able to
get some of the variables but not others. Why?



$ipaddress = "$ENV{'REMOTE_ADDR'}";
###### Works Fine

$where_from = "$ENV{'HTTP_REFERER'}";
###### only seems to report the current page being viewed

$host = "$ENV{'REMOTE_HOST'}";
####### Not working

$server = "$ENV{'SERVER_NAME'}";
####### Not working

$user = "$ENV{'REMOTE_USER'}";
####### Not working

$serveraddrs = "$ENV{'SERVER_ADDR'}";
####### Not working

$serveradmin = "$ENV{'SERVER_ADMIN'}";
####### Not working

$servername = "$ENV{'SERVER_NAME'}";
####### Not working

if ($ipaddress =~ /$yourip/) {
}
else {
     open (LOG, ">>$logfile");
     print LOG "<LI> $ENV{'REMOTE_HOST'} -
$ENV{'HTTP_USER_AGENT'} -$ENV{'SERVER_NAME'} - $FULLDATE -
$ENV{'HTTP_REFERER'} - $user - $server - $serveraddrs - $serveradmin -
$servername<BR> \n";
     close (LOG);

Thanks

 - Naika
   http://www.naikaonline.com



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to