Forum Moderators: DixonJones
Any affordable software out there offering these things, at least? Sticky me if you can't mention the name.
Sorry I can't help, I'm using a piece of freeware, but would like the same things. I hope whoever codes these applications reads your post.
I want to add another suggestion, one that should be a piece of cake to code: Possible Hot Linked Images.
A separate table of .gif, .jpg etc. images which are NOT called by your own pages, but rather directly linked from outside pages. Some of those may be by permission, but it would be super easy to see which are not.
Here's another suggestion: A Garbage Stripping algorithm that cuts access_log files to half their size or less by removing junk like Mozilla/4.0 (compatible; MSIE 6.0; .NET CLR 1.2.3.4.. Windows 98; FunWebProducts 1.2.3; AOL 9.0 Macintosh Opera Gecko you name it.
I don't need to see HTTP/1.1 a thousand times.
123.34.345 - - [03/OCT/2004;11:35:19 could be cut down to say
123.34.345 - 03OCT04 11:35:19 which is more readable anyway.
Am I alone in this? Any such feature should be optional of course.
Best - Larry
eg. who's hot-linking your images and not already blocked?
awk -F\" '($3 !~ / 403 / && $2 ~ /^GET.*(jpg¦gif)/){print $4}' combined_log \
¦ sort ¦ uniq -c ¦ sort