Upgrade Latest WordPress AWS EC2 without FTP


Here is a quickstep upgrade wordpress in AWS EC2 Ubuntu without FTP.

Restart your NGINX and PHP-FPM just in case

1. Download the latest code

1
2
cd ~/ wget -c https://wordpress.org/latest.zip
unzip latest.zip

2. Go to your wordpress folder

1
2
3
4
mkdir ~/backup
mv wp-includes ~/backup/
mv wp-admin ~/backup/
mv wp-settings.php ~/backup/

3.Update the wp-includes, wp-admin and wp-settings.php

1
2
3
cp -dR ~/wordpress/wp-includes .
cp -dR ~/wp-admin .
cp -dR ~/wp-settings.php .


Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.