Guest User

Untitled

a guest
Mar 2nd, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. wordpressのコアファイルをダウンロード
  2. ```
  3. wp core download --locale=ja
  4. ```
  5.  
  6. wp-config.php の設定
  7. ```
  8. wp core config \
  9. --dbname=${DBNAME} \
  10. --dbuser=${DBUSER} \
  11. --dbpass=${DBUSERPW} \
  12. --extra-php <<PHP
  13. define('FS_METHOD', 'direct');
  14. PHP"
  15. ```
  16.  
  17. wordpressインストール
  18. ```
  19. core install \
  20. --url=${VHOST} \
  21. --title=\"${BLOGTITLE}\" \
  22. --admin_user=${BLOGADMIN} \
  23. --admin_password=${BLOGPW} \
  24. --admin_email=${ADMINMAIL}
  25. ```
Add Comment
Please, Sign In to add comment