User login

Use OpenDNS
Valid XHTML 1.0 Strict
Valid CSS!

www

Goodbye, Goodyear

I decided it was time to finally retire my old web server. It was several releases behind (O/S and web server both) and kind of a pain to try and keep up to date. Plus, it's been so long since I set up a Drupal installation that I suspected that I might not remember how to do it correctly. (I was right.) So now, it's running from Fedora 12 inside of VirtualBox instead of from Fedora 8 inside of a computer I found in my friend Sarah's trunk.

Perl of the day

M:\>perl -ne "if (m/(\d{2}:\d{2}:\d{2}).*?W3SVC\d+ .*?([A-Z]+) (\S+) (\S+) 80 - (\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}) [A-Za-z].*? ([^23]\d{2}) 0 0/i) {print qq{$1 $5\t$6 $2\t$3 $4\n} }" \\webserver\LogFiles\W3SVC1513329900\ex090303.log

Another hideous regex, but this gives me a decent summary report of:

Timestamp ($1)
Source IP ($5)
HTTP status (that doesn't begin with 2 or 3) ($6)
HTTP method ($2)
URI stem ($3)
Page parameters ($4)