|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-11-15 13:38 UTC] sniper@php.net
[2000-11-18 23:39 UTC] sniper@php.net
[2000-12-04 12:11 UTC] sniper@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 08:00:02 2025 UTC |
if ($ds) { echo "Binding ..."; $r=ldap_bind($ds); // this is an "anonymous" bind, typically // read-only access echo "Bind result is ".$r."<p>"; echo "Searching for ..."; // Search surname entry $group = "ou=ClientAdmins, ou=Approved, ou=People, o=veritel.com.br"; $filter = "uid=*admin"; $justthese = array( "uid", "cn", "mail"); $sr = ldap_search($ds,$group,$filter,$justthese,0,10); // BUGGED??? LINE 22 ldap_error($ds); echo "Search result is ".$sr."<p>"; Well, the code above is what I'm trying to do...the line commented should return only 10 entries from my ldap database, right??! Well it doesn't do! It brings me 500 and says about I'm trying to get more than 500 entries from LDAP. The error message follows: > Connecting ...connect result is 1 > > Binding ...Bind result is 1 > > Searching for ... > Warning: LDAP: Partial search results returned: Sizelimit exceeded. in /tests/php/ldap.php on line 22 > Unknown error > Search result is 2 > > Number of entires returned is 500 > > Getting entries ... > > Data for 500 items returned: It won't work setting the sixth parameter of ldap_search to more or less than 500. Could it be a bug???