使用注意:
修改iis.php文件中iis日志的絕對路徑
例如:$folder=”c:/windows/system32/logfiles/站點日志目錄/”; //後面記得一定要帶斜槓(/)。
( 用虛擬空間的不懂查看你的站點絕對路徑?上傳個探針查看!
直接查看法:http://站點域名/iis.php
本地查看法:把日志下載到本地 http://127.0.0.1/iis.php )
注意:
//站點日志目錄,注意該目錄必須要有站點用戶讀取權限!
//如果把日志下載到本地請修改143行的網址為您網站的網址,此操作不是必要操作,不影響分析結果。
//修改文件名稱iis.php 需要同時修改對應代碼 ctrl+h 把 iis.php全部替換成您要修改的文件名 否則程序運行出錯。
//如果iis日志文件過大,可能會導致程序超時!同時也不建議大家使用!
以下是PHP源代碼:
[code]
<?php
/*
牛仔IIS日志蜘蛛爬行記錄分析器 V1.1(PHP GB2312 版)
作者:牛仔
QQ:172379201
Email:
[email protected] */
//===================================================
header("content-type:text/html; charset=gb2312");
//站點日志目錄,注意該目錄必須要有站點用戶讀取權限!
$folder="C:/WINDOWS/system32/LogFiles/W3SVC1155699908/";//後面記得一定要帶斜槓!
$pagesize = 25;//設置分頁顯示條數!
//=========================
$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.="<tr><td height=\"25\" width=\"25%\">".date("Y-m-d",filectime($folder.$arr_file[$i]))."</td>
<td height=\"25\" width=\"25%\" align=\"center\"><a href=\"iisfile.php?type=".base64_encode(Baiduspider)."&showfile=".$arr_file[$i]."\">百度(Baidu)</a></td>
<td height=\"25\" width=\"25%\" align=\"center\"><a href=\"iisfile.php?type=".base64_encode(Googlebot)."&showfile=".$arr_file[$i]."\">谷歌(Google)</a></td>
<td height=\"25\" width=\"25%\" align=\"center\"><a href=\"iisfile.php?type=".base64_encode(yahoo)."&showfile=".$arr_file[$i]."\">雅虎(yahoo)</a></td></tr>";
}
}
closedir($fp);
$html = indexhtml();
$copy = mycopy();
$html = str_replace("[showlog]",$indexstr,$html);
$html = str_replace("[copy]",$copy,$html);
echo $html;
}else{
echo "該日志目錄不存在或權限不足,請檢查設置!";
exit();
}
}elseif ($type=='Baiduspider'){
echo show($type,$folder,$showfile,$page,$pagesize);
}elseif ($type=='Googlebot'){
echo show($type,$folder,$showfile,$page,$pagesize);
}elseif ($type=='yahoo'){
echo show($type,$folder,$showfile,$page,$pagesize);
}
function show($type,$folder,$showfile,$page,$pagesize)
{
if ($type=='Baiduspider')
{
$title='百度';
}elseif ($type=='Googlebot'){
$title='谷歌';
}elseif ($type=='yahoo'){
$title='雅虎';
}
if ($type&&$folder&&$showfile)
{
if(file_exists($folder.$showfile))
{
$fp= fopen($folder.$showfile,"r");
}else{
echo "該日志文件不存在,請檢查設置!";
exit;
}
$j=0;
$y=0;
$t=0;
$h=0;
while (!feof($fp))
{
$str = fgets($fp);
$str =iconv("UTF-8","GB2312//IGNORE",$str);
if(strpos($str,$type))
{
$j++;
$temp[].=$str;
$tmpcount = explode(" ",$str);
if ($tmpcount[11]==200)$t++;
if ($tmpcount[11]==304)$h++;
if ($tmpcount[11]==404)$y++;
}
}
fclose($fp);
$count = count($temp);
if ($page==1)
{
$countshow=$count;
$mynum = $count-$pagesize;
}else{
$countshow =$count-($page*$pagesize-$pagesize);
$mynum = $count-$page*$pagesize;
}
$pagecount =ceil(count($temp) / $pagesize);
if ($page>=$pagecount)
{
$mynum = $pagecount;
}
$m=0;
for ($i=$countshow-1;$i>=$mynum;$i--)
{
$num = explode(" ",$temp[$i]);
$show.="
<tr>
<td heigth\"20\">".$num[0]." ".$num[1]."</td>
<td>".$num[9]."</td>
<td><a href=\"".rawurlencode($num[5])."\" target=\"_blank\">".$num[5]."</a></td>
<td>".$num[11]."</td>
</tr>";
}
unset($temp);
$showpage = "<td colspan=\"4\" height=\"30\" align=\"center\">每頁 ".$pagesize." 條 當前".$page."/$pagecount";
$showpage.=" <a href=\"?type=".base64_encode($type)."&showfile=".$showfile."\">首頁</a>";
if ($page!=1)
{
$showpage.=" <a href=\"?type=".base64_encode($type)."&showfile=".$showfile."&page=".($page-1)."\">上一頁</a>";
}
if ($page!=$pagecount)
{
$showpage.=" <a href=\"?type=".base64_encode($type)."&showfile=".$showfile."&page=".($page+1)."\">下一頁</a>";
$weei = " <a href=\"?type=".base64_encode($type)."&showfile=".$showfile."&page=".($pagecount)."\">尾頁</a>";
}
$showpage.=$weei."</td>";
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("
當前1/2頁
12下一頁閱讀全文