Default wordpress config
Please consider modifying the default wordpress wp-config file to include. I have had to manually add that to every install so that visitor IP's are showing up correctly.
if ( isset( $SERVER[ "HTTPXFORWARDEDFOR" ] ) ) {
$SERVER[ 'REMOTEADDR' ] = $SERVER[ "HTTPXFORWARDEDFOR" ];
}
6
votes
Andrew
shared this idea