linuxserver / Heimdall

An Application dashboard and launcher
MIT License
7.46k stars 540 forks source link

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

Open AbhiOommen opened 2 months ago

AbhiOommen commented 2 months ago

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.

LinuxServer-CI commented 1 month ago

This issue has been automatically marked as stale because it has not had recent activity. This might be due to missing feedback from OP. It will be closed if no further activity occurs. Thank you for your contributions.