<?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>Solution Perspective Media</title>
	<atom:link href="http://blog.solutionperspectivemedia.co.uk/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://blog.solutionperspectivemedia.co.uk</link>
	<description>our little place on the web</description>
	<lastBuildDate>Fri, 14 Aug 2009 09:49:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Changed blog software from Serendipity (s9y) to Wordpress</title>
		<link>http://blog.solutionperspectivemedia.co.uk/?p=63</link>
		<comments>http://blog.solutionperspectivemedia.co.uk/?p=63#comments</comments>
		<pubDate>Wed, 12 Aug 2009 21:07:49 +0000</pubDate>
		<dc:creator>Jeremy Coates</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[301]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[redirect]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[s9y]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[serendipity]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.solutionperspectivemedia.co.uk/?p=63</guid>
		<description><![CDATA[This blog has been neglected far to long / often, partly because things are always so busy and partly the company and my personal twitter accounts seem to have taken over. However there&#8217;s another reason, that I think I&#8217;d outgrown the Serendipity (s9y) software due to having more exposure to WordPress these days. I also [...]]]></description>
			<content:encoded><![CDATA[<p>This blog has been neglected far to long / often, partly because things are always so busy and partly the <a href="http://twitter.com/spmedia">company</a> and my <a href="http://twitter.com/phpcodemonkey">personal</a> <a href="http://twitter.com/">twitter</a> accounts seem to have taken over. However there&#8217;s another reason, that I think I&#8217;d outgrown the <a href="http://www.s9y.org/">Serendipity (s9y)</a> software due to having more exposure to <a href="http://wordpress.org/">WordPress</a> these days. I also noticed recently that there&#8217;s a WordPress app for the iPhone which was the final thing that convinced my to switch software as I&#8217;ve always got my iPhone with me and am therefore far more likely to bash out a draft on there before post-editing at the PC (in fact that&#8217;s what I did for this post!).</p>
<p>So having decided to switch I set about investigating the &#8216;how&#8217; to do that and came across two useful resources that highlighted how it might be done:<br />
<a href="http://technosailor.com/2007/01/02/new-version-of-serendipity-s9y-to-wordpress-importer-available/">Technosailor.com</a> has the actual download for the WordPress import script for Serendipity and <a href="http://e-mats.org/2008/05/the-story-of-migrating-from-serendipity-s9y-to-wordpress/">e-mats.org</a> showed a little bit more of the detail of what to do with it.</p>
<p>The importer worked well in the main, first importing Categories, Users and then posts. However it failed to put the posts in any categories (other than the WordPress default of Uncategorised) and didn&#8217;t bring any of the post tags across. So those elements ended up being a manual cut-&#8217;n'-paste job, which took about half an hour or so. Another gotcha with the import is that if you&#8217;ve deleted posts / categories / authors etc. from your Serendipity blog, there will be gaps in the database Id numbers, the importer just inserts the next counted value rather than the Id of the post, category or author &#8211; this obviously has a major impact on the search engine profile of your site and the user experience resulting in the dreaded 404 errors if a user clicks through from a search engine. For posts, I manually sorted the Id numbers and for the rest I used the .htaccess method discussed next.</p>
<p>Then I moved on to the RewriteRules in the apache .htaccess file as discussed in the e-mats.org post (see above), however the RewriteRules they suggest are somewhat over simplistic and at least one of them simply didn&#8217;t work. So I hand crafted a few of my own that whilst being more complete are not a total resolution, they will however cover most scenarios from a standard Serendipity set up to a standard WordPress set up:</p>
<p><code>RewriteEngine On<br />
RewriteBase /<br />
RewriteRule ^archives/([0-9]+)\-.*.html$ /index.php?p=$1 [L,R=301]<br />
RewriteRule ^archives/([0-9]{4,4})/([0-9]{2,2}).*.html$ /index.php?m=$1$2 [L,R=301]<br />
RewriteRule ^archive$ / [L,R=301]<br />
RewriteRule ^feeds/index.rss2$ /index.php?feed=rss2 [L,R=301]<br />
RewriteRule ^feeds/index.rss1$ /index.php?feed=rss [L,R=301]<br />
RewriteRule ^feeds/index.rss$ /index.php?feed=rss [L,R=301]<br />
RewriteRule ^feeds/index.atom$ /index.php?feed=atom [L,R=301]<br />
RewriteRule ^plugin/tag/(.*)$ /index.php?tag=$1 [L,R=301]</code></p>
<p>Which covers Archives, RSS feeds and article Tags, however there&#8217;s still Categories and Authors to deal with, which if you remember had database Id mapping to be done. So for Categories you probably need to be adding 2 to the Id that would have been found in the Serendipity set up due to the standard WordPress &#8216;Uncategorized&#8217; and &#8216;Blogroll&#8217; entries:</p>
<p><code>RewriteRule ^categories/(1)\-.*$ /index.php?cat=3 [L,R=301]</code><br />
Simply repeat that line in your .htaccess file replacing the Id in the brackets (from Serendipity) and after the cat= with the appropriate Id from WordPress.</p>
<p>And similarly for Authors:</p>
<p><code>RewriteRule ^authors/(1)\-.*$ /index.php?author=2 [L,R=301]</code><br />
where again the bracketed number is the Serendipity Id and the WordPress Id is added after the equals sign.</p>
<p>All in all, it&#8217;s a little more work however it&#8217;s a much more complete mapping and should catch the long tail entries and keep a lot more of your SEO benefits from your old blog software. Talking of SEO benefits, it&#8217;s perhaps worth pointing out what the elements in the square brackets at the end of each rule means. The &#8216;L&#8217; tells apache it&#8217;s the last rule to apply now we&#8217;ve found a match. Most importantly for SEO the &#8216;R=301&#8242; tells apache to issue a 301 RedirectPermanent header, which is the way to tell the search engines that an item has permanently moved, over time Google et al will pick up on the fact that things have moved around and update their cached records for your site and update their results &#8211; win <img src='http://blog.solutionperspectivemedia.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If there&#8217;s anything you can add or have gained from this feel free to post a comment for others to benefit from &#8211; thanks.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.solutionperspectivemedia.co.uk/?feed=rss2&amp;p=63</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>YuuGuu on Linux x86_64 (64bit) CPUs</title>
		<link>http://blog.solutionperspectivemedia.co.uk/?p=34</link>
		<comments>http://blog.solutionperspectivemedia.co.uk/?p=34#comments</comments>
		<pubDate>Thu, 08 Jan 2009 16:36:54 +0000</pubDate>
		<dc:creator>Jeremy Coates</dc:creator>
				<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[64 bit]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[perspective]]></category>
		<category><![CDATA[remote desktop]]></category>
		<category><![CDATA[screen sharing]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[wine]]></category>
		<category><![CDATA[x86_64]]></category>
		<category><![CDATA[yuuguu]]></category>

		<guid isPermaLink="false">http://blog.solutionperspectivemedia.co.uk/wordpress/?p=27</guid>
		<description><![CDATA[Here at Solution Perspective we use YuuGuu quite a lot, especially with some of our clients, for remote screen sharing and to check out that we&#8217;re all talking about the same things or to take control of their screens to sort an issue out. We also happen to use Linux (Fedora in particular) a lot, [...]]]></description>
			<content:encoded><![CDATA[<p>Here at <a href="http://www.solutionperspective.co.uk/" title="Solution Perspective Media website">Solution Perspective</a> we use <a href="http://www.yuuguu.com/" title="YuuGuu screen sharing application">YuuGuu</a> quite a lot, especially with some of our clients, for remote screen sharing and to check out that we&#8217;re all talking about the same things or to take control of their screens to sort an issue out. We also happen to use Linux (Fedora in particular) a lot, and several of our machines are 64bit (x86_64 processors). For quite some time we&#8217;ve had to use, the fairly brilliant Linux &#8211; Windows layer called <a href="http://www.winehq.org/" title="Wine: Windows layer for Linux">Wine</a> to get YuuGuu to run on our Linux boxes.</p>
<p>Well no more! YuuGuu have <a href="http://www.yuuguu.com/download" title="YuuGuu download page">released a native Linux version</a>, available for Ubuntu, Fedora and Suse flavours (which can probably be coaxed to work on other distributions as well). This works fine for i386 (32bit) CPUs but not on our machines with the 64bit ones.</p>
<p>After a bit of <a href="http://getsatisfaction.com/yuuguu/topics/is_there_a_64_bit_version_for_ubuntu_available#reply_738383" title="Our entry on YuuGuu's support website detailing what was needed to get YuuGuu working for us">digging and playing about</a>, we&#8217;ve found they&#8217;ve also got native 64bit versions in testing and that works well, so there&#8217;s no more need for us to use Wine in order to run this very useful screen sharing application &#8211; life&#8217;s a little less complicated now. <img src='http://blog.solutionperspectivemedia.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.solutionperspectivemedia.co.uk/?feed=rss2&amp;p=34</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHPNW08: Post PHP conference blast</title>
		<link>http://blog.solutionperspectivemedia.co.uk/?p=33</link>
		<comments>http://blog.solutionperspectivemedia.co.uk/?p=33#comments</comments>
		<pubDate>Wed, 03 Dec 2008 19:14:50 +0000</pubDate>
		<dc:creator>Jeremy Coates</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[manchester]]></category>
		<category><![CDATA[northwest]]></category>
		<category><![CDATA[phpnw]]></category>
		<category><![CDATA[phpnw08]]></category>
		<category><![CDATA[uk]]></category>

		<guid isPermaLink="false">http://blog.solutionperspectivemedia.co.uk/wordpress/?p=26</guid>
		<description><![CDATA[On Saturday 22nd November I was in Manchester at Manchester Central (formerly GMex) for the first UK PHP conference outside of London: PHPNW08. The conference started as an idea back in February this year and went from concept to reality over the summer months as the PHP North West (PHPNW) user group was formed and [...]]]></description>
			<content:encoded><![CDATA[<p>On Saturday 22nd November I was in Manchester at Manchester Central (formerly GMex) for the first UK PHP conference outside of London: PHPNW08. The conference started as an idea back in February this year and went from concept to reality over the summer months as the <a href="http://phpnw.org.uk" title="PHPNW User Group site">PHP North West (PHPNW) user group</a> was formed and started it&#8217;s first meeting in July.<br /><a title="phpnw08 PHP Conference 22/11/2008" href="http://conference.phpnw.org.uk/phpnw08/"><img width="175" vspace="5" hspace="5" height="142" border="0" align="right" alt="phpnw08 PHP Conference 22/11/2008" title="phpnw08 PHP Conference 22/11/2008" src="http://conference.phpnw.org.uk/phpnw08/wp-content/uploads/2008/08/phpnw08_conference_logo_details_175x142.png" /></a></p>
<p>I managed to rope everyone in, Priscilla, Emma, Mat &amp; Phil along with Bridget on the day and David keeping the dogs happy while we were in conference mode, thanks to all for playing their parts. All in all as a company we&#8217;re very proud of what we&#8217;ve managed to pull off, all the hard work and planning has paid off, almost universally the <a title="Joind.in feedback site" href="http://joind.in/event/phpnw08">feedback has been excellent</a> with many people saying, to us directly, it was the best organised community conference they&#8217;d been to for years.</p>
<p>Sitting in the first session, <a href="http://conference.phpnw.org.uk/phpnw08/?page_id=118" title="PHPNW08: Conference Schedule">K.I.S.S from Derick Rethans</a>, I was aware of a very surreal feeling &#8211; the conference was actually happening, after months of planning, a little heartache and juggling some of the risky elements, it was actually happening right here, right now!</p>
<p>One of the main drivers behind PHPNW08 was to encourage junior developers to take an active path to their continuing professional development, with speakers sessions covering topics like <a href="http://conference.phpnw.org.uk/phpnw08/?page_id=188" title="MySQL Explain Explained summary">MySQL EXPLAIN Explained</a> and <a href="http://conference.phpnw.org.uk/phpnw08/?page_id=204" title="Regular Exprssion Basics summary">Regular Expression Basics</a> being warmly received by many I think we achieved that objective!</p>
<p>My personal favourite session was <a title="Index and Search summary" href="http://conference.phpnw.org.uk/phpnw08/?page_id=180">Zoe Slattery&#8217;s &#8216;Index and Search, options for PHP programmers&#8217;</a> which was a really interesting comparison of the Lucene search implementations in PHP and Java &#8211; not what the title suggested but a well delivered, complex subject delivered in an easy confident manner.</p>
<p>It was also good to have some fun at the socials on the Friday and Saturday night, even if I didn&#8217;t quite manage to find any time to play on Mario Kart &#8211; with the open bar and food on the Saturday event it seemed to be a great way to round off the event.</p>
<p>While we still have to deal with some of the wrap up elements of the conference, videos, slides, handing out the last remaining prizes &#8211; the general aftermath of a very satisfying weekend, we&#8217;re already looking forward to early planning for next years&#8217; event, PHPNW09 everyone?!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.solutionperspectivemedia.co.uk/?feed=rss2&amp;p=33</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Solution Perspective Media Supports PHP North West Conference 2008</title>
		<link>http://blog.solutionperspectivemedia.co.uk/?p=32</link>
		<comments>http://blog.solutionperspectivemedia.co.uk/?p=32#comments</comments>
		<pubDate>Thu, 23 Oct 2008 22:32:15 +0000</pubDate>
		<dc:creator>Jeremy Coates</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[manchester]]></category>
		<category><![CDATA[phpnw08]]></category>

		<guid isPermaLink="false">http://blog.solutionperspectivemedia.co.uk/wordpress/?p=25</guid>
		<description><![CDATA[ Solution Perspective Media is proud to announce that it is supporting the first annual PHP Conference in the North West, phpnw08 on 22nd November 2008.
 phpnw08 is a one day conference for developers, designers, managers and anyone else with an interest in the PHP programming language. The conference will have a range of well [...]]]></description>
			<content:encoded><![CDATA[<p> Solution Perspective Media is proud to announce that it is supporting the first annual PHP Conference in the North West, phpnw08 on 22<sup>nd</sup> November 2008.</p>
<p> phpnw08 is a one day conference for developers, designers, managers and anyone else with an interest in the PHP programming language. The conference will have a range of well known and local speakers with the aim of highlighting current best practice and emerging topics within the sphere of PHP and web development.</p>
<p> The event offers an opportunity for developers and those involved with PHP across the North-of-England to come together to discuss developments, innovations, techniques and the challenges faced in PHP and internet development.</p>
<p> The conference will feature high profile speakers within the PHP community, workshops and networking opportunities. Some of the key areas of focus this year are: Enterprise PHP, What&rsquo;s new in PHP 5.3 and innovative solutions for a commercial world.</p>
<p> In addition to organising the event, Solution Perspective Media has worked in partnership with a number of sponsors including iBuildings, nti Leeds, Allegis Group, Pale Purple and Plusnet to provide an exciting program of speakers, networking and social activities.</p>
<p> The conference takes place on 22<sup>nd</sup> November 2008 at Manchester Central (formerly GMex) &ndash; <a href="http://www.manchestercentral.co.uk/">http://www.manchestercentral.co.uk</a></p>
<p> Those involved in PHP are invited to connect and network with other PHP professionals on the following groups:</p>
<p> <em>Google Groups &#8211; </em><font color="#0000ff"><u><a href="http://groups.google.com/group/phpnw">http://groups.google.com/group/phpnw</a><a href="http://groups.google.com/group/phpnw"><br /></a></u></font><em>Facebook- </em><font color="#0000ff"><u><a href="http://www.facebook.com/group.php?gid=17897252075"><font color="#0000ff">http://www.facebook.com/group.php?gid=17897252075</font></a></u></font><br /><em>LinkedIn &#8211; </em><font color="#0000ff"><u><a href="http://www.linkedin.com/e/gis/112906/3FCE41597A1B"><font color="#0000ff">http://www.linkedin.com/e/gis/112906/3FCE41597A1B</font></a></u></font><br /><em>Twitter</em> <em>-</em> <font color="#0000ff"><u><a href="http://twitter.com/PHPNW"><font color="#0000ff">http://twitter.com/PHPNW</font></a></u></font> </p>
<p> For more information or to attend the conference visit <font color="#0000ff"><u><a href="http://conference.phpnw.org.uk/phpnw08/"><font color="#0000ff">http://conference.phpnw.org.uk/phpnw08/</font></a></u></font> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.solutionperspectivemedia.co.uk/?feed=rss2&amp;p=32</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Catch up, social networking, new staff &#8230;</title>
		<link>http://blog.solutionperspectivemedia.co.uk/?p=31</link>
		<comments>http://blog.solutionperspectivemedia.co.uk/?p=31#comments</comments>
		<pubDate>Sat, 27 Sep 2008 19:37:56 +0000</pubDate>
		<dc:creator>Jeremy Coates</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[XTemplate]]></category>
		<category><![CDATA[adodb]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[invoicing]]></category>
		<category><![CDATA[payroll]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[staff]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[yui]]></category>
		<category><![CDATA[zend framework]]></category>

		<guid isPermaLink="false">http://blog.solutionperspectivemedia.co.uk/wordpress/?p=24</guid>
		<description><![CDATA[It&#8217;s been ages since I&#8217;ve blogged, partly since I&#8217;ve continued to keep up with twitter.com, which is a little like blogging but in text message size bites &#8211; some call it your life between blog posts. We&#8217;ve included a feed on the right hand side of this site or follow me or Priscilla directly.
Along with [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been ages since I&#8217;ve blogged, partly since I&#8217;ve continued to keep up with <a title="Twitter - What are you doing?" href="http://twitter.com">twitter.com</a>, which is a little like blogging but in text message size bites &#8211; some call it your life between blog posts. We&#8217;ve included a feed on the right hand side of this site or <a title="Jeremy's tweets" href="http://twitter.com/phpcodemonkey">follow me</a> or <a title="Follow Priscilla's tweets" href="http://twitter.com/oatie">Priscilla</a> directly.</p>
<p>Along with twitter, we&#8217; also got into <a title="Social Networking site which happens to use PHP as it's base" href="http://www.facebook.com/">Facebook</a> over the summer, it&#8217;s a little addictive and generally more fun than watching the telly! However, if <a title="BBC article on facebook egos!" href="http://www.bbc.co.uk/blogs/technology/2008/09/facebookers_are_narcissists.html">some people</a> are to be believed it could turn us all into narcissists!</p>
<p>We&#8217;ve also another member of staff to welcome aboard, Mathew Griffin who joined us in July, to help grow our PHP programming team. Mat&#8217;s learning how we do things round here by diving in at the deep end &#8211; it&#8217;s a good job he likes it that way as we&#8217;ve been continuing to work non-stop on a major invoicing and payroll system. So Mat is now brushing up on ZendFramework, YUI, ADOdb and XTemplate &#8211; so far so good, I just have to remember it&#8217;s a tall order to get that lot under your belt <img src='http://blog.solutionperspectivemedia.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Anyway that&#8217;s the catch up, well almost&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.solutionperspectivemedia.co.uk/?feed=rss2&amp;p=31</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>777 file permissions not a solution for those without knowledge</title>
		<link>http://blog.solutionperspectivemedia.co.uk/?p=30</link>
		<comments>http://blog.solutionperspectivemedia.co.uk/?p=30#comments</comments>
		<pubDate>Fri, 16 May 2008 16:19:39 +0000</pubDate>
		<dc:creator>Jeremy Coates</dc:creator>
				<category><![CDATA[CentOS]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[chmod]]></category>
		<category><![CDATA[file permission]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[marketing]]></category>

		<guid isPermaLink="false">http://blog.solutionperspectivemedia.co.uk/wordpress/?p=23</guid>
		<description><![CDATA[Got a call today from one of our customers suppliers, a marketing company, who were trying to upload some blog software and wondered why their account quota had maxed out. The implication was that we&#8217;d set the quota too low (already at ~750Mb).
After some investigation, it turns out that the blog software in question had [...]]]></description>
			<content:encoded><![CDATA[<p>Got a call today from one of our customers suppliers, a marketing company, who were trying to upload some blog software and wondered why their account quota had maxed out. The implication was that we&#8217;d set the quota too low (already at ~750Mb).</p>
<p>After some investigation, it turns out that the blog software in question had several run-away apache processes &#8211; chewing CPU cycles like they were going out of fashion and filling up the apache logs faster than quota could be allocated (e.g. read a Gb every couple of seconds!)&nbsp; as the particular script looped and couldn&#8217;t read from the file it wanted. The cause of this was to do with file permissions, in particular one file was empty and a bug in the blog code meant that it was in an infinite loop, several times over as the user kept reloading the screen! The marketing company bod was kind enough to point out that they had it working on other servers quite happily, even initially having the cheek to make out like it was software they had written, when in actual fact it was an open source (GPL licensed) piece of software.</p>
<p>So after working this out and telling them they needed to read their documentation and fix the problem, they instead set all the files and folders to world writable (e.g. 777 file permissions) in their FTP client. At this point I decided that it was simpler to fix the issue myself whilst giving them a lecture on how 777 permissions is never a blanket solution to anything. I got to the point of telling them I&#8217;d just remove the software if they were going to leave it like that which they didn&#8217;t seem too happy about.</p>
<p>So after setting all the permissions back to what they should have been, 644 for files and 755 for directories, I then set the two or three folders that needed different permissions to be owned by the web server process. Hey presto! It all worked as expected. The marketing company bod was happy the situation was solved, however not even a word of thanks. Here&#8217;s guessing they&#8217;ll just simply 777 everything again next time they come across any snags rather than bothering to ask for some simple assistance! Oh well, some folk are dangerous when it comes to computers! If only their clients knew how incompetent they are, the world would be a better place as they&#8217;d avoid them!</p>
<p>Rant over, for today at least <img src='http://blog.solutionperspectivemedia.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.solutionperspectivemedia.co.uk/?feed=rss2&amp;p=30</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Traffic alerts via Twitter mashup with optional SMS</title>
		<link>http://blog.solutionperspectivemedia.co.uk/?p=29</link>
		<comments>http://blog.solutionperspectivemedia.co.uk/?p=29#comments</comments>
		<pubDate>Wed, 07 May 2008 23:15:10 +0000</pubDate>
		<dc:creator>Jeremy Coates</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[highways agency]]></category>
		<category><![CDATA[mashup]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[northwest]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[traffic]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[twitterfeed]]></category>
		<category><![CDATA[uk]]></category>

		<guid isPermaLink="false">http://blog.solutionperspectivemedia.co.uk/wordpress/?p=22</guid>
		<description><![CDATA[As a recent fan of twitter (you can follow me if you like) as a short (read text message length) form of blogging, I was quite interested to spot a blog post from Andy Davies about using twitter to mashup with traffic data feeds. I used his technique, though in a simpler format e.g. I [...]]]></description>
			<content:encoded><![CDATA[<p>As a recent fan of <a href="http://twitter.com" title="Twitter.com home page">twitter</a> (you can <a rel="me" title="Follow Jeremy Coates on Twitter.com" href="http://twitter.com/phpcodemonkey">follow me</a> if you like) as a short (read text message length) form of blogging, I was quite interested to spot a blog post from <a href="http://www.andysnotebook.com/" title="Andy Davies Blog">Andy Davies</a> about using <a href="http://www.andysnotebook.com/2008/03/roll-your-own-t.html" title="Twitter RSS Traffic Feeds blog post">twitter to mashup with traffic data feeds</a>. I used his technique, though in a simpler format e.g. I didn&#8217;t bother with the Yahoo! Pipes element, to create a traffic alerts feed. As we&#8217;re in the Northwest of England, I wanted to use a traffic feed relevant to this locale. To this end, I used the <a href="http://www.highways.gov.uk/rssfeed/NorthWest.xml" title="Northwest UK Traffic alerts RSS feed">Northwest UK RSS feed</a> from the <a href="http://www.highways.gov.uk/traffic/11278.aspx" title="UK Highways Agency RSS traffic feed list">Highways Agency traffic feed list</a>.</p>
<p>So let&#8217;s cut to the chase, how do I do this? In a nutshell: Create a new twitter account; link that to a <a href="http://twitterfeed.com" title="Send RSS feeds to Twitter as posts">twitterfeed.com</a> account (a service that turns RSS feeds into twitter posts) and an RSS feed; then follow in your normal twitter account the new twitter account just created and, if you want text alerts of the data (e.g. when you&#8217;re actually travelling round the area), turn on device updates for the following of the new account (assuming you&#8217;ve already registered a mobile device for this purpose in your main account).</p>
<p>Then you get new tweets and or text alerts each time there&#8217;s a new RSS entry in the source feed. Sweet <img src='http://blog.solutionperspectivemedia.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If you want to subscribe to the results for that feed simply skip all the setup above and just follow <a href="http://twitter.com/NWUKTrafficAlrt" title="Northwest UK Traffic Alerts on twitter">NWUKTrafficAlrt</a> in your twitter account.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.solutionperspectivemedia.co.uk/?feed=rss2&amp;p=29</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We&#8217;re hiring</title>
		<link>http://blog.solutionperspectivemedia.co.uk/?p=28</link>
		<comments>http://blog.solutionperspectivemedia.co.uk/?p=28#comments</comments>
		<pubDate>Tue, 22 Apr 2008 21:35:09 +0000</pubDate>
		<dc:creator>Jeremy Coates</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[preston]]></category>
		<category><![CDATA[staff]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://blog.solutionperspectivemedia.co.uk/wordpress/?p=21</guid>
		<description><![CDATA[In case you&#8217;ve not noticed on our main site, we&#8217;re hiring &#8211; a PHP web developer (OOP).
]]></description>
			<content:encoded><![CDATA[<p>In case you&#8217;ve not noticed on <a href="http://www.solutionperspective.co.uk/job-opportunities.html" title="Job Opportunities">our main site</a>, we&#8217;re hiring &#8211; a PHP web developer (OOP).</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.solutionperspectivemedia.co.uk/?feed=rss2&amp;p=28</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Conference experience</title>
		<link>http://blog.solutionperspectivemedia.co.uk/?p=27</link>
		<comments>http://blog.solutionperspectivemedia.co.uk/?p=27#comments</comments>
		<pubDate>Fri, 29 Feb 2008 13:27:42 +0000</pubDate>
		<dc:creator>Jeremy Coates</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[derick rethans]]></category>
		<category><![CDATA[ivo jansch]]></category>
		<category><![CDATA[marcus bointon]]></category>
		<category><![CDATA[phplondon08]]></category>
		<category><![CDATA[rob allen]]></category>
		<category><![CDATA[verp]]></category>
		<category><![CDATA[zend framework]]></category>

		<guid isPermaLink="false">http://blog.solutionperspectivemedia.co.uk/wordpress/?p=20</guid>
		<description><![CDATA[I&#8217;m currently sat in the PHP London 08 conference and just thought I&#8217;d post a note. I&#8217;m currently listening to Rob Allen enthuse about the Zend Framework in the &#8216;my framework is better than yours&#8217; session.The three frameworks under discussion where Code Igniter, Symphony and Zend Framework. Having listened to all the debates, I&#8217;m still [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m currently sat in the <a href="http://www.phpconference.co.uk/" title="PHP London 08 Conference">PHP London 08 conference</a> and just thought I&#8217;d post a note. I&#8217;m currently listening to Rob Allen enthuse about the Zend Framework in the &#8216;my framework is better than yours&#8217; session.The three frameworks under discussion where Code Igniter, Symphony and Zend Framework. Having listened to all the debates, I&#8217;m still glad we&#8217;ve settled on the Zend Framework for our day to day work, just seems more flexible for existing and new projects at the same time &#8211; the others seem only to have relevance when starting from scratch.</p>
<p>The morning sessions in the main track seemed a little basic over all, however you have to pitch at a wide audience level so that&#8217;s to be expected. Fortunately, <a rel="met contact" title="Marcus Bointon's Blog" href="http://marcus.bointon.com/">Marcus Bointon</a> after lunch (which was really quite nice for a conference) talked about mail() and all the things that go with that, handling bounces, VERP and a few other niceties. It was unfortunate that he ran out of time towards the end as it turned out to be informative and quite in depth without getting to the point of boredom &#8211; I&#8217;ve found his <a title="Marcus Bointon's PHP London 08 Slides" href="http://marcus.bointon.com/archives/53-PHPLondon.html">slides on-line</a> which should help finish the learning.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.solutionperspectivemedia.co.uk/?feed=rss2&amp;p=27</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>phplondon08: Conference approaches</title>
		<link>http://blog.solutionperspectivemedia.co.uk/?p=26</link>
		<comments>http://blog.solutionperspectivemedia.co.uk/?p=26#comments</comments>
		<pubDate>Wed, 27 Feb 2008 22:20:12 +0000</pubDate>
		<dc:creator>Jeremy Coates</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[australia]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[liferea]]></category>
		<category><![CDATA[phplondon08]]></category>
		<category><![CDATA[podcasts]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[uk]]></category>

		<guid isPermaLink="false">http://blog.solutionperspectivemedia.co.uk/wordpress/?p=19</guid>
		<description><![CDATA[I&#8217;m now looking forward to the 3rd annual UK PHP conference this Friday. I went to the conference the first year it ran and it was good to truly geek about the language, I couldn&#8217;t make last year as I was on my way back from Australia (was actually between Syndey and Dubai at the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m now looking forward to the 3rd annual <a title="phplondon08: 3rd UK Annual PHP conference" href="http://www.phpconference.co.uk/">UK PHP conference</a> this Friday. I went to the conference the first year it ran and it was good to truly geek about the language, I couldn&#8217;t make last year as I was on my way back from Australia (was actually between Syndey and Dubai at the time!) so I&#8217;m over-ready for another PHP geek dose.</p>
<p>My only problem now is deciding which <a title="phplondon08 conference schedule" href="http://www.phpconference.co.uk/schedule/">track to follow</a> on the day &#8211; choice is sometimes not a good thing! <img src='http://blog.solutionperspectivemedia.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Perhaps the sessions will be videoed and I can see all of it.</p>
<p>While I&#8217;m in PHP geek mode (I am every day but that&#8217;s what I get paid for), I&#8217;ve just discovered the <a title="PHP Podcasts web site" href="http://www.phppodcasts.com/">PHP Podcasts</a> web site &#8211; I&#8217;ve got that linked in the <a title="Liferea RSS Feed Reader" href="http://liferea.sourceforge.net/">feed reader</a> and am already starting to enjoy the aggregated content.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.solutionperspectivemedia.co.uk/?feed=rss2&amp;p=26</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
