AWStatsの7.0(1.971)でNotPageListから外してもURLページに表示されないバグ
どーしてもgifやjpgがURLページに表示されないのでまいったなーと思ったらバグだった。
How to track jpg hits as page views in awstats 7.0
http://stackoverflow.com/questions/6603972/how-to-track-jpg-hits-as-page-views-in-awstats-7-0
# diff -C3 awstats.pl.org awstats.pl
awstats.pl.org 2011-04-19 17:36:31.000000000 +0900
-
-
- awstats.pl 2011-10-12 11:55:45.000000000 +0900
-
*** 18248,18255 ****
Extension
my $extension = Get_Extension($regext, $urlwithnoquery);
! if ( $NotPageList{$extension} ||
! ($MimeHashLib{$extension}[1]) && $MimeHashLib{$extension}[1] ne 'p') { $PageBool = 0;}
if ( @NotPageFiles && &NotPageFile;( $field[$pos_url] ) ) { $PageBool = 0; }
Analyze: misc tracker (must be before return code)
--- 18248,18256 ----
Extension
my $extension = Get_Extension($regext, $urlwithnoquery);
! ### if ( $NotPageList{$extension} ||
! ### ($MimeHashLib{$extension}[1]) && $MimeHashLib{$extension}[1] ne 'p') { $PageBool = 0;}
! if ( $NotPageList{$extension} ) { $PageBool = 0;}
if ( @NotPageFiles && &NotPageFile;( $field[$pos_url] ) ) { $PageBool = 0; }
Analyze: misc tracker (must be before return code)
---
細かいところまではまだ見てない。
手元に6.0があったけど結構変わってた。
thanks ColinM!! :)