ID: 7791
Comment by: [EMAIL PROTECTED]
Reported By: william at veritel dot com dot br
Status: Closed
Bug Type: LDAP related
Operating System: Solaris 7
PHP Version: 4.0.3pl1
New Comment:
hello!
what must i do, when i want more than 1000 entrys get back from the
ldap-server?
greetings
Previous Comments:
------------------------------------------------------------------------
[2000-12-04 12:11:41] [EMAIL PROTECTED]
No feedback.
------------------------------------------------------------------------
[2000-11-18 23:39:18] [EMAIL PROTECTED]
User feedback:
-----------
At this time we're running Openldap v1.2.9. Problems with this one???
-----------
I just tried with PHP 4.0.3pl1 and Openldap 1.2.11. Works just fine for
me.
Try updating your openldap libs.
--Jani
------------------------------------------------------------------------
[2000-11-15 13:38:40] [EMAIL PROTECTED]
Which ldap-library are you using? Openldap? Version?
--Jani
------------------------------------------------------------------------
[2000-11-13 14:34:46] william at veritel dot com dot br
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???
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=7791&edit=1