In inc_func_common.asp line 593, the details of a member's last IP are entered into the database using the following:
strSql = strSql & ", M_LAST_IP = '" & Request.ServerVariables("REMOTE_ADDR") & "'
The REMOTE_ADDR uses the server variable to identify the member's IP address but it stops at a proxy address if one is being used.
Is there a way of determining the member's true IP when checked other than the IP of the proxy?
I have tried replacing REMOTE_ADDR with:
HTTP_X_FORWARDED_FOR
CLIENT_IP
HTTP_FROM
but this returns a blank
Thanks,
Dave