> 2008-04-24 17:19:30,134 Trac[api] ERROR: LDAP error: Size limit exceeded > 2008-04-24 17:19:30,321 Trac[api] ERROR: LDAP error: Size limit exceeded > 2008-04-24 17:19:30,321 Trac[ldap_store] INFO: ldap_users: []
As far as I remember, this means that the LDAP client request leads to a too large set of results. LDAP servers are usually configured to limit the number of matching responses. Imagine a LDAP server with 5000 entries, there is only a few interest on producing a godzilla-sized response: it would take bandwidth and time to obtain and display the results. In other words, try to shrink down the set of results, using a more precise search filter. The key here might be to use a better permfilter permfilter = objectclass=* means "entries of any class in the directory", i.e. "any object in directory" Try to use something like objectclass = OpenLDAPperson the actual class depends on your directory scheme, I guess it is not "OpenLDAPperson" on an M$ AD ;-) Simply get a valid user entry with ldapsearch or any LDAP GUI tool you prefer, and looks for its objectclass. The other (but worse) solution is to tell the server to accept larger response sets. Cheers, Manu --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~----------~----~----~----~------~----~------~--~---
