Filter query – is it possible?
-
Currently I’m entering a value into Account Filter of “aoLdapKey” as our LDAP server doesn’t use the default of samAccountName.
However I currently have to amend the PHP code for the following as there are two types of user in LDAP with different prefixes:
$filterQuery = “($filter=$username)”;
to
filterQuery = “(|($filter=AA{$username})($filter=XX{$username}))”;
This works ok but I’d love a way of doing this without amending the PHP every time a new version is pushed out.
Is it possible at all?
Thanks!
Steve.
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Filter query – is it possible?’ is closed to new replies.