Recent Topics

1 Feb 26, 2012 05:03    

Hits from facebook liked pages count as "Search Hits".

[url=http://postimage.org/image/yqza22qb5/]http://s16.postimage.org/yqza22qb5/referr.jpg[/url]

2 Mar 01, 2012 04:54

This should be already fixed in 4.1.3 isn't it?

3 Mar 01, 2012 08:42

nope .. the ss is from 4.1.3

4 Mar 01, 2012 15:38

I'll check it. I thought I had fixed it last time :)

7 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 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 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;
}


Form is loading...