Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ERROR on Login - Runtime Exception PHP 8.3.6 10.44.0 This password does not use the Bcrypt algorithm. #1330

Open
AbhiOommen opened this issue Apr 25, 2024 · 0 comments

Comments

@AbhiOommen
Copy link

AbhiOommen commented Apr 25, 2024

Getting the below error on login to the app, as docker on UnRaid.

`app/Http/Controllers/Auth/LoginController.php: 79

{

    $current_user = User::currentUser();

    $request->merge(['username' => $current_user->username, 'remember' => true]);

    //die(print_r($request->all()));

    $this->validateLogin($request);


    // If the class is using the ThrottlesLogins trait, we can automatically throttle

    // the login attempts for this application. We'll key this by the username and

    // the IP address of the client making these requests into this application.

    if ($this->hasTooManyLoginAttempts($request)) {

        $this->fireLockoutEvent($request);

        return $this->sendLockoutResponse($request);

    }

    if ($this->attemptLogin($request)) {     

        return $this->sendLoginResponse($request);

    }


    // If the login attempt was unsuccessful we will increment the number of attempts

    // to login and redirect the user back to the login form. Of course, when this

    // user surpasses their maximum number of attempts they will get locked out.

    $this->incrementLoginAttempts($request);


    return $this->sendFailedLoginResponse($request);

}

public function index()

{

}`

if ($this->attemptLogin($request)) - is the line with the error.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Status: Non-Docker Issues
Development

No branches or pull requests

1 participant