如何在 awstats 7.0 中跟踪 jpg 点击量作为页面浏览量

发布于 2024-11-18 19:51:05 字数 485 浏览 1 评论 0原文

我已经设置了 awstats 来读取 cloudfront 日志文件,并且我需要能够生成特定文件点击率的报告,这些文件是用于横幅的图像。我更改了“NotPageList”选项以排除图像文件,并删除了 awstats*.txt 数据文件并运行了新的更新,但 jpg 图像仍然不计为页面。我需要做什么才能使其正常工作?

LogFile="/var/log/cloudfront-logs/mydomain.log"
LogFormat="%time2 %cluster %bytesd %host %method %virtualname %url %code %referer %ua %query"
LogSeparator="\t"
SiteDomain="d2fxxxxxx.cloudfront.net"
HostAliases="d2fxxxxxx.cloudfront.net"
NotPageList="css js class bmp ico rss xml swf"
DecodeUA=1

I've setup awstats to read cloudfront log files and I need to be able to generate reports for hits on specific files, which are images used for banners. I changed "NotPageList" options to exclude the image files and I deleted the awstats*.txt data files and ran a fresh -update but the jpg images are still not counted as pages. What do I need to do to get this working?

LogFile="/var/log/cloudfront-logs/mydomain.log"
LogFormat="%time2 %cluster %bytesd %host %method %virtualname %url %code %referer %ua %query"
LogSeparator="\t"
SiteDomain="d2fxxxxxx.cloudfront.net"
HostAliases="d2fxxxxxx.cloudfront.net"
NotPageList="css js class bmp ico rss xml swf"
DecodeUA=1

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

长途伴 2024-11-25 19:51:05

看起来对于请求成为由 awstats 中的 mime 类型确定的“页面”有一个额外的标准,但没有记录。因此,为了修复我的本地安装的这个问题,我修改了代码以删除此 mime 类型测试。

AWStats 7.0 版本 1.971 awstats.pl 第 18219 行

之前:

if ( $NotPageList{$extension} ||
($MimeHashLib{$extension}[1]) && $MimeHashLib{$extension}[1] ne 'p') { $PageBool = 0;}

之后:

if ( $NotPageList{$extension} ) { $PageBool = 0;}

Looks like there is an additional criteria for a request to be a "page" determined by mime type in awstats which is not documented.. So, to fix this for my local install I hacked the code to remove this mime type test.

AWStats 7.0 build 1.971 awstats.pl line 18219

Before:

if ( $NotPageList{$extension} ||
($MimeHashLib{$extension}[1]) && $MimeHashLib{$extension}[1] ne 'p') { $PageBool = 0;}

After:

if ( $NotPageList{$extension} ) { $PageBool = 0;}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文