虛擬主機安裝discuz與WordPress注意地方
阿新 • • 發佈:2019-02-10
WordPress
上傳伺服器之前需要配置下“wp-config-sample.php”,
以下資訊修改為虛擬主機服務後臺給出的資訊,注意全部都要改!
// ** MySQL 設定 - 具體資訊來自您正在使用的主機 ** //
/** WordPress資料庫的名稱 */
define('DB_NAME', 'database_name_here');
/** MySQL資料庫使用者名稱 */
define('DB_USER', 'username_here');
/** MySQL資料庫密碼 */
define('DB_PASSWORD', 'password_here');
/** MySQL主機 */
define('DB_HOST', 'localhost');
/** 建立資料表時預設的文字編碼 */
define('DB_CHARSET', 'utf8');
/** 資料庫整理型別。如不確定請勿更改 */
define('DB_COLLATE', '');
/**#@+
* 身份認證金鑰與鹽。
*
* 修改為任意獨一無二的字串!
* 或者直接訪問{@link https://api.wordpress.org/secret-key/1.1/salt/
* WordPress.org金鑰生成服務}
* 任何修改都會導致所有cookies失效,所有使用者將必須重新登入。
*
* @since 2.6.0
*/
define('AUTH_KEY', 'put your unique phrase here');
define('SECURE_AUTH_KEY', 'put your unique phrase here');
define('LOGGED_IN_KEY', 'put your unique phrase here');
define('NONCE_KEY', 'put your unique phrase here');
define('AUTH_SALT', 'put your unique phrase here' );
define('SECURE_AUTH_SALT', 'put your unique phrase here');
define('LOGGED_IN_SALT', 'put your unique phrase here');
define('NONCE_SALT', 'put your unique phrase here');
/**#@-*/
上面修改完之後把wp-config-sample.php
重新命名為wp-config.php
,並和之前wp-config-sample.php放在一個目錄下上傳,然後位址列輸入服務商給出的域名按照提示安裝即可
discuz
把下載的discuz包解壓,只上傳upload資料夾下的檔案到虛擬主機中,使用fileZilla登入您的伺服器,將伺服器上以下目錄、以及該目錄下面的所有檔案的屬性設定為 777,Win 主機請設定 internet 來賓帳戶可讀寫屬性。
./config/config_global.php
./config/config_ucenter.php
./config
./data
./data/avatar
然後位址列輸入服務商給出的域名按照提示安裝即可