728x90
반응형
php8에서 비밀번호 관련하여 caching_sha2_password로 바뀌어, 비밀번호등 DB정보가 정확해도 아래의 warning이 뜬다.
mysqli_connect Warning: mysqli_connect(): The server requested authentication method unknown to the client [caching_sha2_password] in /Users/LimSeolHee/Documents/apmTest/index.php on line 11 Warning: mysqli_connect(): (HY000/2054): The server requested authentication method unknown to the client in /Users/LimSeolHee/Documents/apmTest/index.php on line 11
$link = mysqli_connect($host, $username, $password, $database, $port); if (!$link) { echo "Error: Unable to connect to MySQL." . "<br />"; echo "Debugging errno: " . mysqli_connect_errno() . "<br />"; echo "Debugging error: " . mysqli_connect_error() . "<br />"; }
728x90
반응형
'PHP' 카테고리의 다른 글
[PHP][OOP]코드 따라 쳐보기 (0) | 2020.08.05 |
---|---|
[PHP]한글을 대문자변환함수(strtoupper) 적용시 깨지는 문제 (0) | 2020.07.27 |
[PHP]xdebug설치 후 php.ini설정 (0) | 2020.07.10 |
[PHP][macOS]xdebug 최신 버전으로 설치해도 계속 예전 버전으로 표시되는 문제 (0) | 2020.07.08 |
phpdocumentor2 (0) | 2020.06.18 |