使用注意:

  修改iis.

  例如:$folder=”c:/windows/system32/logfiles/站点日志目录/”; //后面记得一定要带斜杠(/)。

  ( 用虚拟空间的不懂查看你的站点绝对路径?上传个探针查看!

  直接查看法:http://站点域名/iis.

  本地查看法:把日志下载到本地 http://127.0.0.1/iis.

  注意:

  //站点日志目录,注意该目录必须要有站点用户读取权限!

  //如果把日志下载到本地请修改143行的网址为您网站的网址,此操作不是必要操作,不影响分析结果。

  //修改文件名称iis.

  //如果iis日志文件过大,可能会导致程序超时!同时也不建议大家使用!





";
}
unset($temp);
$showpage = "
";
if ($show)
{
$html = pagehtml();
$copy = mycopy();
$htmltitle = "牛仔IIS日志蜘蛛爬行记录分析器 茄咧啡修改版";//请保留,谢谢!
$html = str_replace("[title]",$title,$html);
$html = str_replace("[htmltitle]",$htmltitle,$html);
$html = str_replace("[show]",$show,$html);
$html = str_replace("[count]",$j,$html);
$html = str_replace("[page]",$showpage,$html);
$html = str_replace("[y]",$y,$html);
$html = str_replace("[t]",$t,$html);
$html = str_replace("[h]",$h,$html);
$html = str_replace("[copy]",$copy,$html);
return $html;
}
}
}
function indexhtml()
{
return ’’;
}
function pagehtml()//============显示模板,标签代替显示内容!
{
return ’’;
}
function mycopy()
{
return ’
以下是
牛仔IIS日志蜘蛛爬行记录分析器 V1.1( 作者:牛仔
QQ:172379201
Email:[email protected]
*/
//===================================================
header("content-type:text/html; charset=gb2312");
//站点日志目录,注意该目录必须要有站点用户读取权限!
//如果把日志下载到本地请修改143行的网址为您网站的网址,此操作不是必要操作,不影响分析结果。
//如果修改了文件名称iis. $folder="D:/Vhost/WebRoot/jooker82465/www/wordpress/uploads/W3SVC87164023/"; //后面记得一定要带斜杠 / !
$pagesize = 50;//设置分页显示条数!
//=========================
$type = addslashes($_GET[’type’]);
if ($type)$type = base64_decode($type);
$showfile = addslashes($_GET[’showfile’]);
$page = addslashes($_GET[’page’]);
if (!$page)$page=1;
//============================
//打开目录
if (!$type){
if (file_exists($folder))
{
$fp=opendir($folder);
while(false!=$file=readdir($fp))
{
if($file!=’.’ &&$file!=’..’)
{
$file="$file";
$arr_file[]=$file;
}
}
if(is_array($arr_file))
{
for ($i=count($arr_file)-1;$i>=0;$i--)
{
$indexstr.="
".date("Y-m-d",filectime($folder.$arr_file[$i]))."
".$num[11]."
每页 ".$pagesize." 条 当前".$page."/$pagecount";
$showpage.=" ";
if ($page!=1)
{
$showpage.=" ";
}
if ($page!=$pagecount)
{
$showpage.=" ";
$weei = " ";
}
$showpage.=$weei."









注备说明

正常:表示该面页蜘蛛访问正常,并已经下载。爬行状态返回200。


死链:表示蜘蛛访问的面页不存在或链接错误,爬行状态返回404。


缓存:表示蜘蛛之前已经爬过的面页且该面页未更新过,蜘蛛缓存区已存在该文件,不再下载该面页内容。爬行状态返回304。


注意:蜘蛛爬过的面页不一定会放出来,因为蜘蛛爬回去的数据须经过引擎规则筛选后才会放出来,至于详细请查看引擎收录帮助。



程序名称:牛仔IIS日志蜘蛛爬行记录分析器 - 茄咧啡修改版 修改者:茄咧啡


*******************************************************


原程序名称:牛仔IIS日志蜘蛛爬行记录分析器


原作者:牛仔


QQ:172379201


Email:17gd$163.com ($转换@)


注意:本程序只供大家学习使用,请勿用作商业用途。


’;
}
?>



09-15 06:21