-
What is the big difference in the functions: groups_in_group & recursive_groups?
They seems to do almost the same to me, one with the option to not do recursive lookups.
2009-07-08 09:24:24 UTC in PHP LDAP class for Active Directory
-
Yea i stumbled on that bug report to, but its from 2008, and the patch is still not in main branch of php :(
However i made a workaround for this, that someone might want to rewrite to adLDAP, since i suck in php this code needs to be fixed with better iteration.
For me this is just and issue in function group_members() but i guess it relates to all querys that can return thousands of hits.
2009-06-02 09:36:14 UTC in PHP LDAP class for Active Directory
-
You need to create an instance of the object for adlap first. (and obviously set all settings in adLDAP.php to match your environment)
$myadLDAP = new adLDAP();
$test = $myadLDAP->group_members("ccCOM-Teamleaders");.
2009-05-27 10:17:14 UTC in PHP LDAP class for Active Directory
-
The query itself doesn't look any different than any other.
Which query did you want to see? the one in php? or vb?.
2009-05-27 10:13:06 UTC in PHP LDAP class for Active Directory
-
sizelimit is not the answer, this is set to 0, and supported by the domaincontroller.
When more than x hits from a search, MS AD returns a PAGED result (1500 hits on each page)
In vb.net for example this is the same, but then in all MS ldap documentation this is referred as paged searches, when more than x hits, it splits the results in more pages, something that seems not supported in PHP...
2009-05-26 09:10:22 UTC in PHP LDAP class for Active Directory
-
Hello, i have one problem with using the function group_members.
When i want to list members of a big group, (~2500 users).
It looks like the problem is within ldap_search not been able to return more than 1500, and when its more than that.
And when a group have more than 1500 members, it changes the array with all the members, its no longer [member] array. instead it have created a new arr.
2009-05-22 11:43:14 UTC in PHP LDAP class for Active Directory