in reply to please help to exclude my own IP address.

how about wrapping it in an if statment.

if($ENV{REMOTE_ADDR} =~ '10.10.0.1') { your code }

Replies are listed 'Best First'.
Re^2: please help to exclude my own IP address.
by gman (Friar) on May 02, 2005 at 18:19 UTC
    Sorry that should be
    if($ENV{REMOTE_ADDR} ne '10.10.0.1') { your code }
      You could also flip the logic and say something like:

      exit if ($ENV{REMOTE_ADDR} =~ '10.10.0.1');
      where exactly should goes this line?