eldy / AWStats

AWStats Log Analyzer project (official sources)
https://www.awstats.org
364 stars 121 forks source link

Incorrect syntax in mime.pm prevents new log scanning in 7.8 #161

Open brentil opened 4 years ago

brentil commented 4 years ago

The mime.pm file is missing a , on line 59 at the end of that line. Since it's not there it throws an error when trying to scan new log files.

::EDIT:: I see it was fixed in #158 but that fix is not in the ZIP file from the official website.

String found where operator expected at cgi-bin/lib/mime.pm line 60, near "'ebook'" (Missing semicolon on previous line?) syntax error at cgi-bin/lib/mime.pm line 60, near "'ebook'" Compilation failed in require at cgi-bin\awstats.pl line 2239.

'torrent',   'BitTorrent File',
'gis',       'GIS File'
'ebook',     'Ebook File'

Should be;

'torrent',   'BitTorrent File',
'gis',       'GIS File'**,**
'ebook',     'Ebook File'
misilot commented 1 year ago

Wonder if we could get a 7.8.1 version released?

misilot commented 1 year ago

Same as #160