Knowledge base article
Create a clone of your website
Related articles
Create a SSH key pair and configure your SSH key in cPanel
Go live with your WordPress staging website
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 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 creating a clone of your cPanel hosted website under a subdomain
The steps advised are using the command line and some automated cPanel functions. Remember it is always a good practise to backup your website files prior to any updates, please complete this step now if you have not already done so.
- Login to your cPanel account. If you have forgotten your cPanel credentials, they were included in the original Welcome to Serversaurus or IMPORTANT: Hosting Documentation email which you should find in your inbox, otherwise follow these instructions on how to update your cPanel password.
- Use the search bar to navigate to the Subdomains function, create the Subdomain using the fields provided, by default subdomains will be created under ~/subdomainname.yourdomain.com, however you can adjust the document root if preferred.
- Return to cPanel home and search the MySQL Databases function, create a new database and user for your clone website (put aside the credentials for later reference), then add the user to the new database and grant all permissions.
- Return to cPanel home and navigate to the phpMyAdmin function, select your live website database from the left hand side, then from the header menu, select Export and proceed with the quick export option to retrieve a copy of your database.
- Open the database file which was saved to your computer with a text editor such as Text Wrangler and apply a search and replace to replace all occurrences of the domain name with the subdomain name and save.
- Return to phpMyAdmin and select your development database from the right hand side of page, go to the Import menu item and use the Import function to upload your updated database saved locally on your computer.
- Open Terminal (or a SSH client like Putty if you're on Windows) and SSH onto your hosting server (note, your ssh credentials are the same as your cPanel credentials). If you don't have ssh client on your computer you are able to use the Terminal function within cPanel to completed the next steps.
- 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.
- Copy the contents of public_html into our subdomain directory, use the below command to recursively copy all files and directories including any hidden files. Remember to update below command with your subdomain name.
cp -r public_html/. subdomain.domainname.com - Now we need to update the subdomains wp-config.php file with the new database credentials. To edit the file use the below command:
vi subdomain.domainname.com/wp-config.php - Update the DB_NAME, DB_USER and DB_PASSWORD fields with your new database credentials. Use i to to edit the file, press esc when finished editing and :wq to save changes.
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'database_name_here');
/** MySQL database username */
define('DB_USER', 'username_here')
/** MySQL database password */
define('DB_PASSWORD', 'password_here')
You can now visit your subdomain and see a cloned version of your live website! If you have any issues please contact support@serversaurus.com.au for assistance.
Last updated November 30, 2023