-
MySQL 8+ uses Laravel is still stuck using |
Beta Was this translation helpful? Give feedback.
Answered by
dorkyboi
Jun 20, 2024
Replies: 1 comment 14 replies
-
Hi. The transition would mean regenerating all passwords(for their hashes) from db? |
Beta Was this translation helpful? Give feedback.
14 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It looks like the issue was my own doing.
I have chosen
php-mysql
as a driver due to the lack of knowledge.I should've installed
php-mysqlnd
as it is, apparently, a better alternative tophp-mysql
, and it is also its drop-in replacement.So I have removed
php-mysql
and installedphp-mysqlnd
, set the authentication plugin back tocaching_sha2_password
.Everything works fine so far.
Thank you, @marius-mcp, for helping me to figure this out. ❤️