Knowledge base article
Manually re-install WordPress
Related articles
Basic WordPress security and site management
Create a SSH key pair and configure your SSH key in cPanel
Enabling PHP extensions, Changing PHP Version and Setting PHP Options
WordPress install still shows Serversaurus “new customer” landing page
Other cpanel articles
A beginners guide to email spoofing
Accessing your site before changing DNS
An introduction to email authentication
Basic WordPress security and site management
Can I test out your services for free?
Check MySQL database table disk usage
Configure object cache with memcached and Litespeed Cache plugin
Configure spam filtering in cPanel
Connect via SFTP using SSH key authentication with FileZilla
Connecting to Serversaurus shared hosting via SFTP
Create a clone of your website
Create a SSH key pair and configure your SSH key in cPanel
Create a WordPress administrator via MySQL CLI
Create a WordPress administrator via phpMyAdmin
Create a WordPress cron task in cPanel
Create and manage email accounts in cPanel
Create Autoresponders in cPanel
Disable automatic WordPress updates via wp-config.php
Domain options for shared hosting
Download or restore individual files, directories or database backups with JetBackup
Emptying Trash, Junk and Spam files
Enabling PHP extensions, Changing PHP Version and Setting PHP Options
Export or Import a MySQL database via CLI
Force HTTPS via .htaccess (cPanel)
Go live with your WordPress staging website
Help! I need a backup of my cPanel-hosted website
Hide .html extension using .htaccess
How did my WordPress website get hacked? What do I do?
How to ensure website generated emails are delivered successfully
How to issue a Let’s Encrypt certificate
How to remove Site Software management
I can receive email but can’t send!
Introduction to LiteSpeed Cache
Login to cPanel via the Client Portal
Manage DNS zones with the cPanel Zone Editor
Manual WordPress migrations in a nutshell
Migrate remote staging website to local hosting server
Migrate remote transactional website to local server
Migrating email from one POP/IMAP email account to another
My site and/or email service is down
Network Firewall (I can’t access my services on a non-standard port)
Pointing your domain to Serversaurus
Pointing your domain to Squarespace with cPanel
Prevent website generated spam with CAPTCHA
Push updates from a staging to production website
Reconfigure production website to subdomain
Recover your hacked WordPress website
Remove Wordfence firewall block via MySQL CLI
Secure your WordPress installation
Setting up email on your iPhone
Subdomains for test sites & more
The SLA – Best effort versus 99.9% versus 100%
Unable to renew certificate: The Let’s Encrypt HTTP challenge failed
Understanding CloudLinux resource limits
Update a WordPress website to use a new domain name
Update your WordPress username via phpMyAdmin
Using the Serversaurus Cloud CDN with your WordPress website
What exactly is shared hosting?
Why don’t you have unlimited plans?
WordPress install still shows Serversaurus “new customer” landing page
This article will walk you through manually updating WordPress via the command line
Please note that this article is advising the steps for Mac/Linux users. Remember it is always a good practice to backup your website files prior to any updates, please complete this step now if you have not already done so.
- Open Terminal (or a SSH client like Putty if you're on Windows) and SSH onto your hosting server. If you are unaware of your SSH details, please reference the original Welcome to Serversaurus email which includes all relevant SSH details (note, your SSH details are the same as your cPanel credentials) or alternatively find out how to update your FTP/cPanel credentials.
In Terminal replace the username and server info with your own:ssh user@yourserver.serversaurus.com.au
- Press Enter and type your password when prompted. Note: when you are logged in, by default you will be in your home directory, which contains sub directories for your website, email, web stats, and add-on domains.
- Using the wget command, we will download the latest WordPress version into our current directory.
wget http://wordpress.org/latest.tar.gz
- Now to extract the contents of the latest.tar.gz file type the command:
tar xfz latest.tar.gz
- Change into the directory where your current WordPress site is installed.
Note: This can differ depending on your setup, if these updates are for your primary website WordPress will most likely be installed under public_html.
To change into your public_html directory type and enter:cd public_html
If you are reinstalling WordPress under an addon domain, navigate to the addon domain's home directory using the below command:
cd yourdomainname.com
- Now we want to copy the files/directories which are unique to your website and move them into the directory with your fresh WordPress install overwriting default directories or files that were included in the installation.
- Use the below command to recursively copy your unique website files:
cp -r wp-content/ wp-config.php .htaccess ~/wordpress
- Next we'll remove the existing WordPress installation from the current directory
rm -fr ./*
- The final step is to move the new WordPress files with your content into the current directory.
mv ~/wordpress/* .
- Now let's tidy up after ourselves, we no longer need the WordPress directory or the latest.tar.gz file, to remove these items, issue the following command:
rm -r ~/latest.tar.gz ~/wordpress/
Last updated November 30, 2023