본문 바로가기

.Tip

Wordpress 설치하기

 

    0. 관련 링크

- 워드 프레스 한국 홈페이지

- 워드 프레스    

-

  1. 설치에 앞서서
    1. 호스팅 업체 or 개인서버 필요
    2. PHP 4.1 와 MySQL 3.23.23 이상
  2. 설치
    1. 다운로드 TAR  , ZIP
    2. 압축 풀기
      tip) tar xvzf xxx.tar.gz
    3. 파일명 변경
      wp-config-sample.php -> wp-config.php (원본 유지 위해, 파일복사로)
    4. wp-config.php 수정 - DB연동

      define('DB_NAME', 'wordpress'); // The name of the database
      define('DB_USER', 'username'); // Your MySQL username
      define('DB_PASSWORD', 'password'); // ...and password
      define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value

    5. 경로지정하여 서버에 올리기
      1. 홈페이지 = 블로그
        계정 홈페이지에 위치 e.g., "ssami.tistory.com"
      2. 하위 도메인 = 블로그
        하위 도메인이 위치해 있는 폴더 e.g., "ssami.tistory.com/blog"
    6. Install (블로그.주소/wp-admin/install.php)
      1. First Step
        Title 과 E-mail을 적는다

        image 
      2. Second Step

        admin / password 나온다. 패스워드는 랜덤 생성이므로 꼭 기억해두자!!!
        여기서는 "d95f92" 라고 나옴.

        image

        위 두 과정에서 설정한 것은,
        설치후 "http://xx.xx.xx.xx/blog/wp-admin/options-general.php" 여기서 수정 가능하다.
    7. Config (../wp-login.php)
    8. 이후 생략
    9. Temp
  3. 주의

 

 

 

 

 image