Hi All,
When authenticating to ldap using the following php code:
$ldap = ldap_connect("ldap.example.com")
if($bind = ldap_bind($ldap, $_POST['username'], $_POST['password'])) {
// log them in!
} else {
// error message
}
Is there any way to sent the client IP address to the AD server rather than the server IP?