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
<?php// CREATE USER sha256_20 IDENTIFIED WITH sha256_password BY '01234567890123456789';// CREATE USER sha256_19 IDENTIFIED WITH sha256_password BY '0123456789012345678';newmysqli("127.0.0.1", "sha256_19", "0123456789012345678");
newmysqli("127.0.0.1", "sha256_20", "01234567890123456789");
Resulted in this output:
PHP Fatal error: Uncaught mysqli_sql_exception: Access denied for user 'sha256_20'@'localhost' (using password: YES) in Command line code:1
Stack trace:
#0 Command line code(1): mysqli->__construct()
#1 {main}
thrown in Command line code on line 1
But I expected this output instead:
With the mysql client, authentication works as expected.
$ mysqladmin --user=sha256_19 --password=0123456789012345678 ping
mysqld is alive
$ mysqladmin --user=sha256_20 --password=01234567890123456789 ping
mysqld is alive