If you have a reverse proxy or a load balancer at your network and it replaces the client ip address with it own ip address,
you can solve it by telling the server to look at the original ip address that stored in the HTTP header (called HTTP_X_FORWARDED_FOR)
changing the file - qa-base.php
in the function qa_remote_ip_address()
replcae this line:
return @$_SERVER['REMOTE_ADDR'];
with:
//return @$_SERVER['REMOTE_ADDR'];
$arr=explode(",",$_SERVER["HTTP_X_FORWARDED_FOR"]);
return $arr[0];
Sharon.
My new faq page -