Title1

Title2

Title3

11-1 安裝 Wordpress

一、建立資料庫

  1. 查詢虛擬主機php的版本:https://www.網域/phpinfo.php
    <?php
    phpinfo();

     

登入虛擬主機後台(cpanel):
https://網址/cpanel

建立資料庫、使用者、關聯資料庫與使用者權限

二、下載WordPress檔案

  1. 中文官網:https://tw.wordpress.org/
  2. 上傳檔案至網頁根目錄

    /** Database password */
    define( 'DB_PASSWORD', '密碼' );

    // ** Database settings - You can get this info from your web host ** //
    /** The name of the database for WordPress */
    define( 'DB_NAME', '資料庫名稱' );

    /** Database username */
    define( 'DB_USER', '使用者' );
     

  3. 將「wp-config-sample.php 」重新命名  wp-config.php」
    1. 資料庫名稱
    2. 資料庫使用者名稱
    3. 資料庫密碼
       
    4. 資料庫主機位址

      /** Database hostname */
      define( 'DB_HOST', 'localhost' );
       
    5. 資料表前置詞 (用於在單一資料庫中安裝多個 WordPress):$table_prefix = 'wp_';
  4. 設定資料庫、使用者、使用者密碼
  5. 執行WordPress安裝程式

三、登入 WordPress 控制台

  1. 後台:https://網址/wp-admin