1 tilqicom Feb 26, 2012 05:03
3 tilqicom Mar 01, 2012 08:42
nope .. the ss is from 4.1.3
4 sam2kb Mar 01, 2012 15:38
I'll check it. I thought I had fixed it last time :)
5 sam2kb Mar 02, 2012 07:00
See if you have better luck with this version of /inc/sessions/model/_search_engines.php
6 tilqicom Mar 02, 2012 20:04
Tried the new version, the problem persists.
[url=http://postimage.org/image/ynuq7hget/]http://s10.postimage.org/ynuq7hget/CC2_Clipboard01.jpg[/url]
7 sam2kb Mar 04, 2012 21:52
Would you mind if I connect to your server and grab a couple of facebook referrers, just so I could test it on my side?
8 tilqicom Mar 04, 2012 22:44
sam2kb wrote:
Would you mind if I connect to your server and grab a couple of facebook referrers, just so I could test it on my side?
Sure, suit yourself.The info is the same i sent you the last time.If you lost it just pm me again and i will send you details.
9 sam2kb Mar 20, 2012 21:47
Try this fix.
Edit /inc/sessions/model/_hit.class.php line 1283
replace
if( empty($key) )
{
return false;
}
with
if( empty($key) )
{ // Not a search referer
if( $this->referer_type == 'search' )
{ // If the referer was detected as 'search' we need to change it back to 'referer'
// to keep search stats clean.
$this->referer_type = 'referer';
}
return false;
}
This should be already fixed in 4.1.3 isn't it?