vote up 1 vote down star

This PHP code...

207    if (getenv(HTTP_X_FORWARDED_FOR)) {
208        $ip   = getenv('HTTP_X_FORWARD_FOR');
209        $host = gethostbyaddr($ip);
210    } else {
211        $ip   = getenv('REMOTE_ADDR');
212        $host = gethostbyaddr($ip);
213    }

Throws this warning...

Warning: gethostbyaddr() [function.gethostbyaddr]: Address is not in a.b.c.d form in C:\inetpub...\filename.php on line 212

It seems that $ip is blank.

flag

66% accept rate

3 Answers

vote up 10 vote down check

on php.net it says the follwing:

The function 'getenv' does not work if your Server API is ASAPI (IIS). So, try to don't use getenv('REMOTE_ADDR'), but $_SERVER["REMOTE_ADDR"].

Did you maybe try to do it with $_SERVER?

link|flag
vote up 3 vote down

Why don't you use

$_SERVER['REMOTE_ADDR']

and

$_SERVER['HTTP_X_FORWARDED_FOR']
link|flag
vote up 1 vote down

First of all, getenv() takes a string as parameter. On line 207, you should use:

getenv('HTTP_X_FORWARDED_FOR')

...instead of:

getenv(HTTP_X_FORWARDED_FOR)

Secondly, accessing these variables through $_SERVER is a more reliable solution, as getenv() tends to display different behaviour on different platforms.

Also, these variables will probably not work if you are running this script through CLI.

Try a var_dump($ip); and see what the variable contains.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.