h****x 发帖数: 1450 | 1 想看看究竟是哪些IP address search/visit了我的网站,有什么free的工具么?多谢
! |
f**********1 发帖数: 127 | 2 如果你的hosting不提供的话(其实就算提供也无所谓), google analytics 是你的最
终选择,免费的 |
h****x 发帖数: 1450 | 3 google analytics does not provide ip address ba.
【在 f**********1 的大作中提到】 : 如果你的hosting不提供的话(其实就算提供也无所谓), google analytics 是你的最 : 终选择,免费的
|
g****z 发帖数: 1135 | 4 如是php不就是$SERVER['REMOTE_ADDR']吗?这么简单你不知道?
要track就把它保存到database不就完了? |
g********g 发帖数: 2172 | 5 If you have control to the web server, turn on your server log. Then
analysis with free software, such as http://www.weblogexpert.com/lite.htm. If you want to use third party tool, Google analytic do not have IPs. Statcounter.com provides some IPs.
【在 g****z 的大作中提到】 : 如是php不就是$SERVER['REMOTE_ADDR']吗?这么简单你不知道? : 要track就把它保存到database不就完了?
|
g********g 发帖数: 2172 | 6 Use the following, some percentage (<10%) of the chance, REMOTE_ADDR only
gives the internal IPs.
$VISITORIP = $_SERVER["REMOTE_ADDR"];
if(isset($_SERVER["HTTP_X_FORWARDED_FOR"])){
$realiparray = $_SERVER["HTTP_X_FORWARDED_FOR"];
$realiparray = explode(',',$realiparray);
$VISITORIP=trim($realiparray[count($realiparray) - 1]);
}
【在 g****z 的大作中提到】 : 如是php不就是$SERVER['REMOTE_ADDR']吗?这么简单你不知道? : 要track就把它保存到database不就完了?
|