<?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>Technology Solved</title>
	<atom:link href="http://technology-solved.co.uk/feed/" rel="self" type="application/rss+xml" />
	<link>http://technology-solved.co.uk</link>
	<description>Hints, tips and tutorials for wordpress and the net at large</description>
	<lastBuildDate>Thu, 23 May 2013 16:34:13 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>CSS Tip: Absolute Positioning Inside Relative Positioning</title>
		<link>http://technology-solved.co.uk/2013/05/css-tip-absolute-positioning-inside-relative-positioning/</link>
		<comments>http://technology-solved.co.uk/2013/05/css-tip-absolute-positioning-inside-relative-positioning/#comments</comments>
		<pubDate>Thu, 23 May 2013 16:17:46 +0000</pubDate>
		<dc:creator>Tim Marchant</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://technology-solved.co.uk/?p=888</guid>
		<description><![CDATA[<p>I was having a little problem with styling a WordPress/Genesis Author Box. The normal layout is that there is an avatar in the top left hand corner around which the text flows- like this: However, what the client wanted was for the all text to be indented, in a neat column to the right of [...]</p><p>The post <a href="http://technology-solved.co.uk/2013/05/css-tip-absolute-positioning-inside-relative-positioning/">CSS Tip: Absolute Positioning Inside Relative Positioning</a> appeared first on <a href="http://technology-solved.co.uk">Technology Solved</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>I was having a little problem with styling a WordPress/Genesis Author Box. The normal layout is that there is an avatar in the top left hand corner around which the text flows- like this:</p>
<p><img class="alignnone size-full wp-image-889" alt="author-box-1" src="http://technology-solved.co.uk/wp-content/uploads/2013/05/author-box-1.jpg" width="650" height="147" /></p>
<p>However, what the client wanted was for the all text to be indented, in a neat column to the right of the image, like this:</p>
<p><a href="http://technology-solved.co.uk/wp-content/uploads/2013/05/author-box-2.jpg"><img class="alignnone size-full wp-image-890" alt="author-box-2" src="http://technology-solved.co.uk/wp-content/uploads/2013/05/author-box-2.jpg" width="650" height="147" /></a></p>
<p>Now, my first reaction was that I would need to edit the code which generates the author box, so that the image was wrapped in a block level element, which would then push the text across as required&#8230; or something like that. That is a fairly complicated thing to do requiring edits to functions.php and completely disproportionate to what is a pretty minor layout change. I braced myself for the labours ahead.</p>
<p>Then I came across a short article called <a href="http://css-tricks.com/absolute-positioning-inside-relative-positioning/">Absolute Positioning Inside Relative Positioning</a> at CSS Tricks. As the article says &#8211; &#8220;To some, this is obvious. To others, this may be one of those <a href="http://css-tricks.com/people-share-their-css-ah-ha-moments/">CSS &#8220;Ah-ha!&#8221; Moments.</a>&#8221; It was for me &#8211; I didn&#8217;t know you could do that!</p>
<p>The point is as the article says &#8220;A page element with <strong>relative positioning</strong> gives you the control to <strong>absolutely position</strong> children elements inside of it.&#8221;</p>
<p>In my case, restyling the author box took just a couple of minutes and two lines of CSS:<code></code></p>
<p><code>.author-box div {position:relative;margin-left:90px}<br />
.author-box img {position:absolute;left:-90px}<br />
</code></p>
<p>The first line moves all the box contents 90px to the right, the second moves just the image 90px to the left. All done!</p>
<p>The post <a href="http://technology-solved.co.uk/2013/05/css-tip-absolute-positioning-inside-relative-positioning/">CSS Tip: Absolute Positioning Inside Relative Positioning</a> appeared first on <a href="http://technology-solved.co.uk">Technology Solved</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://technology-solved.co.uk/2013/05/css-tip-absolute-positioning-inside-relative-positioning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to improve your page load speed using pingdom.</title>
		<link>http://technology-solved.co.uk/2013/04/speed-up-your-blog-using-pingdom/</link>
		<comments>http://technology-solved.co.uk/2013/04/speed-up-your-blog-using-pingdom/#comments</comments>
		<pubDate>Mon, 29 Apr 2013 19:32:30 +0000</pubDate>
		<dc:creator>jax</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://technology-solved.co.uk/?p=876</guid>
		<description><![CDATA[<p>Why would you check your page load speed in the first place? If you&#8217;re like me, you hate hanging around waiting for a page to load. So have you considered checking how speedy your own blog is? There are some simple tests you can do to check what&#8217;s going on &#8211; one resource I&#8217;ve used [...]</p><p>The post <a href="http://technology-solved.co.uk/2013/04/speed-up-your-blog-using-pingdom/">How to improve your page load speed using pingdom.</a> appeared first on <a href="http://technology-solved.co.uk">Technology Solved</a>.</p>]]></description>
				<content:encoded><![CDATA[<h1>Why would you check your page load speed in the first place?</h1>
<p>If you&#8217;re like me, you hate hanging around waiting for a page to load. So have you considered checking how speedy your own blog is? There are some simple tests you can do to check what&#8217;s going on &#8211; one resource I&#8217;ve used is called <a href="http://tools.pingdom.com/">pingdom</a>, and it highlighted a quick and easy fix I could do that improved my page load time.</p>
<p>I tested my lovely personal blog <a href="http://liveotherwise.co.uk/makingitup">Making it up</a> &#8211; it&#8217;s quite a busy site and so I think it&#8217;s important that&#8217;s it&#8217;s reactive.</p>
<h2>First test result</h2>
<div id="attachment_878" class="wp-caption aligncenter" style="width: 610px"><a href="http://technology-solved.co.uk/wp-content/uploads/2013/04/speedtest1.jpg"><img class="size-full wp-image-878" alt="Speed test result 1" src="http://technology-solved.co.uk/wp-content/uploads/2013/04/speedtest1.jpg" width="600" height="284" /></a><p class="wp-caption-text">Speed test result 1</p></div>
<p>Not bad, but I might be able to do better. So I check through the results and find a warning.</p>
<p><a style="line-height: 1.714285714; font-size: 1rem;" href="http://technology-solved.co.uk/wp-content/uploads/2013/04/missingfiledetails.jpg"><img class="aligncenter size-full wp-image-879" alt="missingfiledetails" src="http://technology-solved.co.uk/wp-content/uploads/2013/04/missingfiledetails.jpg" width="961" height="439" /></a></p>
<h2>Take action</h2>
<p>I&#8217;ve got a missing file &#8211; icon-dot.png. And as it&#8217;s called from my theme it&#8217;s going to affect every page on my site. Not good. Very easy to fix though &#8211; I go and look for it and put it back where it should be.</p>
<p>And retest.</p>
<p><a href="http://technology-solved.co.uk/wp-content/uploads/2013/04/speedtest2.jpg"><img class="aligncenter size-full wp-image-880" alt="speedtest2" src="http://technology-solved.co.uk/wp-content/uploads/2013/04/speedtest2.jpg" width="600" height="289" /></a>I&#8217;ve gone up two percent against the rest of the test base. Dropped my load time from 2.51s to 2.36s. Not a huge improvement, but if you&#8217;ve more than one problem you could easily get a much more exciting result.</p>
<p>Just to confirm:</p>
<p><a href="http://technology-solved.co.uk/wp-content/uploads/2013/04/filedetails.jpg"><img class="aligncenter size-full wp-image-877" alt="filedetails" src="http://technology-solved.co.uk/wp-content/uploads/2013/04/filedetails.jpg" width="945" height="473" /></a></p>
<p>That&#8217;s the miscreant file, returned to its proper position. You can see its little load bar is looking much better.</p>
<p>Pingdom is a great tool for testing out the page load speed of your website &#8211; and often you can find little problems, easy to fix, that will make a big difference.</p>
<p>(To be fair, I&#8217;d already done a variety of other interesting improvements to help with load time, but I&#8217;m letting them bed down properly before I write them up. You&#8217;ll probably want to check back to see how I get on &#8211; why not subscribe to my RSS?)</p>
<p>&nbsp;</p>
<p>The post <a href="http://technology-solved.co.uk/2013/04/speed-up-your-blog-using-pingdom/">How to improve your page load speed using pingdom.</a> appeared first on <a href="http://technology-solved.co.uk">Technology Solved</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://technology-solved.co.uk/2013/04/speed-up-your-blog-using-pingdom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress under attack &#8211; how to protect your site from the admin account hack.</title>
		<link>http://technology-solved.co.uk/2013/04/wordpress-under-attack-how-to-protect-your-site/</link>
		<comments>http://technology-solved.co.uk/2013/04/wordpress-under-attack-how-to-protect-your-site/#comments</comments>
		<pubDate>Sun, 14 Apr 2013 16:56:35 +0000</pubDate>
		<dc:creator>jax</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Newsflash]]></category>
		<category><![CDATA[admin account hack]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://technology-solved.co.uk/?p=844</guid>
		<description><![CDATA[<p>There&#8217;s an Ars Technica article flying around right now about a massive attack on wordpress sites around the internet attempting to build a super botnet. The attack is working by targeting a particular user account that the vast majority of sites have, including this one. According to CloudFlare&#8217;s Prince, the distributed attacks are attempting to [...]</p><p>The post <a href="http://technology-solved.co.uk/2013/04/wordpress-under-attack-how-to-protect-your-site/">WordPress under attack &#8211; how to protect your site from the admin account hack.</a> appeared first on <a href="http://technology-solved.co.uk">Technology Solved</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>There&#8217;s an Ars Technica article flying around right now about a<a href="http://arstechnica.com/security/2013/04/huge-attack-on-wordpress-sites-could-spawn-never-before-seen-super-botnet/"> massive attack on wordpress sites around the internet</a> attempting to build a super botnet. The attack is working by targeting a particular user account that the vast majority of sites have, including this one. </p>
<blockquote><p>According to CloudFlare&#8217;s Prince, the distributed attacks are attempting to brute force the administrative portals of WordPress servers, employing the username &#8220;admin&#8221; and 1,000 or so common passwords.</p></blockquote>
<p>User access to wordpress relies on knowing three things. A user id, a password, and a login location. This attack is assuming that there will be an administrator account with the user id admin, and is then firing a brute force attack trying to decode the password. Advice to change your password is not necessarily going to help &#8211; it might be that your password of choice is one of the 1000 common ones being used as mentioned above. If you go for a long password with a mixture of letters, number and characters you&#8217;re going to be much safer. But if you get rid of the account called admin, you&#8217;re going to be immune to this particular attack at least.</p>
<p>First thing to do, check if you&#8217;ve got an admin account. Go into your dashboard, select users> all users. You should see something a bit like this. (As ever, click to see it larger.)</p>
<p><a href="http://technology-solved.co.uk/wp-content/uploads/2013/04/userpanelwordpress.png"><img src="http://technology-solved.co.uk/wp-content/uploads/2013/04/userpanelwordpress-300x111.png" alt="user panel wordpress" width="300" height="111" class="alignnone size-medium wp-image-845" /></a></p>
<p>As you can see, I do indeed have an admin account. It will have a strong password &#8211; we have a rule that passwords must be at least 8 characters with a mix of numbers, letters and characters. But I&#8217;ve decided we&#8217;re going to get rid of it anyway. </p>
<p>Step one &#8211; create a new administrator level account. If you&#8217;ve only got one email address to play with, you&#8217;re going to have to take it out of the existing admin account before you can create the new one. Make sure you give the new account a strong password that you can remember.</p>
<p>Step two &#8211; log in with the new account. Delete the existing admin account. You might be worrying about what will happen to posts associated with that account &#8211; don&#8217;t. You&#8217;ll get this dialog up with the choice of who to attribute them to. Pass them to your new user.</p>
<p><a href="http://technology-solved.co.uk/wp-content/uploads/2013/04/deleteusersdialog.png"><img src="http://technology-solved.co.uk/wp-content/uploads/2013/04/deleteusersdialog.png" alt="deleteusersdialog" width="371" height="280" class="alignnone size-full wp-image-854" /></a></p>
<p>And there you go. You now have a wordpress installation without the admin account currently under attack across the internet. </p>
<p>Of course, that&#8217;s nowhere near the only thing you can do to protect your beloved blog/website, but it&#8217;s an excellent starting point. If you want to go into more detail, you might want to explore a <a href="http://wordpress.org/extend/plugins/better-wp-security/">security plugin like this one</a> which will, among other things, allow you to rename the admin account without going through the process I&#8217;ve detailed here. And the other thing that&#8217;s important to do is keep your theme and plugins updated. Like I&#8217;m just about to.</p>
<p>If you&#8217;ve found this article helpful, please feel free to share it, and subscribe to my blog. Thanks for dropping by. </p>
<p>The post <a href="http://technology-solved.co.uk/2013/04/wordpress-under-attack-how-to-protect-your-site/">WordPress under attack &#8211; how to protect your site from the admin account hack.</a> appeared first on <a href="http://technology-solved.co.uk">Technology Solved</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://technology-solved.co.uk/2013/04/wordpress-under-attack-how-to-protect-your-site/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>sneak preview</title>
		<link>http://technology-solved.co.uk/2013/04/just-testing/</link>
		<comments>http://technology-solved.co.uk/2013/04/just-testing/#comments</comments>
		<pubDate>Sun, 14 Apr 2013 16:37:50 +0000</pubDate>
		<dc:creator>jax</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://technology-solved.co.uk/?p=851</guid>
		<description><![CDATA[<p>This is a test post. All will become clear shortly</p><p>The post <a href="http://technology-solved.co.uk/2013/04/just-testing/">sneak preview</a> appeared first on <a href="http://technology-solved.co.uk">Technology Solved</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>This is a test post. All will become clear shortly <img src='http://technology-solved.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>The post <a href="http://technology-solved.co.uk/2013/04/just-testing/">sneak preview</a> appeared first on <a href="http://technology-solved.co.uk">Technology Solved</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://technology-solved.co.uk/2013/04/just-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Terminology untangled &#8211; anchor text and links, or how to make them work for you.</title>
		<link>http://technology-solved.co.uk/2013/02/terminology-untangled-anchor-text-and-links-or-how-to-make-them-work-for-you/</link>
		<comments>http://technology-solved.co.uk/2013/02/terminology-untangled-anchor-text-and-links-or-how-to-make-them-work-for-you/#comments</comments>
		<pubDate>Sat, 16 Feb 2013 01:42:12 +0000</pubDate>
		<dc:creator>jax</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://technology-solved.co.uk/?p=817</guid>
		<description><![CDATA[<p>I think we&#8217;ve got to a point now, if you&#8217;ve made it to this website, where you know what a URL is. (I&#8217;m not talking about what it stands for, which is Uniform Resource Locator, but what it is.) It&#8217;s that thing you type in the address bar to get to a website &#8211; it [...]</p><p>The post <a href="http://technology-solved.co.uk/2013/02/terminology-untangled-anchor-text-and-links-or-how-to-make-them-work-for-you/">Terminology untangled &#8211; anchor text and links, or how to make them work for you.</a> appeared first on <a href="http://technology-solved.co.uk">Technology Solved</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>I think we&#8217;ve got to a point now, if you&#8217;ve made it to this website, where you know what a URL is. (I&#8217;m not talking about what it stands for, which is Uniform Resource Locator, but what it is.) It&#8217;s that thing you type in the address bar to get to a website &#8211; it starts with http:// and includes the domain name and so on. And most people know if they want to add a link in to their post, they need to copy that in. But do you know how to make it look pro? WordPress gives you a tool for it. If you&#8217;re in the visual editor it&#8217;s right there, looks like this <a href="http://technology-solved.co.uk/wp-content/uploads/2013/02/linkicon.png"><img class="alignnone size-full wp-image-818" alt="linkicon" src="http://technology-solved.co.uk/wp-content/uploads/2013/02/linkicon.png" width="863" height="74" /></a>     When you click it you get this little box <a href="http://technology-solved.co.uk/wp-content/uploads/2013/02/linkinsertbox.png"><img class="alignnone size-full wp-image-819" alt="linkinsertbox" src="http://technology-solved.co.uk/wp-content/uploads/2013/02/linkinsertbox.png" width="480" height="232" /></a></p>
<p>Now, it&#8217;s fairly obvious that you put the place you want to link to in the top slot. But what&#8217;s the title all about? Well, that comes up if you mouseover a link. It&#8217;s used by some screenreaders, but <a href="http://www.searchenginejournal.com/how-to-use-link-title-attribute-correctly/7687/">absolutely shouldn&#8217;t be stuffed with SEO</a> stuff, so don&#8217;t even go there.</p>
<p>Now you might notice that there&#8217;s some text in my paragraph that&#8217;s linked there. I did that by selecting the text *before* I clicked the link tool. And the text that is hyperlinked is called the anchor text &#8211; it&#8217;s information about what the link is going to be about. So, if you want to link to someone&#8217;s blog, for example, you might write about <a href="http://notdifferentbutinteresting.wordpress.com">Not different but interesting</a>, then select that text, click your link tool, insert the URL and away you go. You&#8217;ve got to admit it looks better in the flow of your post than having http://notdifferentbutinteresting.wordpress.com hyperlinked? And it tells the reader (and the search engines) what you think that link is about. Wins all round. Give it a try next time you want to put a link in. (Note blogger has a similar tool. The dialog is a bit better though: <a href="http://technology-solved.co.uk/wp-content/uploads/2013/02/bloggerlinkdialog.png"><img class="alignnone size-full wp-image-820" alt="bloggerlinkdialog" src="http://technology-solved.co.uk/wp-content/uploads/2013/02/bloggerlinkdialog.png" width="536" height="368" /></a></p>
<p>So it&#8217;s got a place to type in the text, makes it plain what you&#8217;re putting in linkwise, and even mentions rel=nofollow. If you want to do that on wordpress, you&#8217;re going to need a plugin or the text bit of your editor. Let&#8217;s cover that, and why you might want to use it, in another post.)</p>
<p>The post <a href="http://technology-solved.co.uk/2013/02/terminology-untangled-anchor-text-and-links-or-how-to-make-them-work-for-you/">Terminology untangled &#8211; anchor text and links, or how to make them work for you.</a> appeared first on <a href="http://technology-solved.co.uk">Technology Solved</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://technology-solved.co.uk/2013/02/terminology-untangled-anchor-text-and-links-or-how-to-make-them-work-for-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More on G+ &#8211; authorship on self hosted wordpress including multi author sites.</title>
		<link>http://technology-solved.co.uk/2013/02/more-on-g-authorship-on-self-hosted-wordpress-including-multi-author-sites/</link>
		<comments>http://technology-solved.co.uk/2013/02/more-on-g-authorship-on-self-hosted-wordpress-including-multi-author-sites/#comments</comments>
		<pubDate>Thu, 07 Feb 2013 19:14:53 +0000</pubDate>
		<dc:creator>jax</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Social media.]]></category>

		<guid isPermaLink="false">http://technology-solved.co.uk/?p=809</guid>
		<description><![CDATA[<p>Yesterday I wrote about how to claim authorship for your wordpress.com site. The technique I used included displaying a profile badge on your blog. You might not want to do that (perhaps you&#8217;d like to display a page badge instead, more on that in another article), or you may have more than one author on [...]</p><p>The post <a href="http://technology-solved.co.uk/2013/02/more-on-g-authorship-on-self-hosted-wordpress-including-multi-author-sites/">More on G+ &#8211; authorship on self hosted wordpress including multi author sites.</a> appeared first on <a href="http://technology-solved.co.uk">Technology Solved</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Yesterday I wrote about <a href="http://technology-solved.co.uk/2013/02/getting-into-the-g-groove-google-authorship-and-wordpress-com/">how to claim authorship for your wordpress.com site</a>. The technique I used included displaying a profile badge on your blog. You might not want to do that (perhaps you&#8217;d like to display a page badge instead, more on that in another article), or you may have more than one author on your site, like I have on <a href="http://liveotherwise.co.uk/makingitup">Making it up</a>, so need something a little different.</p>
<p>Don&#8217;t worry, this is still straightforward. There are plugins, such as <a href="http://yoast.com/push-rel-author-head/">Yoast</a>, that will achieve this for you, or you may be able to do it with your theme, particularly if you&#8217;re using a premium theme like <a href="http://www.copyblogger.com/wordpress-google-authorship/">Genesis from Studio press</a>, but it&#8217;s very simple to do it yourself. Basically, there are two steps.</p>
<p>Step 1 &#8211; each author needs to list your blog in the contributing section of their google profile.</p>
<p>So my profile looks like this:<br />
<a href="http://technology-solved.co.uk/wp-content/uploads/2013/02/g+profile.jpg"><img class="alignnone size-medium wp-image-810" alt="g+ profile showing contributing sites" src="http://technology-solved.co.uk/wp-content/uploads/2013/02/g+profile-300x244.jpg" width="300" height="244" /></a> (as ever, click to embiggen).</p>
<p>Step 2.<br />
In your wordpress admin, find users on the left hand side. Select, then select yourself. In the biographical info section, you&#8217;re going to put your g+ profile link with the rel=&#8221;author&#8221; tag. So mine looks like this:<br />
<a href="http://technology-solved.co.uk/wp-content/uploads/2013/02/wpuserinfo.jpg"><img class="alignnone size-medium wp-image-811" alt="wordpress user info showing biographical info field" src="http://technology-solved.co.uk/wp-content/uploads/2013/02/wpuserinfo-300x190.jpg" width="300" height="190" /></a></p>
<p>And I&#8217;ve got code looking like this:<br />
<script src="https://gist.github.com/techsolved/5059031.js"></script><br />
in there.</p>
<p>(If you cut and paste this handy code, do remember to swap out my name and profile number for yours!)</p>
<p>If you&#8217;ve only the one author, you&#8217;re done. Otherwise, you repeat for each individual author.</p>
<p>You can test that you&#8217;ve got it all working fine by using the <a href="http://www.google.com/webmasters/tools/richsnippets">rich snippet testing tool</a>.</p>
<p>If you have any problems getting this working, do let me know via the comments box, or ping me on <a href="http://twitter.com/liveotherwise">twitter</a> or even via <a href="https://plus.google.com/u/0/102277687482558539243/">g+</a> <img src='http://technology-solved.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>The post <a href="http://technology-solved.co.uk/2013/02/more-on-g-authorship-on-self-hosted-wordpress-including-multi-author-sites/">More on G+ &#8211; authorship on self hosted wordpress including multi author sites.</a> appeared first on <a href="http://technology-solved.co.uk">Technology Solved</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://technology-solved.co.uk/2013/02/more-on-g-authorship-on-self-hosted-wordpress-including-multi-author-sites/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Getting into the g+ groove &#8211; google authorship and wordpress.com</title>
		<link>http://technology-solved.co.uk/2013/02/getting-into-the-g-groove-google-authorship-and-wordpress-com/</link>
		<comments>http://technology-solved.co.uk/2013/02/getting-into-the-g-groove-google-authorship-and-wordpress-com/#comments</comments>
		<pubDate>Wed, 06 Feb 2013 18:51:35 +0000</pubDate>
		<dc:creator>jax</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Social media.]]></category>

		<guid isPermaLink="false">http://technology-solved.co.uk/?p=793</guid>
		<description><![CDATA[<p>There&#8217;s a new social network in town, and it&#8217;s not going to go away in a hurry. If you&#8217;re getting ready to hangout on g+ (see what I did there?) one of the things you should be thinking about is claiming authorship. Don&#8217;t know what that is? Quite simple. If you try checking out the [...]</p><p>The post <a href="http://technology-solved.co.uk/2013/02/getting-into-the-g-groove-google-authorship-and-wordpress-com/">Getting into the g+ groove &#8211; google authorship and wordpress.com</a> appeared first on <a href="http://technology-solved.co.uk">Technology Solved</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><script type="text/javascript" src="https://apis.google.com/js/plusone.js"></script></p>
<p>There&#8217;s a new social network in town, and it&#8217;s not going to go away in a hurry. If you&#8217;re getting ready to <a href="http://techforteens.com/80/google-hangouts">hangout on g+</a> (see what I did there?) one of the things you should be thinking about is claiming authorship. Don&#8217;t know what that is?</p>
<p>Quite simple. If you try checking out the search listings these days, you should see some articles come up with a fetching headshot of the author next to them.  Those authors have claimed authorship of that article via google. You can claim authorship across multiple sites, but for today I&#8217;m going to concentrate on wordpress.com blogs.</p>
<p>After some experimentation, it seems to me there are two major ways to claim authorship on your site. One is by displaying a badge on your site, which has its own difficulties, given that you can&#8217;t use javascript on wordpress.com and the nice tool Google has supplied only seems to build javascript.</p>
<p><span style="line-height: 1.714285714; font-size: 1rem;">Before we go any further, you do have a G+ profile don&#8217;t you? You&#8217;re going to need one. You can pop off and create one now if you like, I&#8217;ll wait.</span></p>
<p>Right, here&#8217;s how to build a nice badge that links to your G+ article. The google tool to do it is <a href="https://developers.google.com/+/plugins/badge/#configure">here</a>. Even though it says it&#8217;s a static tool, it looks to me that it&#8217;s building javascript, so that&#8217;s not going to do wordpress.com authors any good at all. Fear not, I have a solution. This is the code I&#8217;m using on my wordpress.com site, <a href="http://letsraisetheroof.wordpress.com">Let&#8217;s raise the roof</a>.</p>
<p><script src="https://gist.github.com/techsolved/5059011.js"></script></p>
<p>You will want to swap out the long number in the link for your own profile number &#8211; you don&#8217;t really want to be displaying my badge all over the place! But this code should give you a nice badge for your site. I&#8217;ve put it in a footer widget as I don&#8217;t have a sidebar, but wherever you can that displays it on every page really.</p>
<p>Then you need to go back to your google+ profile and make sure you&#8217;ve added the site to the contributing section.</p>
<p>You&#8217;ll want to test that it&#8217;s all working &#8211; google have handily supplied a <a href="http://www.google.com/webmasters/tools/richsnippets">rich snippet testing tool</a>.</p>
<p>I also have an author tagged link in my about page although I&#8217;m not convinced this is completely necessary if you&#8217;ve got the badge all over the place. Do let me know if you find differently.</p>
<p><script src="https://gist.github.com/techsolved/5059031.js"></script></p>
<p>(Again, swap me out for you.)</p>
<p>If all that has worked, it&#8217;s probably time for a cup of tea. And maybe a biscuit. Sit back and congratulate yourself.</p>
<p>Now, I&#8217;ve every reason to think that this would work fine if your site is self hosted, but what if you don&#8217;t want to display a g+ profile badge on every page, or you want to show a page badge, or you have multiple authors? Don&#8217;t worry. The article that covers all of those is coming up tomorrow. Stay tuned. (Or even subscribe to the RSS feed so you never miss a thing.)</p>
<p>The post <a href="http://technology-solved.co.uk/2013/02/getting-into-the-g-groove-google-authorship-and-wordpress-com/">Getting into the g+ groove &#8211; google authorship and wordpress.com</a> appeared first on <a href="http://technology-solved.co.uk">Technology Solved</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://technology-solved.co.uk/2013/02/getting-into-the-g-groove-google-authorship-and-wordpress-com/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Terminology untangled: domain names, DNS and hosting.</title>
		<link>http://technology-solved.co.uk/2012/12/terminology-untangled-domain-names-dns-and-hosting/</link>
		<comments>http://technology-solved.co.uk/2012/12/terminology-untangled-domain-names-dns-and-hosting/#comments</comments>
		<pubDate>Tue, 11 Dec 2012 21:36:52 +0000</pubDate>
		<dc:creator>jax</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://technology-solved.co.uk/?p=789</guid>
		<description><![CDATA[<p>When you go to set up a website, it can be rather confusing trying to decipher the jargon. People throw around terms like domain names, URL, hosting, DNS, and it can be difficult at best to work out what is what. I think that&#8217;s part of the reason people often start with free sites like [...]</p><p>The post <a href="http://technology-solved.co.uk/2012/12/terminology-untangled-domain-names-dns-and-hosting/">Terminology untangled: domain names, DNS and hosting.</a> appeared first on <a href="http://technology-solved.co.uk">Technology Solved</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>When you go to set up a website, it can be rather confusing trying to decipher the jargon. People throw around terms like domain names, URL, hosting, DNS, and it can be difficult at best to work out what is what. I think that&#8217;s part of the reason people often start with free sites like blogspot and wordpress.com and stay there &#8211; because they don&#8217;t know what it&#8217;s all about, and can be scared to ask.</p>
<p>Fear not. If you&#8217;re a teen, my daughter is working her way through it and blogging it for you at <a href="http://techforteens.com">Tech for Teens.</a> If your teen years are behind you, I&#8217;ll be explaining it here too. Between us we should get you sorted.</p>
<p>A blog held at blogger might be at something like http://myblog.blogspot.co.uk Each bit of that has a meaning. The <em>http</em> refers to the protocol used to transfer data &#8211; it&#8217;s <em>hypertext transfer protocol</em>. It tells a browser what type of data it&#8217;s moving about. <em>myblog</em> is a <em>subdomain</em>, <em>blogspot.co.uk</em> is a <em>domain name</em> &#8211; in this case belonging to the .co.uk which should be UK companies.</p>
<p>If you go to buy a domain name you&#8217;ll use a <em>registrar</em>, someone like <a href="http://lcn.com">Low Cost Names</a>. (Other registrars are available.) We (human beings) use domain names because they are easy for us to remember &#8211; computers actually work in numbers called <em>IP addresses</em>. They are in four blocks of up to three numbers, so something like 123.123.123.123 The bit of software that links the two together is a <em>nameserver</em> &#8211; it tells the enquiring computer which IP address to find a domain name at. Somewhere at your registrar you should be able to edit <em>DNS</em> (the <em>domain name system</em> information) &#8211; you&#8217;ll either put in nameserver values given to you by your hosting company (and the hosting company will have set up the right links), or use the nameservers at the registrar and fill in the IP values &#8211; but you&#8217;ll need to know what values to put in what records, which is beyond this article I&#8217;m afraid.</p>
<p>A hosting company maintains <em>servers</em> (computers) and you rent space on them for your website to sit on, as well as traffic to and from them measured in bandwidth. Your website is made up of files that you put there using <em>ftp</em> or <em>file transfer protocol</em>, maybe with a program like filezilla. Or you might find that the company has a system in the control panel that allows you to push a button and install something like wordpress without having to worry about transferring files, which will make your life easier.</p>
<p>That&#8217;s a really quick run down of some of the basic terminology that you need to know about. If it&#8217;s raised more questions than it&#8217;s answered, feel free to leave a comment and I&#8217;ll try to explain it further.</p>
<p>&nbsp;</p>
<p>The post <a href="http://technology-solved.co.uk/2012/12/terminology-untangled-domain-names-dns-and-hosting/">Terminology untangled: domain names, DNS and hosting.</a> appeared first on <a href="http://technology-solved.co.uk">Technology Solved</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://technology-solved.co.uk/2012/12/terminology-untangled-domain-names-dns-and-hosting/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Work smarter &#8211; mobilise your domain email with Gmail.</title>
		<link>http://technology-solved.co.uk/2012/11/work-smarter-mobilise-your-domain-email-with-gmail/</link>
		<comments>http://technology-solved.co.uk/2012/11/work-smarter-mobilise-your-domain-email-with-gmail/#comments</comments>
		<pubDate>Wed, 28 Nov 2012 15:41:53 +0000</pubDate>
		<dc:creator>jax</dc:creator>
				<category><![CDATA[Business hints and tips]]></category>

		<guid isPermaLink="false">http://technology-solved.co.uk/?p=781</guid>
		<description><![CDATA[<p>First of all, what do I mean by domain email? I&#8217;m talking about email addresses associated with your domain. So maybe spammersgoaway at technology-solved dot co dot uk, as an example. When you&#8217;re in business, or even if you&#8217;re wanting to look like a slightly more organised blogger, your own domain is a great way [...]</p><p>The post <a href="http://technology-solved.co.uk/2012/11/work-smarter-mobilise-your-domain-email-with-gmail/">Work smarter &#8211; mobilise your domain email with Gmail.</a> appeared first on <a href="http://technology-solved.co.uk">Technology Solved</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>First of all, what do I mean by domain email? I&#8217;m talking about email addresses associated with your domain. So maybe spammersgoaway at technology-solved dot co dot uk, as an example. When you&#8217;re in business, or even if you&#8217;re wanting to look like a slightly more organised blogger, your own domain is a great way to go, and email addresses associated with it look more professional.</p>
<p>However, managing email addresses in lots of different places can be a bit of a headache. If you&#8217;re wanting to manage things on the go, you&#8217;ll probably want to be doing things on your phone. My Android can manage a pop email account (which is what you often have with a domain &#8211; it simply means that the email collects on the server where your hosting is, and then is collected from there by an email program) but then there&#8217;s the question of whether I also collect it on my netbook and so on.</p>
<p>Life can start to look a little complicated right then, and that&#8217;s what we are all about avoiding.</p>
<p>Why not let gmail take the strain? You can manage up to five pop email accounts via your gmail account, without wandering off into the realms of google apps for business. This also means you get the fantastic spam filtering of gmail, and you can access it from whatever desktop/netbook/phone/tablet takes your fancy.</p>
<p>So, how to do it.</p>
<p>First of all, you will need a gmail account. I&#8217;m guessing most of you already have one. At least.</p>
<p>Then you set up your domain email, or get your <a href="http://colneis.net">friendly hosting company</a> to do it for you.</p>
<p>Next, you connect the two. In gmail, go into settings (circle icon thing in top right corner) and then Accounts and Import.</p>
<p>Scroll down to <strong>Check mail from other accounts (using POP3)</strong> and select add a POP3 email account you own. Put the account into the pop up box, and continue.</p>
<p>You get to a settings screen that looks like this.</p>
<p><a href="http://technology-solved.co.uk/wp-content/uploads/2012/11/adding-pop-email-account-to-gmail.png"><img class="alignnone size-medium wp-image-785" title="adding pop email account to gmail" src="http://technology-solved.co.uk/wp-content/uploads/2012/11/adding-pop-email-account-to-gmail-300x279.png" alt="managing pop email through gmail" width="300" height="279" /></a></p>
<p>You will need to put in the username of the account &#8211; this is usually the email address. Then the password, and the details of the server. If you&#8217;ve any confusion here, you need to check with your hosting provider.</p>
<p>If you&#8217;re planning on using gmail as your email handler, DON&#8217;T tick leave a copy of retrieved messages on the server. If you tick it, you need to make other arrangements to clear down the server, or eventually your mailbox will fill up and you will stop receiving mail.</p>
<p>The google tutorial for this set up is <a href="http://support.google.com/mail/bin/answer.py?hl=en&amp;answer=21289&amp;from=21288&amp;rd=1">here</a> and if you want to explore the wider world of google apps for managing email, there&#8217;s a tutorial over <a href="http://generationyworking.com/google-apps-for-business-set-up-guide/">here</a> for that.</p>
<p>The second part of the setup is to organise to send mail from your google interface. This is the <strong>Send Mail As </strong>setting. Don&#8217;t set it as an alias &#8211; you don&#8217;t need that. (Or read through the help and decide for yourself <img src='http://technology-solved.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ) And here:</p>
<div><strong>When replying to a message:</strong></div>
<table cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td><input id=":10x" type="radio" name="bx_rf" value="1" checked="checked" /></td>
<td>Reply from the same address the message was sent to</td>
</tr>
</tbody>
</table>
<p>tick this one as it means the person you&#8217;re emailing with won&#8217;t ever see your gmail address.</p>
<p>And there you go. You&#8217;ve got your domain email all set up and handled through Gmail with no one the wiser, they&#8217;re handling your spam and you&#8217;re good to go mobile.</p>
<p>The post <a href="http://technology-solved.co.uk/2012/11/work-smarter-mobilise-your-domain-email-with-gmail/">Work smarter &#8211; mobilise your domain email with Gmail.</a> appeared first on <a href="http://technology-solved.co.uk">Technology Solved</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://technology-solved.co.uk/2012/11/work-smarter-mobilise-your-domain-email-with-gmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ten minute tip &#8211; Jetpack extra sidebar widgets.</title>
		<link>http://technology-solved.co.uk/2012/11/ten-minute-tips-jetpack-extra-sidebar-widgets/</link>
		<comments>http://technology-solved.co.uk/2012/11/ten-minute-tips-jetpack-extra-sidebar-widgets/#comments</comments>
		<pubDate>Sun, 25 Nov 2012 18:55:08 +0000</pubDate>
		<dc:creator>jax</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Social media.]]></category>
		<category><![CDATA[email subscriptions]]></category>
		<category><![CDATA[Jetpack]]></category>
		<category><![CDATA[Ten minute tip]]></category>

		<guid isPermaLink="false">http://technology-solved.co.uk/?p=774</guid>
		<description><![CDATA[<p>Yesterday I posted about adding sharing and following options to this blog, and the solution I settled on was Jetpack. I&#8217;m not 100% happy with the sharing buttons. It appears that you can&#8217;t customise the tweet that goes out without hacking adjusting the code yourself, and while I&#8217;m perfectly capable of getting down and dirty [...]</p><p>The post <a href="http://technology-solved.co.uk/2012/11/ten-minute-tips-jetpack-extra-sidebar-widgets/">Ten minute tip &#8211; Jetpack extra sidebar widgets.</a> appeared first on <a href="http://technology-solved.co.uk">Technology Solved</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Yesterday I posted about adding <a href="http://technology-solved.co.uk/2012/11/ten-minute-tip-sharing-and-following/">sharing and following options to this blog</a>, and the solution I settled on was <a href="http://jetpack.me">Jetpack</a>.</p>
<p>I&#8217;m not 100% happy with the sharing buttons. It appears that you can&#8217;t customise the tweet that goes out without <del>hacking</del> adjusting the code yourself, and while I&#8217;m perfectly capable of getting down and dirty with php, I really don&#8217;t want to have to. Also I&#8217;m not about to be going round recommending to my lovely readers that they do that &#8211; there are all sorts of problems inherent in wading into core files, not least that whatever you have working now, might not next time you upgrade. And that&#8217;s if you don&#8217;t do anything horrid to your install in the first place <img src='http://technology-solved.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>So, jury is out on the sharing options. But what I did need was a box in the sidebar that allowed people to subscribe, and in the mahoosive page of options within the jetpack configuration, there was one labelled extra sidebar widgets that promised just that.</p>
<p>So I clicked on that option,</p>
<p><a href="http://technology-solved.co.uk/wp-content/uploads/2012/11/jetpackoptions.jpg"><img class="alignnone size-medium wp-image-776" title="jetpackoptions" src="http://technology-solved.co.uk/wp-content/uploads/2012/11/jetpackoptions-300x178.jpg" alt="Jetpack options - extra sidebar widgets" width="300" height="178" /></a></p>
<p>went into the page and added the widget.</p>
<p><a href="http://technology-solved.co.uk/wp-content/uploads/2012/11/blogsubscriptionsoptions.jpg"><img class="alignnone size-medium wp-image-775" title="blogsubscriptionsoptions" src="http://technology-solved.co.uk/wp-content/uploads/2012/11/blogsubscriptionsoptions-300x155.jpg" alt="Blog subscription options" width="300" height="155" /></a></p>
<p>I also discovered while wandering around the options, that I sent out an email yesterday with the greeting howdy at the top of it. I do apologise for that, <a href="http://twitter.com/nickie72">Nickie</a>. So, further hints and tips when you are using Jetpack to offer email subscription, go into Settings&gt;Reading and customise the email that is sent out. Unless you&#8217;re happy saying Howdy to people. Maybe you are.</p>
<p>And as all of that still only took about 5 minutes, rather than the 10 I&#8217;m limiting these posts too, I went for broke and added a facebook page widget. As I&#8217;m currently the only person liking the page, it&#8217;s a bit embarrassing and I may take it off. Can&#8217;t quite decide whether I want the twitter feed there. Hm.</p>
<p>Thoughts?</p>
<p>I&#8217;d be really grateful if anyone who finds these posts useful would let me know with a quick tweet or a comment. And if you don&#8217;t find them useful but there&#8217;s something else I could be helping you with, let me know about that too.</p>
<p>The post <a href="http://technology-solved.co.uk/2012/11/ten-minute-tips-jetpack-extra-sidebar-widgets/">Ten minute tip &#8211; Jetpack extra sidebar widgets.</a> appeared first on <a href="http://technology-solved.co.uk">Technology Solved</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://technology-solved.co.uk/2012/11/ten-minute-tips-jetpack-extra-sidebar-widgets/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
