i have found some servers set this:
$ENV{REMOTE_ADDR} = 127.0.0.1
so every day the number of variant IP visitors is very ONE... we may try to change the counter code:
PHP Code:
$cxip_userip = getenv('REMOTE_ADDR');
to this new line:
PHP Code:
$cxip_userip = getenv('HTTP_X_FORWARDED_FOR');
if you test vB on your local PC(like me), the visitors' IP always be 127.0.0.1. of course "variant IP visitors: today = 1,"...