Chad Sikorra

Results 73 comments of Chad Sikorra

This is still on my radar. I plan on adding this for the next tagged release. I want to finish the work in https://github.com/ldaptools/ldaptools/issues/29 first, which will probably be a...

The more I dig into this the more frustrating it becomes actually. This range handling isn't some AD specific format, it's actually defined in the LDAPv3 RFC as "Attribute Description"...

Yeah, that should be possible. I have some directions written up for it here: https://github.com/ldaptools/ldaptools-bundle/blob/master/Resources/doc/LDAP-Authentication-Provider.md#mapping-ldap-attributes If you have your `ldap_type` set to openldap in your config then just replace references...

The `SymfonyUser` parameter defines the name of the object type in LdapTools. In LdapTools every LDAP object (user, group, contact, etc) can have a specific object name so you can...

Are you expecting to use both the Guard and the Form based login above? I think you'd want to define one or the other. But I guess I don't know...

Weird. If you comment out the code that throws the exception on line 126 of `LdapTools\Connection\PageControl` does the query work? It seems weird that it returns false for updating paged...

Ah, yes. That would do it. I overlooked that in your example. If you don't specify a schema type using the from method then you need to specify at least...

The query will return all of the results at once. It's not implemented to do interactive paging, but rather to adhere to paging restrictions against the LDAP server so it...

You can set a limit to how many are loaded at once by using `setSizeLimit($size);`: ```php $users = $ldapManager->buildLdapQuery() ->where(['objectClass' => 'eduPerson']) ->setSizeLimit(100) ->getLdapQuery() ->getResult() ; ```

The only other option I can think of is to add a `startAt($position)` method to the query builder. Then the paged results could be started at a certain page set....