<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Syrinx Systems</title>
	<atom:link href="https://syrinxsystems.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>https://syrinxsystems.co.uk</link>
	<description>Syrinx Systems</description>
	<lastBuildDate>Thu, 26 Mar 2026 17:53:35 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://syrinxsystems.co.uk/wp-content/uploads/2020/09/cropped-logo-square-600-32x32.png</url>
	<title>Syrinx Systems</title>
	<link>https://syrinxsystems.co.uk</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Backup your WordPress site via cPanel</title>
		<link>https://syrinxsystems.co.uk/2020/09/04/backup-your-wordpress-site-via-cpanel/</link>
		
		<dc:creator><![CDATA[Sean]]></dc:creator>
		<pubDate>Fri, 04 Sep 2020 16:13:11 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[cPanel]]></category>
		<guid isPermaLink="false">https://syrinxsystems.co.uk/?page_id=1410</guid>

					<description><![CDATA[]]></description>
										<content:encoded><![CDATA[
<div class="et_pb_section_0 et_pb_section et_section_regular et_block_section"><div class="et_pb_row_0 et_pb_row et_block_row"><div class="et_pb_column_0 et_pb_column et_pb_column_4_4 et-last-child et_block_column et_pb_css_mix_blend_mode_passthrough"><div class="et_pb_text_0 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module"><div class="et_pb_text_inner"><h1>How to Backup your WordPress website via cPanel</h1>
</div></div><div class="et_pb_text_1 et_pb_text et_pb_bg_layout_light et_pb_module et_block_module"><div class="et_pb_text_inner"><p><span>A simple way to backup your WordPress site using cPanel.</span></p>
<p><span>If you'd like a PDF step-by-step version of the instructions please complete the opt-in box below the video.</span></p>
</div></div><div class="et_pb_code_0 et_pb_code et_pb_module"><div class="et_pb_code_inner"><style>
#ishow {
	width: 100%;
	height: 300px;
	background-color: orange;
	position: relative;
	margin-bottom: 32px;
}

.ishow-overlay {
	position: absolute;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 1;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 64px;
	cursor: pointer;
}

.ishow-frame {
	position: absolute;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0px;
	background-color: white;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	text-align: center;
}

.ishow-frame img {
	max-width: 100%;
	max-height: 100%;
	display: inline-block;
	padding: 0;
	box-sizing: border-box;
}

#ishow-branding {
	position: absolute;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	display: none;
	z-index: 999;
}

#ishow-branding #logo {
	position: absolute;
	top: 8px;
	right: 8px;
	height: 32px !important;
	padding: 8px;
	opacity: 0.8;
	background-color: white;
}

#ishow-caption {
	font-size: 18px;
	line-height: 24px;
	text-align: center;
	height: 24px;
	position: absolute;
	margin: auto;
	left: 0;
	right: 0;
	bottom: -29px;
	background-color: rgba(0,0,0,0.8);
	color: white;
	display: none;
	z-index: 999;
	white-space: nowrap;
}

@media screen and (max-width: 400px) {
	#ishow-caption {
		font-size: 12px;
		line-height: 24px;
		text-align: center;
		height: 24px;
	}
}

</style><script>
function IShow(containerDiv)
{
	this.debug = false;
	this.data = new IShowData();
	this.container = document.getElementById(containerDiv);
	this.overlay = null;
	this.branding = null;
	this.caption = null;
	this.frameRoot = "/";
	this.lastSecs = -1;
	this.toLoad = 0;
	this.audio = null;
	this.played = false;
	this.recurse = false;
	this.Init();
}

IShow.prototype.Init = function()
{
	if (this.container)
	{
		this.overlay = this.NewDiv(this.container, 'ishow-overlay');
		this.overlay.style.backgroundImage = "url('https://syrinxsystems.co.uk/wp-content/plugins/syrinx-explainer/play-glyph.png')";
		var that = this;
		this.overlay.addEventListener('click', function() { that.StartPlay(); });
	}
	this.branding = document.getElementById("ishow-branding");
	this.caption= document.getElementById("ishow-caption");
};

IShow.prototype.StartPlay = function()
{
	if (this.recurse)
	{
		return;
	}

	if (this.played)
	{
		if (this.branding)
		{
			this.branding.style.display = "block";
		}
		this.audio.play();
		return;
	}
	this.audio.play();
	this.audio.pause();

	this.recurse = true;
	if (this.branding)
	{
		this.branding.style.display = "block";
	}
	this.overlay.style.backgroundColor = "white";
	this.overlay.style.backgroundImage = "url('https://syrinxsystems.co.uk/wp-content/plugins/syrinx-explainer/spinner.gif')";
	this.toLoad = this.data.frames.length;
	for (var i=0; i<this.data.frames.length; i++)
	{
		var frameDiv = this.NewDiv(this.container, 'ishow-frame');
		frameDiv.style.display = "none";
		this.data.frames[i].div = frameDiv;
		var img = this.NewImg(frameDiv, this.data.frames[i]);
	}
	this.recurse = false;
};

IShow.prototype.Reset = function()
{
	for (var i=0; i<this.data.frames.length; i++)
	{
		this.data.frames[i].div.style.display = "none";		
	}
	this.overlay.style.display = "block";
	this.overlay.style.backgroundColor = "transparent";
	this.overlay.style.backgroundImage = "url('https://syrinxsystems.co.uk/wp-content/plugins/syrinx-explainer/play-glyph.png')";
	this.lastSecs = -1;
	if (this.branding)
	{
		this.branding.style.display = "none";
	}
};

IShow.prototype.NewDiv = function(parent, className)
{
	var newDiv = document.createElement('DIV');
	newDiv.className = className;
	parent.appendChild(newDiv);
	return newDiv;
};

IShow.prototype.NewImg = function(parent, frame)
{
	var newImg = document.createElement('IMG');
	var that = this;
	newImg.addEventListener('load', function() { that.LoadedImage(frame); });
	newImg.src = frame.url;
	parent.appendChild(newImg);
	return newImg;
};

IShow.prototype.NewAudio = function(parent, src)
{
	var newAudio = document.createElement('AUDIO');
	newAudio.src= src;
	if (this.debug)
	{
		newAudio.controls = "yes";
		newAudio.style.position = "absolute";
		newAudio.style.top= "-100px";
	}
	parent.appendChild(newAudio);
	return newAudio;
};

IShow.prototype.LoadedImage = function(frame)
{
	frame.loaded = true;
	this.toLoad --;
	if (this.toLoad == 0)
	{
		this.overlay.style.display = "none";
		this.audio.play();
	}
};

IShow.prototype.AddFrame = function(secs, frameId)
{
	var url = "https://syrinxsystems.co.uk/wp-content/uploads/syrinx-explainer/" + this.frameRoot + frameId + ".png";
	this.data.AddFrame(secs, url);
};

IShow.prototype.AddCaption = function(secs, text)
{
	this.data.AddCaption(secs, text);
};

IShow.prototype.AudioUpdate = function(frame)
{
	this.played = true;
	secs = Math.floor(this.audio.currentTime);
	if (secs > this.lastSecs)
	{
		this.lastSecs = secs;
		console.log(secs);
		this.ShowFrame(secs);
		this.ShowCaption(secs);
	}
	if (this.audio.currentTime >= this.audio.duration)
	{
		this.Reset();
	}
};

IShow.prototype.Audio = function(url)
{
	this.audio = this.NewAudio(this.container, url);
	var that = this;
	this.audio.addEventListener('timeupdate', function() { that.AudioUpdate(); });
};

IShow.prototype.ShowFrame = function(secs)
{
	var frame = null;
	for (var i=0; i<this.data.frames.length; i++)
	{
		if (secs >= this.data.frames[i].secs)
		{
			frame = this.data.frames[i];
		}
	}
	if (frame)
	{
		frame.div.style.display = "block";
	}
};

IShow.prototype.ShowCaption = function(secs)
{
	if (this.caption)
	{
		var text = "";
		for (var i=0; i<this.data.captions.length; i++)
		{
			if (secs >= this.data.captions[i].secs)
			{
				text = this.data.captions[i].text;
			}
		}
		if (text)
		{
			this.caption.innerHTML = text;
			this.caption.style.display = "block";
		}
		else
		{
			this.caption.innerHTML = "";
			this.caption.style.display = "none";
		}
	}
};




function IShowFrame(secs, url)
{
	this.secs = secs;
	this.url = url;
	this.loaded = false;
	this.div = null;
}

function IShowCaption(secs, text)
{
	this.secs = secs;
	this.text = text;
}

function IShowData()
{
	this.frames = new Array();
	this.captions = new Array();
}

IShowData.prototype.AddFrame = function(secs, url)
{
	var newFrame = new IShowFrame(secs, url);
	this.frames.push(newFrame);
};

IShowData.prototype.AddCaption = function(secs, text)
{
	var newCaption = new IShowCaption(secs, text);
	this.captions.push(newCaption);
};

</script><div id="ishow"><div id="ishow-branding"><img decoding="async" id="logo" src="https://syrinxsystems.co.uk/wp-content/plugins/syrinx-explainer/SyrinxLogo.png" /></div><div id="ishow-caption"></div></div><script>
var iShow = new IShow('ishow');
iShow.debug = false;
iShow.frameRoot = "/lm1/";
iShow.AddFrame(0,"backup-your-website");
iShow.AddFrame(5,"website-404");
iShow.AddFrame(21,"website-backup");
iShow.AddFrame(35,"typical-webhost");
iShow.AddFrame(38,"seen");
iShow.AddFrame(44,"wordpress");
iShow.AddFrame(48,"error");
iShow.AddFrame(52,"space-money");

iShow.AddFrame(58,"worried");
iShow.AddFrame(70,"cPanel-login");
iShow.AddFrame(83,"cPanel-backup-option");
iShow.AddFrame(92,"cPanel-backup-screen-1");
iShow.AddFrame(99,"cPanel-backup-screen-2");
iShow.AddFrame(100,"cPanel-backup-screen-3");
iShow.AddFrame(118,"cPanel-backup-screen-4");
iShow.AddFrame(121,"cPanel-backup-screen-5");
iShow.AddFrame(129,"downloaded-files");
iShow.AddFrame(156,"cPanel-backup-screen-1");
iShow.AddFrame(163,"cPanel-restore");
iShow.AddFrame(174,"thumbs-up");
iShow.Audio("https://syrinxsystems.co.uk/wp-content/uploads/syrinx-explainer/lm1/cpanel-backup.mp3");

iShow.AddCaption(1,"Just imagine…");
iShow.AddCaption(4,"You’re at your computer - and a message pops up.");
iShow.AddCaption(7,"Your website… has GONE.");
iShow.AddCaption(9,"Maybe it’s been hacked.");
iShow.AddCaption(11,"Or something’s gone wrong.");
iShow.AddCaption(14,"Either way - it just isn’t there any more.");
iShow.AddCaption(17,"So... how quickly can you get it back…?");
iShow.AddCaption(20,"Well, when did you make the last backup?");
iShow.AddCaption(23,"Do you even HAVE a backup?");
iShow.AddCaption(25,"And if you do, is it just the one?");
iShow.AddCaption(28,"Or do you have a full set of backups - for, say, the last year?");
iShow.AddCaption(35,"OK, so your host claims to back up everything you’ve got.");
iShow.AddCaption(38,"But have you ever SEEN the backup file?");
iShow.AddCaption(41,"Or perhaps you’ve set up a WordPress plugin.");
iShow.AddCaption(45,"Ever tried using it to restore your site?");
iShow.AddCaption(47,"Is it still supported?");
iShow.AddCaption(49,"And even if it is, how much space are those files taking up?");
iShow.AddCaption(54,"Because that could be costing you a lot of money.");
iShow.AddCaption(58,"Worried?");
iShow.AddCaption(59,"Don’t be.");
iShow.AddCaption(60,"There’s a simple way to back up your site.");
iShow.AddCaption(63,"And - better yet - it’s free.");
iShow.AddCaption(65,"Most providers use something called a cPanel dashboard.");
iShow.AddCaption(70,"But if you’ve never heard of it, don’t worry.");
iShow.AddCaption(72,"Your hosting company can tell you where and how to log in to it.");
iShow.AddCaption(76,"After all, it’s YOUR website!");
iShow.AddCaption(79,"So once you have the details, log in to cPanel.");
iShow.AddCaption(82,"And when you do...");
iShow.AddCaption(83,"… THIS is what you’ll see.");
iShow.AddCaption(86,"Now YOU’RE in control.");
iShow.AddCaption(88,"So start by selecting ‘Backup’. (Not ‘Backup Wizard’...) ");
iShow.AddCaption(92,"You should see...");
iShow.AddCaption(94,"...something like this.");
iShow.AddCaption(97,"Now you MIGHT be tempted to choose ‘Full Backup’.");
iShow.AddCaption(100,"But don’t.");
iShow.AddCaption(102,"It’ll save the entire backup into your hosting space.");
iShow.AddCaption(106,"And hosting space can be expensive...");
iShow.AddCaption(109,"The option you WANT - which might SURPRISE you");
iShow.AddCaption(112,"is ‘Partial Backups’. And when you CHOOSE it...");
iShow.AddCaption(115,"...THIS is what you’ll see.");
iShow.AddCaption(117,"Select ‘Home Directory’");
iShow.AddCaption(119,"And then select the database as well.");
iShow.AddCaption(122,"If there’s more than one, select them all.");
iShow.AddCaption(124,"Better safe than sorry.");
iShow.AddCaption(126,"And when you’re done...");
iShow.AddCaption(128,"...you should have two (or more) files like this.");
iShow.AddCaption(130,"The first is a compressed file,");
iShow.AddCaption(132,"that’s saved everything in your home directory.");
iShow.AddCaption(135,"The SECOND is your WordPress database.");
iShow.AddCaption(137,"Remember, there might be more than one.");
iShow.AddCaption(140,"And that’s it.");
iShow.AddCaption(142,"You’re done.");
iShow.AddCaption(143,"You have a backup.");
iShow.AddCaption(144,"Just save the files to a secure drive,");
iShow.AddCaption(146,"and keep them safe - in dated folders.");
iShow.AddCaption(149,"That way you can roll back as far");
iShow.AddCaption(151,"as you need to if something goes wrong.");
iShow.AddCaption(154,"Want to RESTORE a backup?");
iShow.AddCaption(156,"Easy.");
iShow.AddCaption(158,"Just go back into cPanel…");
iShow.AddCaption(160,"...and pick the ‘Restore’ options.");
iShow.AddCaption(162,"They’re down at bottom right.");
iShow.AddCaption(164,"Use these options to upload your home directory file…");
iShow.AddCaption(166,"...and your database file…");
iShow.AddCaption(168,"...and you’re done.");
iShow.AddCaption(170,"Your website is back up...");
iShow.AddCaption(172,"...with no fuss. No hassle. And no cost, either!");
iShow.AddCaption(176, "");

</script></div></div></div></div><div class="et_pb_row_1 et_pb_row et_pb_row_1-4_1-2_1-4 et_block_row et_block_row_1-4_1-2_1-4"><div class="et_pb_column_1 et_pb_column et_pb_column_1_4 et_block_column et_pb_column_empty et_pb_css_mix_blend_mode_passthrough"></div><div class="et_pb_column_2 et_pb_column et_pb_column_1_2 et_block_column et_pb_css_mix_blend_mode_passthrough"><div class="et_pb_signup_0 et_pb_signup et_pb_newsletter et_pb_subscribe et_pb_recaptcha_enabled et_pb_bg_layout_dark et_pb_module et_flex_module"><div class="et_pb_newsletter_description"><h2 class="et_pb_module_header">How to Backup your WordPress website via cPanel</h2><div class="et_pb_newsletter_description_content"><p>Just complete the form to receive your copy of the step-by-step PDF instructions on how to backup via cPanel</p>
</div></div><div class="et_pb_newsletter_form"><form method="post" class=""><div class="et_pb_newsletter_result et_pb_newsletter_error"></div><div class="et_pb_newsletter_result et_pb_newsletter_success"><h2>Please confirm your subscription to access your download.</h2></div><div class="et_pb_newsletter_fields et_flex_module"><p class="et_pb_newsletter_field et_pb_contact_field_last et_pb_contact_field_last_tablet et_pb_contact_field_last_phone"><label class="et_pb_contact_form_label" for="et_pb_signup_firstname" style="display: none;">Name</label><input class="input" id="et_pb_signup_firstname" type="text" placeholder="Name" name="et_pb_signup_firstname" /></p><p class="et_pb_newsletter_field et_pb_contact_field_last et_pb_contact_field_last_tablet et_pb_contact_field_last_phone"><label class="et_pb_contact_form_label" for="et_pb_signup_email" style="display: none;">Email</label><input class="input" id="et_pb_signup_email" type="text" placeholder="Email" name="et_pb_signup_email" /></p><p class="et_pb_newsletter_button_wrap"><a class="et_pb_button et_pb_newsletter_button" href="#"><span class="et_subscribe_loader"></span><span class="et_pb_newsletter_button_text">Yes, please</span></a></p><div class="et_pb_newsletter_footer"><p style="text-align: center; font-size: 12px;">We will never share your details</p>
</div></div><input type="hidden" name="et_pb_signup_provider" value="aweber" /><input type="hidden" name="et_pb_signup_list_id" value="" /><input type="hidden" name="et_pb_signup_account_name" value="5735142" /><input type="hidden" name="et_pb_signup_ip_address" value="true" /><input type="hidden" name="et_pb_signup_checksum" value="f4b291296d24e4be80ebad1862309d75" /></form></div></div></div><div class="et_pb_column_3 et_pb_column et_pb_column_1_4 et-last-child et_block_column et_pb_column_empty et_pb_css_mix_blend_mode_passthrough"></div></div></div>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
