My web server is not running on a rental server. So FTP is not permitted. Regul
ar update method is conducted with FTP.
So I updated wordpress as following.
レンタルサーバーではないので、外部からのFTPを許可していない。wordpress内の通
常の更新ではFTPを使うので、WEBで調べて次の様にして更新した。
Step1
sudo nano wp-config.php
#insert the following line into wp-config.php
define(‘FS_METHOD’, ‘direct’);
Step2
record current chown status
ls -l
ls -l wordpress
ls -l wordpress/wp-content
Step3
cd wordpress/wp-content
sudo chmod 707 plugins themes upgrade
cd ../..
sudo chown -R www-data:www-data wordpress
Step4
wordpressから更新 プラグインも一緒に更新
update wordpress by wordpress itself.
plug -in can be uodate too.
Step5
Recover of changes by step1 and step3
Finally test access to wordpress page.
Leave a Comment