<?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>Looks Can Kill</title>
	<atom:link href="http://www.lookscankill.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lookscankill.org</link>
	<description>Wordpress and ExpressionEngine Development Cardiff</description>
	<lastBuildDate>Thu, 27 Oct 2011 15:40:21 +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>Auto updating WordPress on your local server</title>
		<link>http://www.lookscankill.org/2011/10/auto-updating-wordpress-on-your-local-server/</link>
		<comments>http://www.lookscankill.org/2011/10/auto-updating-wordpress-on-your-local-server/#comments</comments>
		<pubDate>Thu, 27 Oct 2011 13:35:34 +0000</pubDate>
		<dc:creator>hello</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://www.lookscankill.org/?p=203</guid>
		<description><![CDATA[If you&#8217;ve ever had WordPress (WP) installed on a local server and tried to use the auto upgrade feature, you&#8217;ll probably be familiar with this screen that asks you to input your FTP details: This can be super frustrating when all you want to do is get the latest version of WP, install a new [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>If you&#8217;ve ever had WordPress (WP) installed on a local server and tried to use the auto upgrade feature, you&#8217;ll probably be familiar with this screen that asks you to input your FTP details:</p>
<p><img src="http://www.lookscankill.org/wp-content/uploads/2011/10/Screen-shot-2011-10-27-at-15.13.03.png" alt="" title="Wordpress asks for FTP details" width="494" height="304" class="alignnone size-full wp-image-204" /></p>
<p>This can be super frustrating when all you want to do is get the latest version of WP, install a new plugin, or just get rid of the annoying &#8220;there&#8217;s a new version&#8221; messages!</p>
<p>The reason you&#8217;re being asked for these details is because on your system, <strong>the OWNER of your WP installation is not the same as the USER that is currently running Apache</strong>. </p>
<p>To fix this problem, we need to give ownership of your WordPress directory to the user that is running Apache. </p>
<h3>Step 1: find out the user that is currently running Apache</h3>
<ol>
<li>Create a file in the root directory of your WP installation called whoami.php</li>
<li>Within this file, add the following PHP code: <pre><code>&lt;?php echo(exec(&quot;whoami&quot;)); ?&gt;
</code></pre></li>
<li>Now visit that file via your browser (for example type localhost/wordpress/whoami.php into your browser</li>
<li>Make a note of the username that appears</li>
</ol>
<h3>Step 2: Give that user ownership of your WordPress directory</h3>
<ol>
<li>Open your terminal window, and navigate to parent WP directory (for this example we&#8217;ll assume that it&#8217;s called WordPress: <code>cd /Library/WebServer/Documents/</code></li>
<li>Now use the following command to change the ownership: <code>sudo chown -R username: Wordpress</code></li>
</ol>
<p>That&#8217;s it &#8211; you should now be able to auto-upgrade your WordPress installation, or auto-install a plugin without being asked for FTP details.  </p>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lookscankill.org/2011/10/auto-updating-wordpress-on-your-local-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Browser Specific Stylesheets</title>
		<link>http://www.lookscankill.org/2011/03/browser-specific-stylesheets/</link>
		<comments>http://www.lookscankill.org/2011/03/browser-specific-stylesheets/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 10:35:39 +0000</pubDate>
		<dc:creator>hello</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[IE7]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.lookscankill.org/?p=171</guid>
		<description><![CDATA[Different browsers display our code differently. We often find ourselves tweaking the display using hacks specific to particular browsers. However, once there are multiple hacks in a style sheet it becomes messy. It can also be tricky, when using a single style sheet, to ensure that one hack doesn&#8217;t break the layout in another browser. [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Different browsers display our code differently.  We often find ourselves tweaking the display using hacks specific to particular browsers.  However, once there are multiple hacks in a style sheet it becomes messy.  It can also be tricky, when using a single style sheet, to ensure that one hack doesn&#8217;t break the layout in another browser. </p>
<h3>Enter Conditional Stylesheets!</h3>
<p>An alternative way to approach inconsistency between browsers is to give them their own stylesheet, which is only called when that browser is being used.  </p>
<p>At the moment the inconsistencies are most often found when comparing more standards compliant browsers like Firefox and Chrome with Internet Explorer (IE).  Each version of IE has its own little discrepancies in how it interprets HTML and CSS.</p>
<h4>So, how do we implement a Browser Specific Stylesheet to target IE7 (for e.g.)? </h4>
<p>1. Create an IE7 only stylesheet in your CSS folder.  Why not name it <code>ie7.css</code>?</p>
<p>2. Between the <code>&lt;head&gt;&lt;/head&gt;</code> tags, insert a link to the IE7 stylesheet that you have created:</p>
<p><pre><pre>
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;ie7.css&quot;&gt;
</pre></pre></p>
<p>3. Wrap the link in a comment tag, so that it will be invisible to all but IE7:</p>
<p><pre><pre>
&lt;!--[if IE 7]&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;ie7.css&quot;&gt;
&lt;![endif]--&gt;
</pre></pre></p>
<h4> What about other browsers I want to target?</h4>
<ul>
<li> For other versions of IE, and to include ranges (like &#8220;IE7 and above&#8221;), check out <a href="http://css-tricks.com/how-to-create-an-ie-only-stylesheet/">How To Create An IE-Only Stylesheet</a> on http://css-tricks.com</li>
<li> If you want to have Safari, Firefox or Chrome etc. specific styles, take a look at <a href="http://paulirish.com/2009/browser-specific-css-hacks/">Browser CSS Hacks</a> by <a href="http://paulirish.com">Paul Irish</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.lookscankill.org/2011/03/browser-specific-stylesheets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Invalid GET Data from Feedburner</title>
		<link>http://www.lookscankill.org/2010/01/invalid-get-data-from-feedburner/</link>
		<comments>http://www.lookscankill.org/2010/01/invalid-get-data-from-feedburner/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 11:44:12 +0000</pubDate>
		<dc:creator>hello</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[expressionengine]]></category>
		<category><![CDATA[feedburner]]></category>
		<category><![CDATA[rss]]></category>
		<category><![CDATA[Yahoo! Pipes]]></category>

		<guid isPermaLink="false">http://www.lookscankill.org/?p=164</guid>
		<description><![CDATA[I was receiving feed updates from simplechurch.eu via Google Reader. Whenever I clicked on the title of the post, I would find myself staring at a white page with the text: Invalid GET Data While the feed was generated by an ExpressionEngine RSS template file, and combined with other feeds using Yahoo! Pipes, the distribution [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I was receiving feed updates from <a href="http://simplechurch.eu">simplechurch.eu</a> via Google Reader.  Whenever I clicked on the title of the post, I would find myself staring at a white page with the text:<br />
<code>Invalid GET Data</code><br />
While the feed was generated by an ExpressionEngine RSS template file, and combined with other feeds using Yahoo! Pipes, the distribution of the feed was being handled by Feedburner.  </p>
<p>So I searched around a little and found <a href="http://expressionengine.com/forums/viewthread/135186/#667446">this quick solution</a> to this problem.  Here&#8217;s how I fixed it, step by step:</p>
<ol>
<li>Log into your Feedburner Account</li>
<li>Click on the feed you wish to fix</li>
<li>On the first page (Analyze) click <strong>Configure Stats</strong></li>
<li>Beneath <em>Track Clicks As A Traffic Source In Google Analytics</em> click <strong>Customize&#8230;</strong></li>
<li>In the box labeled Campaign you should see: <code>Feed: ${feedUri} (${feedName})</code></li>
<li>Remove the round brackets, so that it reads: <code>Feed: ${feedUri} ${feedName}</code></li>
<li>Click <strong>Close</strong> and then <strong>Save</strong>.  Your feed should now work.</li>
<p><a href="http://www.lookscankill.org/wp-content/uploads/2010/01/Screen-shot-2010-01-13-at-11.34.48.png"><img src="http://www.lookscankill.org/wp-content/uploads/2010/01/Screen-shot-2010-01-13-at-11.34.48-510x300.png" alt="" title="Screen shot 2010-01-13 at 11.34.48" width="510" height="300" class="alignnone size-thumbnail wp-image-165" /></a><br />
<a href="http://www.lookscankill.org/wp-content/uploads/2010/01/Screen-shot-2010-01-13-at-11.36.56.png"><img src="http://www.lookscankill.org/wp-content/uploads/2010/01/Screen-shot-2010-01-13-at-11.36.56-510x300.png" alt="" title="Screen shot 2010-01-13 at 11.36.56" width="510" height="300" class="alignnone size-thumbnail wp-image-166" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lookscankill.org/2010/01/invalid-get-data-from-feedburner/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Setting up Google Apps (Gmail) on Media Temple&#8217;s Grid-Service (gs)</title>
		<link>http://www.lookscankill.org/2009/10/setting-up-google-apps-gmail-on-media-temples-grid-service-gs/</link>
		<comments>http://www.lookscankill.org/2009/10/setting-up-google-apps-gmail-on-media-temples-grid-service-gs/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 12:23:29 +0000</pubDate>
		<dc:creator>hello</dc:creator>
				<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://www.lookscankill.org/?p=143</guid>
		<description><![CDATA[Love the features and benefits of Gmail, but want your own custom email address? Google Apps make this possible. Here&#8217;s a little tutorial on setting up Gmail as the Mailbox for your Media Temple Grid-Service account (don&#8217;t forget to replace &#8216;yourdomainname.com&#8217; with your actual domain name!) Visit Google Apps and sign up for an account [...]]]></description>
			<content:encoded><![CDATA[<p></p><p class="note">Love the features and benefits of Gmail, but want your own custom email address? Google Apps make this possible. Here&#8217;s a little tutorial on setting up Gmail as the Mailbox for your Media Temple Grid-Service account (don&#8217;t forget to replace &#8216;yourdomainname.com&#8217; with your actual domain name!)</p>
<h3>Visit Google Apps and sign up for an account</h3>
<p><a href="http://www.google.com/apps/intl/en/group/index.html">Click here</a> and fill out the documentation relating to your domain name.</p>
<h3>Change the MX Records for your domain to point to Google&#8217;s mail server</h3>
<ol>
<li>Log in at <a href="http://ac.mediatemple.net">http://ac.mediatemple.net</a></li>
<li>Click on the domain you wish to edit</li>
<li>Click Edit Zone File</li>
<li>Create 5 MX records with the following values:
<ul>
<li>1 ASPMX.L.GOOGLE.COM.</li>
<li>5 ALT1.ASPMX.L.GOOGLE.COM.</li>
<li>5 ALT2.ASPMX.L.GOOGLE.COM.</li>
<li>10 ASPMX2.GOOGLEMAIL.COM.</li>
<li>10 ASPMX3.GOOGLEMAIL.COM.</li>
</ul>
</li>
<li> Click Save</li>
</ol>
<p><img src="http://www.lookscankill.org/wp-content/uploads/2009/10/picture-31-510x172.png" alt="Edit Zone File" title="Edit Zone File" width="510" height="172" class="alignnone size-thumbnail wp-image-145" /></p>
<h3>Create a mail.yourdomainname.com folder in your domains folder.</h3>
<p>Our next goal is to make sure that when a user visits mail.yourdomainname.com your Google Mail page is displayed.  </p>
<ol>
<li>In your FTP client browse to your <strong>domains</strong> folder.  </li>
<li>Create a new folder called mail.yourdomainname.com</li>
<li>Within that folder create another folder called <strong>html</strong></li>
</ol>
<h3>Create a .htaccess file with a 301 redirect.</h3>
<p>When someone types in mail.yourdomainname.com we want them to be redirected to http://google.com/a/yourdomainname.com.  The file we use to do this is called a .htaccessfile.  </p>
<ol>
<li>Create a file within your html folder (created in the last step) and name it .htaccess</li>
<li>Open the .htaccess file in your FTP client and add the following line: <code>redirect 301 / http://mail.google.com/a/yourdomainname.com/</code></li>
<li>Save the file</li>
</ol>
<p>Now you can navigate to mail.yourdomainname.com and manage your email. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.lookscankill.org/2009/10/setting-up-google-apps-gmail-on-media-temples-grid-service-gs/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Norm Murray &amp; Associates</title>
		<link>http://www.lookscankill.org/2009/10/norm-murray-associates/</link>
		<comments>http://www.lookscankill.org/2009/10/norm-murray-associates/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 17:31:57 +0000</pubDate>
		<dc:creator>hello</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.lookscankill.org/?p=140</guid>
		<description><![CDATA[Graphic Design, Logo/Identity, xHTML, CSS, WordPress Site for a management consultancy. Launched in 2008.]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://normmurray.org"><img src="http://www.lookscankill.org/wp-content/uploads/2009/10/picture-22-510x300.png" alt="norm murray" width="510" height="300" class="post_image" /></a><br />
<em><br />
Graphic Design, Logo/Identity, xHTML, CSS, WordPress</em></p>
<p>Site for a management consultancy.  Launched in 2008. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.lookscankill.org/2009/10/norm-murray-associates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make Things Fair</title>
		<link>http://www.lookscankill.org/2009/10/make-things-fair/</link>
		<comments>http://www.lookscankill.org/2009/10/make-things-fair/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 17:26:18 +0000</pubDate>
		<dc:creator>hello</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.lookscankill.org/?p=135</guid>
		<description><![CDATA[Graphic Design, Logo/Identity, xHTML, CSS, WordPress This blog addresses issues of human trafficking and consumerism, profiling good and bad brands and highlighting world issues.]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://makethingsfair.com"><img src="http://www.lookscankill.org/wp-content/uploads/2009/10/picture-21-510x300.png" alt="make things fair" width="510" height="300" class="post_image" /></a><br />
<em>Graphic Design, Logo/Identity, xHTML, CSS, WordPress</em></p>
<p>This blog addresses issues of human trafficking and consumerism, profiling good and bad brands and highlighting world issues. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.lookscankill.org/2009/10/make-things-fair/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hope Church, Cardiff</title>
		<link>http://www.lookscankill.org/2009/02/hope-church-cardiff/</link>
		<comments>http://www.lookscankill.org/2009/02/hope-church-cardiff/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 13:42:18 +0000</pubDate>
		<dc:creator>hello</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.lookscankill.org/wordpress/?p=47</guid>
		<description><![CDATA[Graphic Design, Logo/Identity, xHTML, CSS, ExpressionEngine The website of Hope Church Cardiff, a community of faith in Wales&#8217; capital city. The site is intended to act as an online connecting point for the community, incorporating a blog, diary, podcast and interesting links for members and visitors to check out. This site was launched on the [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://www.hopechurchcardiff.co.uk"><img src="http://www.lookscankill.org/wp-content/uploads/2009/02/hopechurch-screenshot-510x300.jpg" alt="hope church" title="hope church" width="510" height="300" class="post_image" /></a><br />
<em>Graphic Design, Logo/Identity, xHTML, CSS, ExpressionEngine</em></p>
<p>The website of Hope Church Cardiff, a community of faith in Wales&#8217; capital city.  The site is intended to act as an online connecting point for the community, incorporating a blog, diary, podcast and interesting links for members and visitors to check out. </p>
<p>This site was launched on the 26th April.     </p>
]]></content:encoded>
			<wfw:commentRss>http://www.lookscankill.org/2009/02/hope-church-cardiff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>simplechurch.eu</title>
		<link>http://www.lookscankill.org/2009/02/simplechurcheu/</link>
		<comments>http://www.lookscankill.org/2009/02/simplechurcheu/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 20:51:52 +0000</pubDate>
		<dc:creator>hello</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.lookscankill.org/wordpress/?p=37</guid>
		<description><![CDATA[Graphic Design, Logo/Identity, xHTML, CSS, ExpressionEngine simplechurch.eu is a network of networks, a hub for those involved with movements of simple churches throughout Europe. LCK were commissioned to design the site from the bottom up, to provide a design which was simple, user friendly, and which allowed for content scalability. This site will be launched [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://simplechurch.eu"><img src="http://www.lookscankill.org/wp-content/uploads/2009/02/simplechurch-screenshot2-510x300.jpg" alt="simplechurch-screenshot2" title="simplechurch-screenshot2" width="510" height="300" class="post_image" /></a><br />
<em>Graphic Design, Logo/Identity, xHTML, CSS, ExpressionEngine</em></p>
<p>simplechurch.eu is a network of networks, a hub for those involved with movements of simple churches throughout Europe.  LCK were commissioned to design the site from the bottom up, to provide a design which was simple, user friendly, and which allowed for content scalability.</p>
<p>This site will be launched in May 2009.  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.lookscankill.org/2009/02/simplechurcheu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All Nations, Southern Africa</title>
		<link>http://www.lookscankill.org/2009/02/all-nations/</link>
		<comments>http://www.lookscankill.org/2009/02/all-nations/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 17:07:17 +0000</pubDate>
		<dc:creator>hello</dc:creator>
				<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.lookscankill.org/wordpress/?p=26</guid>
		<description><![CDATA[Graphic Design, xHTML, CSS, ExpressionEngine All Nations are an NGO working among the poorest members of society in Cape Town, South Africa. They are develop life changing communities of faith, assist entrepreneurs and train leaders. This site was designed and developed by Looks Can Kill.]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://all-nations.co.za"><img src="http://www.lookscankill.org/wp-content/uploads/2009/02/allnations-screenshot.jpg" alt="allnations-screenshot" title="allnations-screenshot" width="520" height="300" class="post_image" /></a><br />
<em>Graphic Design, xHTML, CSS, ExpressionEngine</em></p>
<p>All Nations are an NGO working among the poorest members of society in Cape Town, South Africa. They are develop life changing communities of faith, assist entrepreneurs and train leaders.</p>
<p>This site was designed and developed by Looks Can Kill. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.lookscankill.org/2009/02/all-nations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

