Forum Moderators: DixonJones
Webtrends lists our most and least popular pages. What I need it to do is just provide a list of page popularity from most popular to least popular, listing all the pages it can. Obviously if a page was never accessed then it wouldn't list it, but assuming all 5000 pages on our site are accessed at least once, is it possible to get webtrends to make a list of the page popularity of ALL pages?
We're also investigating other software options so if anyone can think of software that does specifically what I mention above (ie. not just a top 10/bottom 10 list of pages, but rather an entire list of page popularity for all pages on a site) then we're open to suggestions.
****EDIT**** We're using version 5.5b ****EDIT****
Thanks.
awk '($7 ~ /\.html$/){print $7}' combined_log ¦ sort ¦ uniq -c ¦ sort -r ;)