1. 程式人生 > >Ubuntu 16.10(x86) Install WordPress SRV 4.7.1-1-5

Ubuntu 16.10(x86) Install WordPress SRV 4.7.1-1-5

https wordpress 圖片 退出 define nload 新版 def gin

下載WordPress程式
(進入tmp目錄) cd /tmp

curl -O https://wordpress.org/latest.tar.gz
【備註】以上連接默認Download最新版的Wordpress
Ver 471 【curl -O https://wordpress.org/wordpress-4.7.1.tar.gz】

技術分享圖片

將下載的安裝解壓
tar xzvf latest.tar.gz
tar xzvf wordpress-4.7.1.tar.gz(下圖是解壓完成)
技術分享圖片

創建.htaccess文件
touch /tmp/wordpress/.htaccess
chmod 660 /tmp/wordpress/.htaccess

技術分享圖片

創建設定檔:
cp /tmp/wordpress/wp-config-sample.php /tmp/wordpress/wp-config.php
技術分享圖片

把wordpress複製到網站根目錄:
sudo rm -rf /var/www/html/*
sudo cp -a /tmp/wordpress/. /var/www/html
技術分享圖片

更改WordPress目錄許可權:
sudo chown -R user:www-data /var/www/html
技術分享圖片

更改目錄許可權:
sudo find /var/www/html -type d -exec chmod g+s {} \;
sudo chmod g+w /var/www/html/wp-content
sudo chmod -R g+w /var/www/html/wp-content/themes

sudo chmod -R g+w /var/www/html/wp-content/plugins
技術分享圖片

編輯WordPress設定檔
sudo vim /var/www/html/wp-config.php
技術分享圖片

輸入數據庫名稱、用戶名與密碼
在數據庫名稱下,插入一行【define(‘FS_METHOD‘, ‘direct‘);】
修改後
技術分享圖片

設置密鈅【define數值】默認密鈅【空】
技術分享圖片

獲取密鈅
curl -s https://api.wordpress.org/secret-key/1.1/salt/
技術分享圖片

更換密鈅位置
技術分享圖片

輸入“:wq”保存與退出

Ubuntu 16.10(x86) Install WordPress SRV 4.7.1-1-5