I have developed a PHP webservice. I would like to log all incoming connections of the WS clients, which are consuming this web service. How can I obtain the client's IP address? The value of
$_SERVER['HTTP_CLIENT_IP']
seems to be always empty.
|
I have developed a PHP webservice. I would like to log all incoming connections of the WS clients, which are consuming this web service. How can I obtain the client's IP address? The value of
seems to be always empty.
| |||||
feedback
|
|
This should be what you want:
| |||||||||||||
feedback
|
|
Actually, I would suggest using this function to cover all of your bases, such as people using proxies, shared networks etc.:
| |||
|
feedback
|
|
Are you using some kind of framework for your webservice? I saw some frameworks (For instance Agavi) which intentionally delete all the $SERVER data because they want to enfore you to use the validated values from a framework service. | |||
|
feedback
|
|
You might try
to see all vars. But that actually also depends on the backend your script is running at. Is that Apache? | |||
|
feedback
|
|
The functions getUserIpAddr() and getRealIpAddr() are not reliable! The only reliable IP is from This Firefox Addon can help you send custom headers. Sending the CLIENT_IP=x.x.x.x header to a server running any of the functions on this page, would mean that clients can choose any IP they want... | |||
|
feedback
|
|
If this dont do the job i dont know what does..
| |||
|
feedback
|