I'm not getting any referer information in my stats for any of the counters that I have active. What could be the cause?
I'm using version 1.3.0
Logged In: NO
Yes, me too, why so?
Logged In: YES user_id=2152820 Originator: NO
I think the problem arises with register_globals = off
$LocalPage = $_SERVER["HTTP_REFERER"]; <- was fixed $Referer = $_GET["Referer"]; <- should be fixed
So adding the referer line in inc.php fixes this problem.
as lanbotdevman suggested, I added the code after line 69 in inc.php. This fixes referer, but not referer domain.
$Referer = $_GET["Referer"]; # Line 69
Log in to post a comment.
Logged In: NO
Yes, me too, why so?
Logged In: YES
user_id=2152820
Originator: NO
I think the problem arises with register_globals = off
$LocalPage = $_SERVER["HTTP_REFERER"]; <- was fixed
$Referer = $_GET["Referer"]; <- should be fixed
So adding the referer line in inc.php fixes this problem.
as lanbotdevman suggested, I added the code after line 69 in inc.php. This fixes referer, but not referer domain.
$Referer = $_GET["Referer"]; # Line 69