Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- it
- kakao
- centOS7
- java
- C lanuage
- 컴퓨터과학총론
- 프래그먼트
- server
- 구글
- ubuntu
- 자바
- php
- 해석
- C
- techEmpower
- H2O
- Portfolio
- javascript
- error
- 한글
- unity
- MySQL
- 개발
- NGINX
- 안드로이드
- 개발자
- 번역
- mariadb
- caddy
- android
Archives
- Today
- Total
개발모음집
웹호스팅 Warning: mysqli_connect(): (HY000/1045): Access denied for user 'username'@'localhost' (using password: YES) error 본문
TheRestDevelop
웹호스팅 Warning: mysqli_connect(): (HY000/1045): Access denied for user 'username'@'localhost' (using password: YES) error
void 2017. 5. 11. 11:26Warning: mysqli_connect(): (HY000/1045): Access denied for user 'username'@'localhost' (using password: YES)
==>
dbconfig.php 파일
<?php
$db = new mysqli('localhost', 'root','password','REVIEW');
if($db->connect_error) {
die('데이터베이스 연결에 문제가 있습니다');
}
$db->set_charset('utf8');
?>
여기서
$db = new mysqli('localhost', 'root','password','REVIEW');
localhost의 주소를 웹서버의 주소로 변경
'TheRestDevelop' 카테고리의 다른 글
php에서 mysql에 현재 시간 넣기 (0) | 2017.06.28 |
---|---|
Call to a member function fetch_assoc() on a non-object 에러 (0) | 2017.06.19 |
ubuntu에서 composer 이용하기 (0) | 2017.06.01 |
move_uploaded_file 실패 (3) | 2017.05.03 |
ajax issue - Uncaught referenceError: JQuery is not defined (0) | 2017.04.22 |