我的页面的head标签中有以下代码:
<script type="text/javascript">
var startime = (new Date()).getTime();
window.onload = function()
{
record_visit('ol');
setInterval("record_visit('update')", 300000);
}
window.onbeforeunload = function(){ record_visit('obul'); } //obul = onbeforeunload
function record_visit(value) {
var x = (window.ActiveXObject) ? new ActiveXObject('Microsoft.XMLHTTP') : new XMLHttpRequest();
var url='<?php echo "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]"; ?>';
x.open("GET", "/sc/count_visit.php?t=" + (((new Date()).getTime() - startime) / 1000)+"&type="+value+"&url="+url, false);
x.send(null);
}
它工作得很好但是在最近的日志消息下我的drupal网站上我收到了一个错误:
page not found 02/27/2012 - 23:04 count_visit.php Anonymous (not verified)
由于我每天有大约6,000名访客,因此错误会在一分钟内多次出现。
我在上面的代码中遗漏了什么?我认为没有count_visit.php有问题。
答案 0 :(得分:1)
您必须对您的url
变量进行网址编码。 encodeURIComponent(url)