I enjoyed the vbStats where just the domain was present rather than the entire URL
to do this simply modify the statistik_counter.php
While this may not suite everyone it makes the appearance of the domain better for me.
Find:
Quote:
$DER_REFERER = $_SERVER['HTTP_REFERER'];
|
replace with:
Quote:
//$DER_REFERER = $_SERVER['HTTP_REFERER'];
$DER_REFERER = parse_url($_SERVER[HTTP_REFERER]);
|
and two sql instances
find:
Quote:
WHERE Referer ='$DER_REFERER'
|
replace with
Quote:
WHERE Referer ='$DER_REFERER[host]'
|
find:
Quote:
VALUES('','$DER_REFERER','1')
|
replace with:
Quote:
VALUES('','$DER_REFERER[host]','1')
|