AWStat导致所有0个统计数据

时间:2015-03-24 18:36:25

标签: batch-file logging awstats

我正在尝试使用awstat从我的日志文件构建html页面。我的日志文件是在' C:\ inetpub \ stats \ awstats-7.3 \ wwwroot \ sites \ itsMe_LOGS'中创建的。当我运行AWStat时,我没有错误,它创建了一个combined.log,它创建了大约22个html文件,如下所示:

enter image description here

我不确定出了什么问题,但我知道有正确的日志,并且网站处于活动状态。如果有任何其他细节可以帮助解决这个问题,请告诉我,以便我可以添加它。正确方向的任何一点都会有所帮助。谢谢。

批处理文件

::set up base configurations for itsMe
SET HOST_CONFIG=itsMe
SET BASE_DIR="C:\inetpub\stats\awstats-7.3\wwwroot"

echo Combining log files for .%HOST_CONFIG%
call perl %BASE_DIR%\tools\logresolvemerge.pl -showsteps %BASE_DIR%\sites\%HOST_CONFIG%\*.log > %BASE_DIR%\sites\%HOST_CONFIG%\combined.log

echo Updating statistics for .%HOST_CONFIG% 
call perl %BASE_DIR%\cgi-bin\awstats.pl -config=%HOST_CONFIG% -update

echo Generating reports for .%HOST_CONFIG%
call perl %BASE_DIR%\cgi-bin\awstats.pl -config=%HOST_CONFIG% -output -staticlink > wwwroot\sites\%HOST_CONFIG%\awstats.%HOST_CONFIG%.MAIN_SUMMARY.html
call perl %BASE_DIR%\tools\awstats_buildstaticpages.pl -awstatsprog=%BASE_DIR%\cgi-bin\awstats.pl -config=%HOST_CONFIG% -update -dir=wwwroot\sites\%HOST_CONFIG%

1 个答案:

答案 0 :(得分:0)

AWStats正在运行的方式,它正在生成带有一个已损坏目录的组合.log文件的html页面。我跟踪它的方式是我尝试将我的combined.log文件移动到我的html页面目录并再次运行我的批处理文件。从长远来看,我需要更改我的combined.log文件生成的目录。