Steve Bauman
Steve Bauman
Hi @zeekzeeky, > Please do let me know if the LDAP credentials that I am using is incorrect or if there is any tweaks to be made. I won't be...
Hi there, please refer to the documentation on the [ldaprecord.com](https://ldaprecord.com/docs/configuration/#ssl-amp-tls) as you will need to create an `ldap.conf` file on your server. > Using the code in a local environment...
Hi @lazosweb, How do you plan on storing the token?
Hi @ricardo91, Are you using the 32-bit version of PHP?
Ok, this is an issue currently when using a 32-bit due to the integer being larger than 32-bit can support, and converting it to a float dynamically. Going to see...
Hi @rafaelcavalcanti, First thing - are you sure you're using `OpenLDAP`? In your posted code you have a filter requesting the `sAMAccountName` attribute - which does not exist in OpenLDAP.
Strange - have you modified the `identifiers.database.guid_column` value inside your `ldap_auth.php` file?
Hi @YannisHeine, The default authenticating username for users is their `distinguishedname` shown here in the auth configuration: https://github.com/Adldap2/Adldap2-Laravel/blob/master/src/Config/auth.php#L121-L127 ```php 'authenticate' => 'distinguishedname', ``` Try changing it to `samaccountname` or `userprincipalname`...
No problem! :) Can you post your `config/adldap.php` and `config/adldap_auth.php` (with sensitive details removed) files so I can see what attributes you're using for authentication?
Hi @KarimGeiger, Unfortunately I've never tested stored queued jobs using Adldap2. I'm surprised that the `__destruct()` isn't called on each connection after the job has finished: https://github.com/Adldap2/Adldap2/blob/master/src/Connections/Provider.php#L55-L66 Are you able...