<?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>Drew Jones - Freelance Website Designer in Fleet, Hampshire, GU51 &#187; Configuration</title>
	<atom:link href="http://andij.com/category/configuration/feed" rel="self" type="application/rss+xml" />
	<link>http://andij.com</link>
	<description>website design and delivery</description>
	<lastBuildDate>Mon, 29 Aug 2011 11:04:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Creating Bootstrap, for WordPress &#8211; Part 1</title>
		<link>http://andij.com/2011/08/27/creating-bootstrap-for-wordpress-part1</link>
		<comments>http://andij.com/2011/08/27/creating-bootstrap-for-wordpress-part1#comments</comments>
		<pubDate>Sat, 27 Aug 2011 12:31:00 +0000</pubDate>
		<dc:creator>andij</dc:creator>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[live blog]]></category>
		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://andij.com/?p=576</guid>
		<description><![CDATA[So here&#8217;s what happened. Downloaded WordPress 3.2.1 from http://wordpress.org/download/ and extracted this in /Users/andij/Projects/wp-bootstrap/httpdocs/ Gave it a url of wp-bootstrap.com (set 127.0.0.1 wp-bootstrap.com in my hosts file and then setup the vhost accordingly) as this url will be the final &#8230; <a href="http://andij.com/2011/08/27/creating-bootstrap-for-wordpress-part1">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So here&#8217;s what happened.</p>
<ul>
<li>Downloaded WordPress 3.2.1 from <a href="http://wordpress.org/download/">http://wordpress.org/download/</a> and extracted this in /Users/andij/Projects/wp-bootstrap/httpdocs/</li>
<li>Gave it a url of wp-bootstrap.com (set 127.0.0.1 wp-bootstrap.com in my hosts file and then setup the vhost accordingly) as this url will be the final destination of the sample theme.</li>
<li>Created a new database in mySQL called wp-bootstrap.</li>
<li>Visited my new local development environment of wp-bootstrap.com and followed the config steps.  All is well : )</li>
<li>Copied the &#8216;twentyeleven&#8217; theme, renamed it as &#8216;bootstrap&#8217; then switched to it.</li>
<li>Took a look at <a href="http://wordpress.org/extend/themes/upload/">http://wordpress.org/extend/themes/upload/</a> to see what&#8217;s involved in creating a proper WordPress theme.</li>
<li>Here <a href="http://codex.wordpress.org/Theme_Unit_Test">http://codex.wordpress.org/Theme_Unit_Test</a> there&#8217;s a list of things to do to setup the blog to enable comprehensive testing.</li>
</ul>
<p>After importing the test-data.xml and adjusting the WordPress settings accordingly including the the Long and Short menus I decided to add an html comment to the top of each of the php files in the bootstrap theme <!--filename.php-->.  I did this to make it a little easier to pinpoint which file to edit from viewing the source. In Firebug. (Select the HTML menu flyout and choose &#8216;Show Comments&#8217;)</p>
<p>Add the bootstrap hotlink to the hosted stylesheet:<br />
<code>link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap-1.1.1.min.css"</code></p>
<h4>Starting point</h4>
<p>For now, I&#8217;m going to leave the twentyeleven.css in place give me a helping hand <em>(kinda like the feeling of walking hand in hand through a park in the autumn with a new love)</em>.  I will however remove the reset css from the top of this file.</p>
<p><strong>I will start at the top of the homepage and see what I fancy changing first.</strong></p>
<p>Taking the menu from underneath the banner and placing it at the top and inheriting the bootstrap styles seems to be a good starting point.</p>
<p>Moving the search into the topbar which meant removing some default twentyeleven functionality which changed the position of the search if there&#8217;s the Display Text enabled or not.</p>
<p>Including #masthead from the docs.css from Bootstrap to emulate the same design made the look of the entire header and nav pretty sweet.</p>
<p>If you&#8217;re looking at this blog at the end of August 2011 then this is likely to be what you&#8217;re seeing right now.</p>
]]></content:encoded>
			<wfw:commentRss>http://andij.com/2011/08/27/creating-bootstrap-for-wordpress-part1/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bootstrap, from Twitter for WordPress</title>
		<link>http://andij.com/2011/08/22/bootstrap-from-twitter-for-wordpress</link>
		<comments>http://andij.com/2011/08/22/bootstrap-from-twitter-for-wordpress#comments</comments>
		<pubDate>Mon, 22 Aug 2011 22:17:45 +0000</pubDate>
		<dc:creator>andij</dc:creator>
				<category><![CDATA[Bootstrap]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Freelance]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://andij.com/?p=546</guid>
		<description><![CDATA[Many times I&#8217;ve attempted to stream-line my development processes in a variety of different ways, using 960gs, Eric Mayer&#8217;s reset.css, HTML5 Boilerplate, to mention only a few. One of my favourite time-savers is to create an &#8216;interface template&#8217; this template &#8230; <a href="http://andij.com/2011/08/22/bootstrap-from-twitter-for-wordpress">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Many times I&#8217;ve attempted to stream-line my development processes in a variety of different ways, using <a href="http://960.gs/">960gs</a>, <a href="http://meyerweb.com/eric/tools/css/reset/">Eric Mayer&#8217;s reset.css</a>, <a href="http://html5boilerplate.com/">HTML5 Boilerplate</a>, to mention only a few.  One of my favourite time-savers is to create an &#8216;interface template&#8217; this template usually takes the form of a single page with every UI element that I&#8217;m likely to need to build the website. This helps to ensure that all components &#8216;play nice&#8217; with each other.</p>
<p>During this process I often find myself using the same markup with the same class names, for example my pagination nearly always ends up exactly the same HTML and CSS with different styles.  After a while I noticed a number of tricks and techniques were also being repeated.  This included CSS to style buttons exactly the same if the markup used was an anchor, button or input.  Then a number of styles to make the button appear disabled, negative, positive and neutral, then I&#8217;d usually include classes to make them large, medium and small.</p>
<p>Think in your mind that dreamy type of music to set the scene…. </p>
<blockquote><p>&#8220;Wouldn&#8217;t it be great if these techniques were available to implement at the beginning of a project with a way of modifying them to suit the design of the website I&#8217;m building them for.&#8221;</p></blockquote>
<p>While this is still a distant &#8220;I may get round to doing something one day&#8221; thought.  Along comes <a href="http://twitter.github.com/bootstrap/">Bootstrap from Twitter</a>.  A set of tools put together by <a href="http://twitter.com/#!/mdo">@mdo</a> and <a href="http://twitter.com/#!/fat">@fat</a> (from Twitter) which takes this concept by the short and curlies and provides a full set of amazingness, especially if the things I describe above are familiar to you.</p>
<p>A grid system, typography, lists, tables, forms, buttons, tabs, pagination, page messages, modals, tool-tips, popovers are all included, which is so amazingly comprehensive I am overwhelmed!</p>
<p>Wait, there&#8217;s more! &#8216;Really?&#8217; I hear you say. No, there&#8217;s actually <a href="http://lesscss.org/">Less</a>.  Combining all this Bootstrap awesome with the power of Less is nothing short of genius.  It would have been great without it but so so so much better as part of the deployment. You can get really funky with mixins and all that jazz.</p>
<p>As you can see, my blog is a bit of a shambles, with no styling of any note.  It&#8217;s all because I like to tinker with the source code of my themes. I enjoy dipping into the world of WordPress every now and then as it feels more of a hobby than the java that I&#8217;m exposed to on a daily basis.</p>
<p><strong>My intention is to implement Bootstrap from Twitter into a WordPress theme as it simply feels like the right thing to do</strong>, then make it available for download.  Watch this space…  <a href="http://andij.com/contact/">Please get in contact</a> (or comment on this post) if you have the same intentions and would like to help out and keep up the motivation to get something released pretty soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://andij.com/2011/08/22/bootstrap-from-twitter-for-wordpress/feed</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Don&#8217;t panic!</title>
		<link>http://andij.com/2010/11/23/dont-panic</link>
		<comments>http://andij.com/2010/11/23/dont-panic#comments</comments>
		<pubDate>Tue, 23 Nov 2010 16:36:45 +0000</pubDate>
		<dc:creator>andij</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://andij.com/?p=510</guid>
		<description><![CDATA[My website will not always look like this! I&#8217;m currently knee deep into constructing and developing my WordPress theme in HTML5, CSS3 spiced up with a bunch of @media queries. As I described in my previous post, I&#8217;m experimenting with &#8230; <a href="http://andij.com/2010/11/23/dont-panic">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h3> My website will not always look like this!</h3>
<p>I&#8217;m currently knee deep into constructing and developing my WordPress theme in HTML5, CSS3 spiced up with a bunch of <code>@media</code> queries.</p>
<p>As I described in my previous post, I&#8217;m experimenting with a number of new technologies.  I have started to build this framework for a WordPress theme which will showcase the power of CSS3 <code>@media</code> queries.  So, while you&#8217;re here, scale your browser to see the different <code>@media</code> queries in action, and why not take a peek using your smartphone, or if you have one, your iPad.  When you&#8217;re there, give it a twist and see what it looks like in portrait and landscape.</p>
<p>Funky EH!  Right, I&#8217;m off to do a little more coding before going to visit my nephew, who&#8217;s celebrating his first birthday.</p>
]]></content:encoded>
			<wfw:commentRss>http://andij.com/2010/11/23/dont-panic/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Experimenting – mwaaa haaha</title>
		<link>http://andij.com/2010/11/11/experimenting-with-latest-web-tech</link>
		<comments>http://andij.com/2010/11/11/experimenting-with-latest-web-tech#comments</comments>
		<pubDate>Thu, 11 Nov 2010 16:28:35 +0000</pubDate>
		<dc:creator>andij</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Freelance]]></category>

		<guid isPermaLink="false">http://andij.com/?p=499</guid>
		<description><![CDATA[Recently I&#8217;ve taken to thinking along the lines of many other web designers and developers who are embracing the new technologies. Ranging from the funkiest mobile devices and latest browser technologies. Using a raft of the latest tech plenty of &#8230; <a href="http://andij.com/2010/11/11/experimenting-with-latest-web-tech">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve taken to thinking along the lines of many other web designers and developers who are embracing the new technologies.  Ranging from the funkiest mobile devices and latest browser technologies.</p>
<p>Using a raft of the latest tech plenty of testing and experimentation has been creeping it&#8217;s way into my daily routine.  Armed with a laptop with two external screens, a couple of &#8216;standard (single screen)&#8217; laptops and PCs accompanied with a small handful of smartphones and a tablet:</p>
<ul>
<li>Lenovo T500 &#8211; 1680&#215;1050 &#8211; Windows 7
<ul>
<li>Dell P2210H 1080&#215;1920 (portrait)</li>
<li>Dell P2210H 1920&#215;1080 (landscape)</li>
</ul>
</li>
<li>Toshiba Tecra &#8211; 1024&#215;768 &#8211; Ubuntu 10.04</li>
<li>Dell Optiplex GX520 &#8211; 1280&#215;1024 &#8211; Windows XP</li>
<li>Apple iPad &#8211; 1024&#215;768 &#8211; iOS 3.2.2</li>
<li>Apple iPhone 3G &#8211; 320&#215;480 &#8211; iOS 3.1.3</li>
<li>HTC Desire HD &#8211; 480&#215;800 &#8211; Andriod 2.2</li>
</ul>
<p>These tools of the trade allow me to see my projects on many different devices, so, as a result I&#8217;m going to be using this blog as a testing area for a ground-up build of a wordpress blog incorporating a bunch of ideas.  Many of which may fail, so if it&#8217;s spannered at any time you&#8217;ll know why.</p>
<p>So, first up is <a href="http://elliotjaystocks.com/">Elliot Jay Stocks</a>&#8216; <a href="http://starkerstheme.com/">Starkers WordPress theme</a>, this awesome bad-boy of a theme is right up my street as a web designer, it provides me with the bare-bones &#8216;naked&#8217; theme for me to apply a bespoke design from scratch.</p>
<p>Couple that with the baddass <a href="http://html5boilerplate.com/">HTML5 Boilerplate</a> code, giving me access to the most top-notch tricks to get a full-on HTML5 website started off on the right foot.</p>
<p>Then&#8230;..  An even awesomer revelation!! <a href="http://aarontgrogg.com/">Aaron T. Grogg</a> has got his shizzle out and performed an amalgamation of Starkers and Boilerplate in the form of a WordPress theme called <a href="http://wordpress.org/extend/themes/boilerplate">Boilerplate: Starkers WordPress theme!</a>.</p>
<p>I can hardly believe my eyes..  So much help and assistance out there on the interweb these days..  &#8211; love you guys -</p>
<p>THEN&#8230;.  (Yup, it&#8217;s not over yet&#8230;)  I scoot on over to <a href="http://lessframework.com/">Less Framework 3</a> and shave the CSS from here with all it&#8217;s <code>@media</code> queries.  Providing me with a foundation for tailoring the theme to a number of different width layouts.  I strip out the reset stuff as that exists in the Boilerplate theme by default.  Rock on over to <a href="http://codex.wordpress.org/Child_Themes">WordPress.org Child Themes</a> and use this info to create myself a child theme of Boilerplate.</p>
<p>As a result, I end up with this wonderful baseline of a theme, all ready and waiting for me to apply my limited knowledge to.  I&#8217;m certain that I&#8217;ll learn plenty from this process and expect to be able to apply this new found wealth to my lucky customers.</p>
<p>So, far, so good..  I&#8217;ll now evolve this theme steadily as I learn how to utilise all this wonderment.</p>
]]></content:encoded>
			<wfw:commentRss>http://andij.com/2010/11/11/experimenting-with-latest-web-tech/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Problems accessing admin after upgrading to Magento 1.3.0</title>
		<link>http://andij.com/2009/04/16/problems-accessing-admin-after-upgrading-to-magento-1_3_0</link>
		<comments>http://andij.com/2009/04/16/problems-accessing-admin-after-upgrading-to-magento-1_3_0#comments</comments>
		<pubDate>Thu, 16 Apr 2009 10:58:13 +0000</pubDate>
		<dc:creator>andij</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[problems]]></category>

		<guid isPermaLink="false">http://andij.com/?p=280</guid>
		<description><![CDATA[Having received an email from the Magento Team the other week bigging-up the latest release of Magento and encouraging me to upgrade as soon as I could, I dutifully upgraded the Mage_Core_Modules to 1.3.0.  This appeared to go without a &#8230; <a href="http://andij.com/2009/04/16/problems-accessing-admin-after-upgrading-to-magento-1_3_0">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Having received an email from the Magento Team the other week bigging-up the latest release of Magento and encouraging me to upgrade as soon as I could, I dutifully upgraded the Mage_Core_Modules to 1.3.0.  This appeared to go without a hitch and after I made a couple of adjustments in the admin and tested<span id="more-280"></span> the fronend I was happy that it was a successful upgrade.</p>
<p>The following day I attempted to login to the Magento admin area only to be presented with a 404 error!  Geez, what a pain.</p>
<p>After doing a bit of forum bashing I found the solution I was after:-</p>
<p><a href="http://www.magentocommerce.com/boards/viewthread/37202/P30/#t121336">http://www.magentocommerce.com/boards/viewthread/37202/P30/#t121336</a></p>
<blockquote><p>For those with the same problem as mine… (can’t login after upgrade, and don’t have ssh capabilities,) I have found a workaround. It worked for me, but I can’t guarantee it will work for you, so proceed at your own risk. I am not the most tech-saavy guy, I just figured it out by looking at the error.</p>
<p>1.)The first thing to do is download the entire magento 1.3 package. Unzip it, and go into Magento-&gt;app-&gt;code-&gt;core-&gt;Mage-&gt;Adminhtml-&gt;Model-&gt;Url.php Grab the Url.php file.</p>
<p>2.)Go to your server, and into your directory where you have magento installed. go to app-&gt;code-&gt;core-&gt;Mage-&gt;Adminhtml-&gt;Model and replace the Url.php file.</p>
<p>3. Clear the cache in your browser and try logging in again.</p>
<p>4. At this point, if you were able to get in, I suggest that you go to magento connect and properly upgrade. Worked for me. I hope it works for you.</p>
<p>After following these steps I was able to login without a problem. -phew-</p>
<p>Then, to top it off the dropdown menus were not working in the admin area!  Checking <a href="http://getfirebug.com/">Firebug </a>I found this was due to the javascripts 404-ing.  Another dose of forum searching it was apparent that this was a common problem (I had experienced it before myself) the /js folder and contents had the wrong permissions following the upgrade.</p>
<p>I opened <a href="http://fireftp.mozdev.org/">FireFTP</a> logged into the site and changed the permissions on the /js folder and all it&#8217;s contents to 755.  This has sorted that problem, so I&#8217;m happy now.</p>
<p>All in all it looks like these problems I encountered after the upgrade are now sorted, let&#8217;s hope that&#8217;s the last of them and the next upgrade will go smoother.</p>
]]></content:encoded>
			<wfw:commentRss>http://andij.com/2009/04/16/problems-accessing-admin-after-upgrading-to-magento-1_3_0/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>sfImageTransformPlugin &#8211; released</title>
		<link>http://andij.com/2008/10/15/sfimagetransformplugin-released</link>
		<comments>http://andij.com/2008/10/15/sfimagetransformplugin-released#comments</comments>
		<pubDate>Wed, 15 Oct 2008 19:34:46 +0000</pubDate>
		<dc:creator>andij</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Freelance]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Symfony]]></category>
		<category><![CDATA[sfImageTransform]]></category>
		<category><![CDATA[sfImageTransformPlugin]]></category>
		<category><![CDATA[stumani]]></category>

		<guid isPermaLink="false">http://andij.com/?p=69</guid>
		<description><![CDATA[Stuart Lowes has released sfImageTransformPlugin 0.1.0 for Symfony. This plugin is for manipulating images using the GD or ImageMagick libraries. A simple to use and flexible image manipulation symfony plugin. The plugin allows you to perform &#8220;transforms&#8221; on an image. &#8230; <a href="http://andij.com/2008/10/15/sfimagetransformplugin-released">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://twitter.com/stunami">Stuart Lowes</a> has released <a href="http://www.symfony-project.org/plugins/sfImageTransformPlugin">sfImageTransformPlugin</a> 0.1.0 for Symfony.  This plugin is for manipulating images using the GD or ImageMagick libraries.</p>
<p>A simple to use and flexible image manipulation symfony plugin. The plugin allows you to perform &#8220;transforms&#8221; on an image. A transform maybe simple like a resizing or mirroring or more complex<span id="more-69"></span> like overlays and pixelizing. The transforms can be chained together or applied individually. New transforms can be simple created by extending the sfImageTranform abstract class.</p>
<h2>Download</h2>
<p><a href="http://plugins.symfony-project.org/sfImageTransformPlugin">http://plugins.symfony-project.org/sfImageTransformPlugin</a></p>
<h2>Plugin page</h2>
<p><a href="http://www.symfony-project.org/plugins/sfImageTransformPlugin">http://www.symfony-project.org/plugins/sfImageTransformPlugin</a></p>
<h2>Examples</h2>
<h4>Starting with the original image:-</h4>
<p><a href="http://andij.com/wp-content/uploads/2008/09/sfimagetransform_logo.png"><img class="size-full wp-image-53" title="sfimagetransform_logo" src="http://andij.com/wp-content/uploads/2008/09/sfimagetransform_logo.png" alt="sfImageTransform" width="218" height="327" /></a></p>
<h4>Here is an example of a transform that:-</h4>
<ul>
<li>scales &#8216;logo.png&#8217; by 50%</li>
</ul>
<pre class="brush: php; title: ; notranslate">
public function executeDemo1()
{
 $img = new sfImage(sfConfig::get('sf_upload_dir') . DIRECTORY_SEPARATOR . 'logo.png', 'image/png');
 $response = $this-&gt;getResponse();
 $response-&gt;setContentType($img-&gt;getMIMEType());

 $img-&gt;scale(0.5);

 $response-&gt;setContent($img);

 return sfView::NONE;
}
</pre>
<p>Result:-</p>
<p><a href="http://andij.com/wp-content/uploads/2008/10/demo1.png"><img class="alignnone size-medium wp-image-100" title="demo1" src="http://andij.com/wp-content/uploads/2008/10/demo1.png" alt="" /></a></p>
<h4>Here is an example of a transform that:-</h4>
<ul>
<li>flood fill&#8217;s &#8216;logo.png&#8217; at &#8216;x100,y170&#8242; with #000000</li>
<li>scales by 50%</li>
<li>rotate by 120%</li>
<li>draw a rectancle of 5 pixels around edge and colour it #00FF00</li>
<li>write the text &#8220;bathcamp 2008&#8243; at &#8216;x10,y10&#8242; 10px Verdana coloured #FF9900</li>
</ul>
<pre class="brush: php; title: ; notranslate">
public function executeDemo5()
{
 $img = new sfImage(sfConfig::get('sf_upload_dir') . DIRECTORY_SEPARATOR . 'logo.png', 'image/png');
 $response = $this-&gt;getResponse();
 $response-&gt;setContentType($img-&gt;getMIMEType());

 $img-&gt;fill(100,170)-&gt;scale(0.5)-&gt;rotate(120)-&gt;rectangle(1, 1, $img-&gt;getWidth() - 1, $img-&gt;getHeight() - 5, 5, '#00FF00')-&gt;text('bathcamp 2008', 10, 10, 10, 'Verdana', '#FF9900');

 $response-&gt;setContent($img);

 return sfView::NONE;
}
</pre>
<p>Result</p>
<p><a href="http://andij.com/wp-content/uploads/2008/10/demo5.png"><img class="alignnone size-full wp-image-103" title="demo5" src="http://andij.com/wp-content/uploads/2008/10/demo5.png" alt="" /></a><br />
<a href="http://twitter.com/stunami">Stunami</a> has provided a collection of transforms for the GD and ImageMagick libraries.</p>
]]></content:encoded>
			<wfw:commentRss>http://andij.com/2008/10/15/sfimagetransformplugin-released/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SKY Satellite and Terrestrial Television Structured Cable Distribution System (CAT5e)</title>
		<link>http://andij.com/2008/09/07/sky-satellite-and-terrestrial-television-structured-cable-distribution-system-cat5e</link>
		<comments>http://andij.com/2008/09/07/sky-satellite-and-terrestrial-television-structured-cable-distribution-system-cat5e#comments</comments>
		<pubDate>Sun, 07 Sep 2008 08:12:07 +0000</pubDate>
		<dc:creator>andij</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[cabling]]></category>
		<category><![CDATA[drawing]]></category>
		<category><![CDATA[on site]]></category>
		<category><![CDATA[rack diagram]]></category>

		<guid isPermaLink="false">http://andij.com/?p=148</guid>
		<description><![CDATA[Marathon Oil CAT5e TV Distribution Brief To relocate the satellite and terrestrial television distribution system from the 4th floor Capital House onto the 3rd floor server room. To employ a system to distribute the 12 television channels through the structured &#8230; <a href="http://andij.com/2008/09/07/sky-satellite-and-terrestrial-television-structured-cable-distribution-system-cat5e">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h1>Marathon Oil CAT5e TV Distribution</h1>
<h2>Brief</h2>
<p>To relocate the satellite and terrestrial television distribution system from the 4th floor Capital House onto the 3rd floor server room.</p>
<p>To employ a system to distribute the 12 television channels through the structured cabling.  With individual channel selection using infrared remote control.</p>
<h2>Solution</h2>
<p>The Scion Technologies PRO 1000 16-channel video<span id="more-148"></span> and audio distribution switch was chosen.</p>
<p>SKY digiboxes were retained to produce the seven satellite channels.</p>
<p>Stavekirk’s XChannel Pro television tuners were used to produce the terrestrial television channels.</p>
<h2>Implementation</h2>
<p>The existing television distribution equipment was removed and relocated in a 27U rack with the inclusion of suitable cable and power management.</p>
<h2>Rack Diagram</h2>
<p><a href="http://andij.com/wp-content/uploads/2008/11/rack.png"><img class="alignnone size-medium wp-image-155" title="rack" src="http://andij.com/wp-content/uploads/2008/11/rack-143x300.png" alt="" width="143" height="300" /></a></p>
<h2>Schematic Diagram</h2>
<p><a href="http://andij.com/wp-content/uploads/2008/11/schemaitc.png"><img class="alignnone size-medium wp-image-156" title="schemaitc" src="http://andij.com/wp-content/uploads/2008/11/schemaitc-300x231.png" alt="" width="300" height="231" /></a></p>
<h2>Cross Patch Reference Table</h2>
<table border="1" cellspacing="0" cellpadding="5">
<tbody>
<tr>
<td><strong>Date</strong></td>
<td><strong>Location</strong></td>
<td><strong>Data Outlet</strong></td>
<td><strong>Scion Tech</strong></td>
<td><strong>Remote</strong></td>
<td><strong>Room</strong></td>
</tr>
<tr>
<td>09/02/04</td>
<td>Trading room</td>
<td>240</td>
<td>#1</td>
<td>Hitachi</td>
<td>3/41</td>
</tr>
<tr>
<td>09/02/04</td>
<td>Russell Wall</td>
<td>099</td>
<td>#2</td>
<td>WinTV</td>
<td>3/41</td>
</tr>
<tr>
<td>09/02/04</td>
<td>John Bradley</td>
<td>103</td>
<td>#3</td>
<td>Sony</td>
<td>3/40</td>
</tr>
<tr>
<td>09/02/04</td>
<td>Reception 50”</td>
<td>195</td>
<td>#4</td>
<td>None</td>
<td>Reception</td>
</tr>
<tr>
<td>09/02/04</td>
<td>Reception 46&#8243;</td>
<td>196</td>
<td>#5</td>
<td>None</td>
<td>Reception</td>
</tr>
</tbody>
</table>
<h2>Back of rack</h2>
<h3>Television and SKY digiboxes</h3>
<p><a href="http://andij.com/wp-content/uploads/2008/11/back01.png"><img class="alignnone size-medium wp-image-157" title="back01" src="http://andij.com/wp-content/uploads/2008/11/back01-225x300.png" alt="" width="225" height="300" /></a></p>
<h3>SKY digiboxes, XChannel Pro’s and Scion Technologies PRO 1000</h3>
<p><a href="http://andij.com/wp-content/uploads/2008/11/back02.png"><img class="alignnone size-medium wp-image-158" title="back02" src="http://andij.com/wp-content/uploads/2008/11/back02-225x300.png" alt="" width="225" height="300" /></a></p>
<h3>XChannel Pro TV Tuners and Aerial Distribution</h3>
<p><a href="http://andij.com/wp-content/uploads/2008/11/tuners.png"><img class="alignnone size-medium wp-image-159" title="tuners" src="http://andij.com/wp-content/uploads/2008/11/tuners-300x225.png" alt="" width="300" height="225" /></a></p>
<h3>Scion Technologies PRO 1000 and Phillips PAS7508E Satellite Multiplexer</h3>
<p><a href="http://andij.com/wp-content/uploads/2008/11/multiplexer.png"><img class="alignnone size-medium wp-image-160" title="multiplexer" src="http://andij.com/wp-content/uploads/2008/11/multiplexer-225x300.png" alt="" width="225" height="300" /></a></p>
<h2>Front of rack</h2>
<h3>Television and SKY digiboxes</h3>
<p><a href="http://andij.com/wp-content/uploads/2008/11/front01.png"><img class="alignnone size-medium wp-image-161" title="front01" src="http://andij.com/wp-content/uploads/2008/11/front01-225x300.png" alt="" width="225" height="300" /></a></p>
<h3>SKY digiboxes</h3>
<p><a href="http://andij.com/wp-content/uploads/2008/11/front02.png"><img class="alignnone size-medium wp-image-162" title="front02" src="http://andij.com/wp-content/uploads/2008/11/front02-225x300.png" alt="" width="225" height="300" /></a></p>
<h3>SKY digibox, Stavekirk’s XChannel Pro IR Front Panel, Scion Technologies PRO 1000 and cable management</h3>
<p><a href="http://andij.com/wp-content/uploads/2008/11/cablemanage.png"><img class="alignnone size-medium wp-image-163" title="cablemanage" src="http://andij.com/wp-content/uploads/2008/11/cablemanage-225x300.png" alt="" width="225" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://andij.com/2008/09/07/sky-satellite-and-terrestrial-television-structured-cable-distribution-system-cat5e/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stop the annoying &#039;Camera Connected&#039; dialogue when connecting iPhone to Windows XP</title>
		<link>http://andij.com/2008/08/31/stop-the-annoying-camera-connected-dialogue-when-connecting-iphone-to-windows-xp</link>
		<comments>http://andij.com/2008/08/31/stop-the-annoying-camera-connected-dialogue-when-connecting-iphone-to-windows-xp#comments</comments>
		<pubDate>Sun, 31 Aug 2008 09:02:33 +0000</pubDate>
		<dc:creator>andij</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://andij.com/?p=26</guid>
		<description><![CDATA[Every time I dock my iPhone on Windows XP I get a popup asking me if I&#8217;d like to launch an application. Well you know what? All I wanna do is stand it in it&#8217;s dock and allow it to &#8230; <a href="http://andij.com/2008/08/31/stop-the-annoying-camera-connected-dialogue-when-connecting-iphone-to-windows-xp">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Every time I dock my iPhone on Windows XP I get a popup asking me if I&#8217;d like to launch an application.  Well you know what?  All I wanna do is stand it in it&#8217;s dock and allow it to charge.</p>
<p><a href="http://andij.com/wp-content/uploads/2008/08/iphone-camera-connected.gif"><img class="alignnone size-medium wp-image-27" title="iphone-camera-connected" src="http://andij.com/wp-content/uploads/2008/08/iphone-camera-connected-283x300.gif" alt="" width="283" height="300" /></a></p>
<p>So, to get round this pain in the arse problem<span id="more-26"></span> follow these simple steps:-</p>
<ol>
<li>Ensure that your iPhone is connected</li>
<li>Open &#8216;My Computer&#8217;</li>
<li>Right Click on the &#8216;Apple iPhone&#8217; icon</li>
<li>Select Properties</li>
<li>Pick the Events tab</li>
<li>Choose &#8216;Take no action&#8217;</li>
<li>Click &#8216;OK&#8217;</li>
</ol>
<p><a href="http://andij.com/wp-content/uploads/2008/08/iphone-take-no-action.gif"><img class="alignnone size-medium wp-image-28" title="iphone-take-no-action" src="http://andij.com/wp-content/uploads/2008/08/iphone-take-no-action-266x300.gif" alt="" width="266" height="300" /></a></p>
<p>Now when you dock your iPhone the popup will not annoy you.</p>
]]></content:encoded>
			<wfw:commentRss>http://andij.com/2008/08/31/stop-the-annoying-camera-connected-dialogue-when-connecting-iphone-to-windows-xp/feed</wfw:commentRss>
		<slash:comments>34</slash:comments>
		</item>
		<item>
		<title>Sync iPhone with Google Calendar</title>
		<link>http://andij.com/2008/08/12/sync-iphone-with-google-calendar</link>
		<comments>http://andij.com/2008/08/12/sync-iphone-with-google-calendar#comments</comments>
		<pubDate>Tue, 12 Aug 2008 15:20:31 +0000</pubDate>
		<dc:creator>andij</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[workflow]]></category>

		<guid isPermaLink="false">http://andij.com/?p=21</guid>
		<description><![CDATA[I&#8217;ve tried and tried to find an application that will sync my Google Calendar with my iPhone calendar effortlessly without the need for cables, invoking an application, using iTunes or Outlook. My requirements are simple:- Sync Google Calendar with my &#8230; <a href="http://andij.com/2008/08/12/sync-iphone-with-google-calendar">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve tried and tried to find an application that will sync my Google Calendar with my iPhone calendar effortlessly without the need for cables, invoking an application, using iTunes or Outlook.</p>
<p>My requirements are simple:-</p>
<ul>
<li>Sync Google Calendar with my iPhone Calendar</li>
</ul>
<p>In practice this seemed to allude me, I did find a third party application through my Jailbroken app list<span id="more-21"></span> but this required me to run the app on my iPhone and request the synchronisation by clicking a button.  I can&#8217;t for the life of me remember what the app was called but it did 90% of what I was after.</p>
<p>Bring on <a href="http://www.nuevasync.com/">http://www.nuevasync.com/</a> !  This web based service managed to get me, my iPhone and my Google Calendar all synched up with a minimum of effort.</p>
<p>The only reservation that I have at this time is that it appears that I can only sync with my iGoogle account and not my Google Apps for andij.com account, for now with this product being in it&#8217;s infancy I am more than happy to accept this minor inconvenience.</p>
<p>Check out this post in the Apple Discussions <a href="http://discussions.apple.com/thread.jspa?messageID=7854548">http://discussions.apple.com/thread.jspa?messageID=7854548</a> David Boreham (owner of Nuevasync).</p>
]]></content:encoded>
			<wfw:commentRss>http://andij.com/2008/08/12/sync-iphone-with-google-calendar/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Setup local installation of Magento 1.0.19870 WampServer</title>
		<link>http://andij.com/2008/05/16/setup-local-installation-of-magento</link>
		<comments>http://andij.com/2008/05/16/setup-local-installation-of-magento#comments</comments>
		<pubDate>Fri, 16 May 2008 07:39:22 +0000</pubDate>
		<dc:creator>andij</dc:creator>
				<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Magento]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[local]]></category>
		<category><![CDATA[wamp]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://andij.com/blog/?p=7</guid>
		<description><![CDATA[Prerequisites:- WampServer2 installation http://andij.com/2008/05/15/installing-and-configuring-wampserver2/ Now to install Magento http://www.magentocommerce.com/ Including the Sample Data pack. Note: Ensure to install the Sample Data pack before performing the installation of Magento itself. Download both the &#8216;Sample Data&#8217; pack and &#8216;Magento&#8217;, save these somewhere, &#8230; <a href="http://andij.com/2008/05/16/setup-local-installation-of-magento">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Prerequisites:-<br />
WampServer2 installation <a href="http://andij.com/2008/05/15/installing-and-configuring-wampserver2/">http://andij.com/2008/05/15/installing-and-configuring-wampserver2/</a></p>
<p>Now to install Magento <a href="http://www.magentocommerce.com/">http://www.magentocommerce.com/</a> Including the Sample Data pack.</p>
<p>Note: Ensure to install the Sample Data pack before performing the installation of Magento itself.</p>
<p>Download both the &#8216;Sample Data&#8217; pack and &#8216;Magento&#8217;, save these somewhere, decide<span id="more-12"></span> where you want your new ecommerce shop to be installed, I&#8217;m going to install it here: http://www.project.dev/magento/</p>
<p>Unpack magento-1.0.19870.zip into D:\websites\project\htdocs seeing as the zip file contains the \magento\ folder, the path you&#8217;ll end up with is D:\websites\project\htdocs\magento</p>
<p>Unpack magento-sample-data-1.0.19870.zip into D:\websites\project\htdocs this will create a folder called D:\websites\project\htdocs\magento-sample-data-1.0.19870</p>
<p>Now is a good time to create your MySQL database, to do this open http://localhost/ where you should see the WampServer homepage, click &#8216;phpmyadmin&#8217;.  Simply create a database by putting your database name &#8216;magento_sample&#8217; (I decided to call it this so that I can create another called &#8216;magento_live&#8217; for the real shop data) into the &#8216;Create new database&#8217; field, leave all the defaults and click &#8216;Create&#8217;, you&#8217;ll notice the database name appear in the left column.</p>
<p><a href="http://www.magentocommerce.com/knowledge-base/entry/installing-sample-data-archive-for-magento-1019870">Installing Sample Data Archive for Magento 1.0.19870</a></p>
<p>Click &#8216;magento_sample&#8217; in the left column then click the &#8216;Import&#8217; tab at the top.</p>
<p>Browse for the sample data file, located D:\websites\project\htdocs\magento-sample-data-1.0.19870\magento_sample_data_for_1.0.19870.sql.  Leave the defaults and click &#8216;Go&#8217; at the bottom right. You&#8217;ll now be importing the sample data and it&#8217;ll take a little while.  Once complete there&#8217;ll be a long list of database tables in the left column.</p>
<p><strong>Configure WampServer Apache modules and PHP extensions</strong></p>
<p>Before installing Magento ensure you complete the following:-</p>
<p>Click on the WampServer icon in the system tray</p>
<blockquote><p>&#8216;Apache&#8217; -&gt; &#8216;Apache Modules&#8217; tick &#8216;rewrite_module&#8217;<br />
&#8216;PHP&#8217; -&gt; &#8216;PHP Extensions&#8217; tick &#8216;php_curl&#8217;<br />
&#8216;PHP&#8217; -&gt; &#8216;PHP Extensions&#8217; tick &#8216;php_mcrypt&#8217;</p></blockquote>
<p>Now browse to http://www.project.dev/magento/ you should now see the first page of the Magento installation procedure.</p>
<p>Follow the installation procedure, changing the location, time zone, currency to your requirements.  When you&#8217;re presented with the database configuration page, simply enter &#8216;magento_sample&#8217; into the database field and proceed.  (this is assuming that your MySQL user is &#8216;root&#8217; and your password is blank).</p>
<p>Let me know how it goes.</p>
]]></content:encoded>
			<wfw:commentRss>http://andij.com/2008/05/16/setup-local-installation-of-magento/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

