Hey guys,
I have hosted a couple files on my blog and am looking for a way to track or monitor how many times they have been downloaded?
What's the best way to do this? Is there a plugin? Some code maybe?
Hey guys,
I have hosted a couple files on my blog and am looking for a way to track or monitor how many times they have been downloaded?
What's the best way to do this? Is there a plugin? Some code maybe?
This is the sort of thing that shows up in site logs.
Yeah, but I am looking for something more easier/user friendly.
The site log log is too hard?
grep 'filename.ext' /var/log/apache2/access.log | awk '{print $1}' | sort | uniq | wc -l
What could be simpler? Ok, I'm being a jerk. :)
This topic has been closed to new replies.