Searching LDAP with paged result sets

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
Mephisto
Forum Newbie
Posts: 4
Joined: Thu Oct 10, 2002 5:04 pm
Location: North Germany
Contact:

Searching LDAP with paged result sets

Post by Mephisto »

Hi,

I want to read user accounts from a LDAP (Active Directory) server. The number of accounts to be read is a lot above the maximum result limit which is set to the default of 1000. From other languages I know that it is possible to query LDAP search results using paged result sets. Practically, using that method I can read the first 1000 results with the first query, the next 1000 with the second query, and so on.

Can I query a LDAP server using that method with PHP5?

Ciao, Meph
Post Reply