Steve Bauman
Steve Bauman
Hi @chucky2361, I don't see any issues at all with your code snippet, that should work fine in production. I've resolved this issue in my new [LdapRecord](https://github.com/DirectoryTree/LdapRecord) package (Laravel version...
Hi @NamoDev, unfortunately I have no experience with FreeIPA and I can't seem to find any documentation on the users password field that needs to be modified for a password...
No problem @NamoDev, thanks for looking into this. I know ActiveDirectory and OpenLDAP have a `unicodepwd` field that isn't present in attributes returned by records, but changes passwords when passed...
Thanks @NamoDev for looking into this. Since it's just an attribute you can set and update, can you try the following? ```php $user->userpassword = 'password'; $user->save(); ``` This should update...
@NamoDev I've heard this before with FreeIPA, but unfortunately I won't be able to assist you much in this matter (can't even find documentation online about changing passwords in FreeIPA)....
Hi @devilwacause, Login fallback will only work if: - The user has logged in previously while your LDAP connection was accessible and active - `password_sync` was enabled at the time...
Hi @justageek, thanks so much for the sponsorship! ❤️ This may be tricky since multi-domain support isn’t built in, but I’ll try to help as much as I can. I’m...
Hi @justageek, I'm ready to help tackle this with you. Before you call `Resolver::setConnection()` I believe you should first attempt connecting to that server -- otherwise the `Resolver::byCredentials()` method will...
Ok great thanks! So you have two options: 1. Set `auto_connect` to `true` in your `config/ldap.php` file for both of your LDAP connections 2. Attempt connecting to the LDAP connection...
> One thing that confused me is since ldap_auth.php has one single key/value for 'connection', it seems like every time you try to authenticate, it is going to try to...