111網頁前端設計工程師培訓班
一、建立資料庫
- 查詢虛擬主機php的版本:https://www.網域/phpinfo.php
<?php
phpinfo();
登入虛擬主機後台(cpanel):
https://網址/cpanel
建立資料庫、使用者、關聯資料庫與使用者權限
二、下載WordPress檔案- 中文官網:https://tw.wordpress.org/
- 上傳檔案至網頁根目錄
/** 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', '使用者' );
- 將「wp-config-sample.php 」重新命名 wp-config.php」
- 資料庫名稱
- 資料庫使用者名稱
- 資料庫密碼
- 資料庫主機位址
/** Database hostname */
define( 'DB_HOST', 'localhost' );
- 資料表前置詞 (用於在單一資料庫中安裝多個 WordPress):$table_prefix = 'wp_';
- 設定資料庫、使用者、使用者密碼
- 執行WordPress安裝程式
- 後台:https://網址/wp-admin