微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

下載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

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

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

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

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

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

創建設定檔:
cp /tmp/wordpress/wp-config-sample.PHP /tmp/wordpress/wp-config.php

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

wordpress複製到網站根目錄:
sudo rm -rf /var/www/html/*
sudo cp -a /tmp/wordpress/. /var/www/html

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

更改wordpress目錄許可權:
sudo chown -R user:www-data /var/www/html

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

更改目錄許可權:
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

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

編輯wordpress設定檔
sudo vim /var/www/html/wp-config.php

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

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

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

設置密鈅【define數值】認密鈅【空】

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

獲取密鈅
curl -s https://api.wordpress.org/secret-key/1.1/salt/

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

更換密鈅位置

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

輸入“:wq”保存與退出

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐