Difference between revisions of "Wordpress SSH"
From KOP KB
Line 5: | Line 5: | ||
<kbd>cd <var>/var/www/vhosts/example.com/httpdocs</var></kbd></li> | <kbd>cd <var>/var/www/vhosts/example.com/httpdocs</var></kbd></li> | ||
<li>Grab the latest <abbr title="WordPress">WP</abbr> install<br> | <li>Grab the latest <abbr title="WordPress">WP</abbr> install<br> | ||
− | <kbd>wget | + | <kbd>wget https://www.wordpress.org/latest.tar.gz</kbd></li> |
<li>Get the files out of the archive:<br> | <li>Get the files out of the archive:<br> | ||
<kbd>tar xfz latest.tar.gz</kbd></li> | <kbd>tar xfz latest.tar.gz</kbd></li> |
Revision as of 22:35, 26 September 2014
You will need to use some kind of terminal program to SSH into the server. Our suggested program is Putty.
- SSH into your server, then navigate to your domain’s web root:
cd /var/www/vhosts/example.com/httpdocs - Grab the latest WP install
wget https://www.wordpress.org/latest.tar.gz - Get the files out of the archive:
tar xfz latest.tar.gz - Navigate to the
wordpress
subfolder:
cd wordpress - Copy everything back up to the web root:
cp -rpf * ../ - Navigate back up to web root:
cd .. - Remove the
wordpress
subfolder:
rm -rf wordpress - Remove the downloaded archive file:
rm -f latest.tar.gz