Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#!/usr/bin/perl -w # showpic logger # Setup configuration # $home - filesystem path to append to images # $logfile - full path to the logfile you want to use # $ips - $ip addresses you want to ignore in the log # %entries - hash of labels => regexes for log my $home = '/my_path_to/public_html'; my $logfile = '/my_path_to/access_log'; my $ips = '127.0.0.1'; my %entries = ( 'home' => 'comatose/index.html$|comatose/$', 'resume' => 'resume' ); use strict; use Socket; # Open the pic or DIE! my $pic = $home . $ENV{PATH_INFO}; open PIC, "$pic" or die "Could not open $pic: $!"; # Get the size and MIME type my $type = ''; my $size = -s $pic; if ($pic =~ /gif$/) { $type = 'gif'; } elsif ($pic =~ /jpg$/) { $type = 'jpeg'; } else { die "Unknown image type"; } print "Content-type: image/$type\n"; print "Content-length: $size\n\n"; print while (<PIC>); # Now make the log entry my ($sec, $min, $hour, $mday, undef, $year, undef, undef) = localtime($^T); my $date = ('Sun','Mon','Tue','Wed','Thu','Fri', 'Sat')[(localtime)[6]] . ' '; $date .= ('Jan','Feb','Mar','Apr','May','Jun','Jul','Aug', 'Sep','Oct','Nov','Dec')[(localtime)[4]]; # Adjust timestamp to suit taste $year += 1900; foreach (($mday, $sec, $min, $hour)) { $_ = '0' . $_ if ($_ < 10); } $date .= " $mday $hour:$min:$sec " . $year; unless ($ENV{REMOTE_ADDR} =~ /$ips/) { my $hostname; $hostname = gethostbyaddr(inet_aton($ENV{REMOTE_ADDR}), AF_INET) or $hostname = $ENV{REMOTE_ADDR}; my $data = "$date $hostname"; open LOG, ">>$logfile" or last; flock LOG, 2; foreach (keys %entries) { print LOG "$data $_\n" if ($ENV{HTTP_REFERER} =~ /$entries{$_}/); } close LOG; }

In reply to Poor Man's Web Logger by comatose

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (5)
As of 2024-03-29 21:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found