You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 24, 2023. It is now read-only.
Uh oh!
There was an error while loading. Please reload this page.
See this issue on laravel/framework:
laravel/framework#25578
If the ldap user is not in the database SyncPassword stops with a RuntimeException:
This password does not use the Bcrypt algorithm.
If this is not changed in laravel, you probably need to change line 88 at
SyncPassword::passwordNeedsUpdate
from:if ($this->canSync()) {
to:
if ($current !== null && $this->canSync()) {
The text was updated successfully, but these errors were encountered: