<?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>Missing Button</title>
	<atom:link href="http://missingbutton.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://missingbutton.co.uk</link>
	<description>Web Design and Marketing &#124; London</description>
	<lastBuildDate>Sat, 03 Mar 2012 11:49:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>How to backup WordPress</title>
		<link>http://missingbutton.co.uk/blog/tutorials/how-to-backup-wordpress/</link>
		<comments>http://missingbutton.co.uk/blog/tutorials/how-to-backup-wordpress/#comments</comments>
		<pubDate>Tue, 19 Apr 2011 16:07:31 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://missingbutton.co.uk/?p=503</guid>
		<description><![CDATA[If you&#8217;re reading this tutorial as an existing customer of Missing Button, don&#8217;t worry we&#8217;ve got your WordPress site secured! However if you&#8217;re a non-customer, you&#8217;ll probably need to backup your website yourself. Don&#8217;t worry, it&#8217;s very quick and easy. WordPress (WP) sites are made up two elements: files and a database. Essentially, the files contain &#8230; <a href="http://missingbutton.co.uk/blog/tutorials/how-to-backup-wordpress/" class="read-more">Read more</a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" title="Wordpress logo" src="http://www.cub3d.co.uk/wp-content/2009/01/wordpress-logo.png" alt="" width="254" height="239" />If you&#8217;re reading this tutorial as an existing customer of Missing Button, don&#8217;t worry we&#8217;ve got your WordPress site secured! However if you&#8217;re a non-customer, you&#8217;ll probably need to backup your website yourself. Don&#8217;t worry, it&#8217;s very quick and easy.</p>
<p>WordPress (WP) sites are made up two elements: <span style="text-decoration: underline;">files</span> and a <span style="text-decoration: underline;">database</span>. Essentially, the files contain the design aspect of your site. The database store the details and content of your pages, blog posts and WP settings. You&#8217;ll need to backup <span style="text-decoration: underline;">both</span> to accomplish a &#8220;full backup&#8221;. Below is the <strong>manual way to accomplish a full backup</strong> of your site &#8211; and personally the best way as you can&#8217;t always rely on plugins!</p>
<h2>Backup your Files (via a File Manager)</h2>
<ol>
<li>Log into your hosting account so you can manage the files of your website. There are plenty of interfaces for this (cPanel, ISPManager etc) but generally look for something called the <strong>File Manager</strong>.</li>
<li>Locate the root directory for your WordPress installation, and look for a folder called <strong>wp-content. </strong>This folder essentially contains the make-up of your website including all the plugins and images you use. Everything outside of &#8220;wp-content&#8221; folder can be ignored as they are the WordPress core files which appear by default when <a href="http://wordpress.org/download/" target="_blank">downloading and installing any version of WP</a>.</li>
<li>Backing up your files using the File Manager is great because you can quickly create a ZIP or TGZ to compress the entire contents of the items you&#8217;ve selected. Select the folder called <strong>wp-content</strong> and click the compress button. It might be called something similar plus feature an icon like this&#8230;<br />
<img class="alignnone" title="cPanel compress" src="http://www.thewebhostinghero.com/wp-content/uploads/2009/07/cpanel-file-compression-3.jpg" alt="" width="79" height="72" /></li>
<li>Wait a moment while it compresses. Once it&#8217;s complete, download the newly created ZIP or TGZ (unless it has done this automatically) onto your computer. Rename the file appropriately &#8211; usually you would include the current date (eg. &#8220;mydomain-05-08-2011.zip&#8221;). Keep this file stored safely.</li>
</ol>
<p>That&#8217;s how to backup the design files of your website. To <span style="text-decoration: underline;">restore your files again</span> just upload the compressed file to the root directory of your WP installation and expand/extract the file to unpack the contents as they once were. Now for part two&#8230;.</p>
<h2>Backup your Database (via phpMyAdmin)</h2>
<p><span style="font-size: 13px; font-weight: normal;">Most website owners can manage their databases using phpMyAdmin. If you are unsure of this part then simply just use <a href="http://wordpress.org/extend/plugins/wp-db-backup/" target="_blank">this WP plugin</a> to accomplish the same task.</span></p>
<ol>
<li><strong>Log into phpMyAdmin</strong>. Usually you just point your browser to <em>mydomain.com/myadmin </em>and login using the details given to you by your hosting provider.</li>
<li>On the left hand side click the database which your WP site uses.</li>
<li>You&#8217;ll be displayed with a number of tables. Depending on the version of phpMyAdmin you&#8217;re using, there should be a tab called Export. <strong>Click Export</strong>.</li>
<li>Ensure you click <strong>Select All</strong>, to select all the tables of your database.</li>
<li>Check the &#8220;Add DROP TABLE&#8221; box. (This can be useful for over-writing an existing database.)</li>
<li>Check the &#8220;Add IF NOT EXISTS&#8221; check box. (This prevents errors during restores if the tables are already there.)</li>
<li>You can optionally check the &#8220;Complete inserts&#8221; box. (Though it won&#8217;t matter too much if you don&#8217;t.)</li>
<li>You can optionally check the Extended Inserts if you wish. (This gives a smaller, but less readable, output file.)</li>
<li>Check the &#8220;<strong>Save as File</strong>&#8221; box</li>
<li>Check the &#8220;None&#8221; for compression. If your database is very large use a compression method.</li>
<li>Click the <strong>Go</strong> button on the bottom right. The data will now be saved into your computer.</li>
</ol>
<p>That&#8217;s it! Again rename this file appropriately and store alongside the compressed file that you have of your files.</p>
<h2>To <strong>restore your database</strong>:</h2>
<ol>
<li>On phpMyAdmin, first delete all the existing tables. On the Structure tab, tick every table and select &#8220;drop&#8221; from the dropdown list. Click Go.</li>
<li>Click the Import tab. Where it says &#8220;Location of the text file&#8221; locate the file of your database backup file.</li>
<li>Click Go. It may be instance or take a little while, but once done it&#8217;ll give you a message saying it has successfully complete!</li>
</ol>
<p>When restoring your WordPress website, just ensure that the settings in the file <strong>wp-config.php</strong> match exactly the details of your database name, username and password.</p>
]]></content:encoded>
			<wfw:commentRss>http://missingbutton.co.uk/blog/tutorials/how-to-backup-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Perfect Customer</title>
		<link>http://missingbutton.co.uk/blog/news/the-perfect-customer/</link>
		<comments>http://missingbutton.co.uk/blog/news/the-perfect-customer/#comments</comments>
		<pubDate>Tue, 05 Apr 2011 15:38:21 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://missingbutton.co.uk/?p=486</guid>
		<description><![CDATA[You may have read our story about Derek the Plumber, but if you haven&#8217;t then I would certainly recommend it! The tale not only re-captures the success story of Derek&#8217;s business but also explains the birth of Missing Button. Introducing my Dad&#8217;s business to the online world the right way proved to be the perfect &#8230; <a href="http://missingbutton.co.uk/blog/news/the-perfect-customer/" class="read-more">Read more</a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-487" title="helpkey" src="http://missingbutton.co.uk/wp-content/uploads/2011/04/helpkey.jpg" alt="" width="161" height="164" />You may have read our story about <a title="Success Story" href="http://missingbutton.co.uk/?p=2">Derek the Plumber</a>, but if you haven&#8217;t then I would certainly recommend it! The tale not only re-captures the success story of Derek&#8217;s business but also explains the birth of Missing Button.</p>
<p>Introducing my Dad&#8217;s business to the online world the right way proved to be the perfect remedy for getting his business through the recession with flying colours. Relying whole heartedly on word-of-mouth or the Yellow Pages just isn&#8217;t going to cut the mustard these days, especially not considering that the average person in the UK today will find a tradesman via a simple Google search.</p>
<p>Why would someone trawl through a huge book of services or ask around for a plumber when they can find someone in seconds using the internet? Today a business without a website is commercial suicide, so we set up Missing Button to help these very people.</p>
<h2>Free Advice</h2>
<p>Of course we are happy to help a project, business or personal website of any scale &#8211; but Missing Button&#8217;s perfect customer would be someone who could benefit from our web and marketing skills the most. We&#8217;ve all heard the sad stories of failing businesses and the unfortunate knock-on effects that is has to their family. We don&#8217;t want this to happen to you or any anyone that you might know, so even if you&#8217;re looking for some free advice we&#8217;d love to hear from you.</p>
<p>You can contact us easily using the simple form to the lower right or email us at <a href="mailto:hello@missingbutton.co.uk">hello@missingbutton.co.uk</a></p>
]]></content:encoded>
			<wfw:commentRss>http://missingbutton.co.uk/blog/news/the-perfect-customer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ahoy!</title>
		<link>http://missingbutton.co.uk/blog/news/ahoy/</link>
		<comments>http://missingbutton.co.uk/blog/news/ahoy/#comments</comments>
		<pubDate>Fri, 25 Mar 2011 15:28:56 +0000</pubDate>
		<dc:creator>Dan</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[hosting]]></category>

		<guid isPermaLink="false">http://missingbutton.co.uk/?p=468</guid>
		<description><![CDATA[The time is nearing for Missing Button to finally set sail and launch full-steam ahead. For a while now we’ve been building and hosting websites for friends and family but it’ll be great to really start getting involved with the lives of the unknown. We&#8217;re looking forward to meeting people with a great new or &#8230; <a href="http://missingbutton.co.uk/blog/news/ahoy/" class="read-more">Read more</a>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" style="margin-right: 10px;" title="Ahoy" src="http://www.depikolzvane.com/eng/images/brod/boat-cartoon-fish.jpg" alt="" width="181" height="181" />The time is nearing for Missing Button to finally set sail and launch full-steam ahead. For a while now we’ve been building and hosting websites for friends and family but it’ll be great to really start getting involved with the lives of the unknown.</p>
<p>We&#8217;re looking forward to meeting people with a great new or existing project/business, then becoming a key role in making it a success. Please take a look around our own website to discover all the services we offer, but rest assured we do the whole package. Web design, hosting, marketing, PR and web management: our aim is to keep things simple for you &#8211; all in one place.</p>
<p>We&#8217;ve harnessed our skills together so your website will go hand-in-hand with your marketing strategy: it&#8217;s all a part of your brand so avoid complicating the look and feel of your business by having the entire team together, working together.</p>
<h2>The Blog</h2>
<p>Why not have a way which we can let people know what we&#8217;re up to or what&#8217;s on our minds? Exactly. So we&#8217;ll use this space to post Missing Button news, news on the industry or perhaps discuss topical events. To be immediately notified of our blog posts you can subscribe using our <a href="http://missingbutton.co.uk/feed/">RSS feed</a> or enter your email address in the form below.</p>
<p>Feel free to send us an email to <a href="mailto:hello@missingbutton.co.uk">hello@missingbutton.co.uk</a> with any questions you may have as we&#8217;ll be happy to help.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://missingbutton.co.uk/blog/news/ahoy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

