Lincecum
Lincecum

Reputation: 825

$_SERVER["REMOTE_ADDR"] gives server IP rather than visitor IP

I'm trying to track IP addresses of visitors. When using $_SERVER["REMOTE_ADDR"], I get the server's IP address rather than the visitor's. I tried this on multiple machines at multiple locations and they all resulted in the exact same IP. Is there some PHP/server settings that could be affecting this?

Upvotes: 68

Views: 350350

Answers (10)

christian nyembo
christian nyembo

Reputation: 125

Enable remoteIP module in your Apache server

a2enmod remoteip

Restart Apache: /etc/init.d/apache2 restart

Upvotes: 0

Peter
Peter

Reputation: 11

#php 7.x short condition syntax.

<?php
$ip = isset($_SERVER['HTTP_CLIENT_IP']) ? $_SERVER['HTTP_CLIENT_IP'] : (isset($_SERVER['HTTP_X_FORWARDED_FOR']) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR']);
echo "The user IP Address is - ". $ip;
?>

from https://www.delftstack.com/howto/php/php-get-user-ip/

Upvotes: 0

Fadhel Ali
Fadhel Ali

Reputation: 41

if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
  $IP = $_SERVER['HTTP_CLIENT_IP'];
} else if (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
  $IP = $_SERVER['HTTP_X_FORWARDED_FOR'];
} else {
  $IP = $_SERVER['REMOTE_ADDR']; 
}

Upvotes: 4

Igor Simic
Igor Simic

Reputation: 540

if your site is behind cloudflare, you can use another header provided by cloudflare itself:

$_SERVER['HTTP_CF_CONNECTING_IP']

or if you are using Laravel

$request->server('HTTP_CF_CONNECTING_IP');

read more about it here:

How to get real client IP behind Cloudflare in Laravel / PHP

Upvotes: 0

Peter VARGA
Peter VARGA

Reputation: 5186

If you are using Cloudflare then this is always the Cloudflare IP address from the node which is serving you.

In this case you get the real IP address from the $_SERVER['HTTP_FORWARDED_FOR'] entry as described in the the other answers.

Upvotes: 0

Sanu
Sanu

Reputation: 330

Try this

$_SERVER['HTTP_CF_CONNECTING_IP'];

instead of

$_SERVER["REMOTE_ADDR"];

Upvotes: 0

chiappa
chiappa

Reputation: 1346

Replacing:

$_SERVER["REMOTE_ADDR"];

With:

$_SERVER["HTTP_X_REAL_IP"];

Worked for me.

Upvotes: 2

hammady
hammady

Reputation: 988

Look no more for IP addresses not being set in the expected header. Just do the following to inspect the whole server variables and figure out which one is suitable for your case:

print_r($_SERVER);

Upvotes: 9

Pekka
Pekka

Reputation: 449435

When using $_SERVER["REMOTE_ADDR"], I get the server's IP address rather than the visitor's.

Then something is wrong, or odd, with your configuration.

  • Are you using some sort of reverse proxy? In that case, @simshaun's suggestion may work.

  • Do you have anything else out of the ordinary in your web server config?

  • Can you show the PHP code you are using?

  • Can you show what the address looks like. Is it a local one, or a Internet address?

Upvotes: 23

casablanca
casablanca

Reputation: 70701

$_SERVER['REMOTE_ADDR'] gives the IP address from which the request was sent to the web server. This is typically the visitor's address, but in your case, it sounds like there is some kind of proxy sitting right before the web server that intercepts the requests, hence to the web server it appears as though the requests are originating from there.

Upvotes: 21

Related Questions