Fix for hits.pl for Quarter changes
Brought to you by:
mikefranks
When transitioning to a new quarter, the hits.pl script
doesn't auto-create the directory to store new web-hits
data. Fixing this is a matter of adding one line of
code. Rahter than download the small file, you can
just search for $LOG=$ACCESS_LOG; and add the following
line after it:
if (! -e "$base/$quarter") {mkdir "$base/$quarter",
0770;}
hits.pl