WordPress 워드프레스 DB 비밀번호 바꾸기
페이지 정보
본문
호스팅 업체의 웹사이트를 통해 MySQL DB의 name, id password를 변경한 경우에는 ftp접속을 통해 정보를 변경해 주어야 합니다.
먼저 ftp접속을 해서 루트 폴더에 있는 wp-config.php파일을 에디터로 열어 준 후,
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( 'DB_NAME', '디비네임' );
/** MySQL database username */
define( 'DB_USER', '디비아이디' );
/** MySQL database password */
define( 'DB_PASSWORD', '디비비번' );
/** MySQL hostname */
define( 'DB_HOST', 'localhost' );
먼저 ftp접속을 해서 루트 폴더에 있는 wp-config.php파일을 에디터로 열어 준 후,
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( 'DB_NAME', '디비네임' );
/** MySQL database username */
define( 'DB_USER', '디비아이디' );
/** MySQL database password */
define( 'DB_PASSWORD', '디비비번' );
/** MySQL hostname */
define( 'DB_HOST', 'localhost' );
댓글목록
등록된 댓글이 없습니다.