<?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>Waterford Web Design</title>
	<atom:link href="http://www.waterfordwebdesign.ie/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.waterfordwebdesign.ie</link>
	<description>Professional Web Advice from a Web Developer in the Waterford Area</description>
	<lastBuildDate>Fri, 06 Jan 2012 10:51:13 +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>incorrect-captcha-sol recaptcha</title>
		<link>http://www.waterfordwebdesign.ie/incorrect-captcha-sol/</link>
		<comments>http://www.waterfordwebdesign.ie/incorrect-captcha-sol/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 16:13:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.waterfordwebdesign.ie/?p=304</guid>
		<description><![CDATA[I was pulling my hair out regarding this one for ages with the php version of recaptcha I had everything in the right place, recaptchalib.php included, public private keys set, recaptcha_get_html inside the form. It should have worked.  See code &#8230; <a href="http://www.waterfordwebdesign.ie/incorrect-captcha-sol/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was pulling my hair out regarding this one for ages with the php version of recaptcha</p>
<p>I had everything in the right place, recaptchalib.php included, public private keys set, recaptcha_get_html inside the form. It should have worked.  See code below:</p>
<pre>&lt;html&gt;
&lt;head&gt;&lt;/head&gt;
&lt;body&gt;
&lt;?php
    require_once('recaptchalib.php');              
    $publickey="6LfBHssSAAAAAPxAqPSkddCIXcFIdrl2lrNxJ8da";
    $privatekey="6LfBHssSAAAAACIz-CYPmFpm6sp81S-W-RXingPz";
    $resp = recaptcha_check_answer ($privatekey,
                                    $_SERVER["REMOTE_ADDR"],
                                    $_POST["recaptcha_challenge_field"],
                                    $_POST["recaptcha_response_field"]);
    if ($resp-&gt;is_valid)
    {
        echo "Thank you ";
    }
    else
    {
        echo "Invalid recaptcha response: " . $resp-&gt;error;            
    }
?&gt;
&lt;table border="0" width="400" align="center"&gt;
    &lt;form method="POST" action=""&gt;
        &lt;tr&gt;&lt;td&gt;Name: &lt;/td&gt;&lt;td&gt;&lt;input type="text" name="name"/&gt;&lt;/td&gt;&lt;/tr&gt;
        &lt;tr&gt;&lt;td&gt;&amp;nbsp&lt;/td&gt;&lt;td&gt;&lt;?php echo recaptcha_get_html($publickey, null);?&gt;&lt;/td&gt;&lt;/tr&gt;
        &lt;tr&gt;&lt;td&gt;&amp;nbsp&lt;/td&gt;&lt;td&gt;&lt;input type="submit" value="submit" name="submit"&gt;&lt;/td&gt;&lt;/tr&gt;            
    &lt;/form&gt;    
&lt;/table&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>When I submitted the form, no matter whether the code was correct or not I kept getting back incorrect-captcha-sol in $resp-&gt;error</p>
<p>Turned out in the end that the problem was very simple&#8230; I had the table tags outside the form tags instead of the other way around i.e.</p>
<pre><code>&lt;table&gt; &lt;form&gt; &lt;tr&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/form&gt; &lt;/table&gt; </code></pre>
<p>instead of:</p>
<pre><code>&lt;form&gt; &lt;table&gt; &lt;tr&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt; &lt;/table&gt; &lt;/form&gt; </code></pre>
<p>Once I changed to the latter, it began working fine.</p>
<p>Hope this helps someone out there!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waterfordwebdesign.ie/incorrect-captcha-sol/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Spam Protection to a Web Form</title>
		<link>http://www.waterfordwebdesign.ie/add-spam-protection-to-a-web-form/</link>
		<comments>http://www.waterfordwebdesign.ie/add-spam-protection-to-a-web-form/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 15:59:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Basics]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.waterfordwebdesign.ie/?p=301</guid>
		<description><![CDATA[Often when submitting to websites you will see that nasty little thing that you have to type two words into to get the form to submit.  These nasty little things may save you receiving a lot of junk requests. The &#8230; <a href="http://www.waterfordwebdesign.ie/add-spam-protection-to-a-web-form/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Often when submitting to websites you will see that nasty little thing that you have to type two words into to get the form to submit.  These nasty little things may save you receiving a lot of junk requests.</p>
<p>The industry standard as used by Facebook and Google is a technology called recaptcha which can be added to an existing form fairly easily by your web developer.</p>
<p>Here are the steps involved:</p>
<ol>
<li>Register your website with recaptcha and get public private keys here <a href="https://www.google.com/recaptcha/admin/create ">https://www.google.com/recaptcha/admin/create </a></li>
<li>Download the software library (here is the <a href="http://code.google.com/apis/recaptcha/docs/php.html">php recaptcha</a> link)</li>
<li>Within your web form include the recaptchalib.php file</li>
<li>Echo the function recaptcha_get_html(&#8216;your public key&#8217;) within your web form</li>
<li>Put in checks to determine if the code is valid</li>
</ol>
<p>Here is a simple example:</p>
<pre>&lt;html&gt;
&lt;head&gt;&lt;/head&gt;
&lt;body&gt;
&lt;?php
require_once('recaptchalib.php');
$publickey = "your public key";
$privatekey = "your private key";

$resp = recaptcha_check_answer ($privatekey,
                                    $_SERVER["REMOTE_ADDR"],
                                    $_POST["recaptcha_challenge_field"],
                                    $_POST["recaptcha_response_field"]);

if ($resp-&gt;is_valid)
{
    echo "Success";
}
else
{
    echo "Failure";
}
?&gt;
    &lt;form method="post" action=""&gt;
&lt;?php echo recaptcha_get_html($publickey, null); ?&gt;
    &lt;input type="submit" value="submit" name="submit" /&gt;
    &lt;/form&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>And that&#8217;s it, just be sure to call recaptcha_get_html within your form.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waterfordwebdesign.ie/add-spam-protection-to-a-web-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Statistics Ireland &#8211; November 2011 Stats</title>
		<link>http://www.waterfordwebdesign.ie/facebook-statistics-ireland-november-2011-stats/</link>
		<comments>http://www.waterfordwebdesign.ie/facebook-statistics-ireland-november-2011-stats/#comments</comments>
		<pubDate>Wed, 30 Nov 2011 10:06:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Social Media Marketing]]></category>

		<guid isPermaLink="false">http://www.waterfordwebdesign.ie/?p=295</guid>
		<description><![CDATA[A client of mine just asked me to research current Facebook stats in Ireland and so I utilised the facebook page advertising tool to collect some basic information. At the time of writing (30/11/2011), there are 2,060,740 facebook users. 53% &#8230; <a href="http://www.waterfordwebdesign.ie/facebook-statistics-ireland-november-2011-stats/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A client of mine just asked me to research current Facebook stats in Ireland and so I utilised the facebook page advertising tool to collect some basic information.</p>
<p>At the time of writing (30/11/2011), there are 2,060,740 facebook users.</p>
<p>53% of facebook users in Ireland are Female.</p>
<p>46% of the entire population (4,484,300 according to CSO) are on Facebook</p>
<p>I&#8217;ve also created a summary chart with Facebook&#8217;s age distribution spread in Ireland for anyone that wants to download, share or use these statistics in presentations <img src='http://www.waterfordwebdesign.ie/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><a href="http://www.waterfordwebdesign.ie/wp-content/uploads/2011/11/facebook-age-distribution-ireland-2011.jpg"><img class="alignleft size-full wp-image-296" title="facebook-age-distribution-ireland-2011" src="http://www.waterfordwebdesign.ie/wp-content/uploads/2011/11/facebook-age-distribution-ireland-2011.jpg" alt="" width="395" height="426" /></a></p>
<table width="201" border="0" cellspacing="0" cellpadding="0">
<colgroup>
<col style="width: 56pt;" width="75" />
<col style="width: 47pt;" width="62" />
<col style="width: 48pt;" width="64" /> </colgroup>
<tbody>
<tr style="height: 15pt;">
<td style="height: 15pt; width: 56pt;" width="75" height="20">13-17</td>
<td class="xl63" style="width: 47pt;" align="right" width="62">275,620</td>
</tr>
<tr style="height: 15pt;">
<td style="height: 15pt;" height="20">18-24</td>
<td class="xl63" align="right">491,880</td>
<td></td>
</tr>
<tr style="height: 15pt;">
<td style="height: 15pt;" height="20">25-34</td>
<td class="xl63" align="right">628,220</td>
<td></td>
</tr>
<tr style="height: 15pt;">
<td style="height: 15pt;" height="20">35-44</td>
<td class="xl63" align="right">370,880</td>
<td></td>
</tr>
<tr style="height: 15pt;">
<td style="height: 15pt;" height="20">45-54</td>
<td class="xl63" align="right">172,780</td>
</tr>
<tr style="height: 15pt;">
<td style="height: 15pt;" height="20">55-64</td>
<td class="xl63" align="right">73,200</td>
</tr>
<tr style="height: 15pt;">
<td style="height: 15pt;" height="20">64+</td>
<td class="xl63" align="right">48,160</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.waterfordwebdesign.ie/facebook-statistics-ireland-november-2011-stats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is drop box and how does it work?</title>
		<link>http://www.waterfordwebdesign.ie/what-is-drop-box-and-how-does-it-work/</link>
		<comments>http://www.waterfordwebdesign.ie/what-is-drop-box-and-how-does-it-work/#comments</comments>
		<pubDate>Wed, 21 Sep 2011 16:23:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.waterfordwebdesign.ie/?p=277</guid>
		<description><![CDATA[We&#8217;re currently working with a client in France on a very image heavy website. To share images traditionally would mean the client would need to package up images in a zip file or send them over multiple emails. Another way &#8230; <a href="http://www.waterfordwebdesign.ie/what-is-drop-box-and-how-does-it-work/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re currently working with a client in France on a very image heavy website.  To share images traditionally would mean the client would need to package up images in a zip file or send them over multiple emails.  </p>
<p>Another way the client might have sent them traditionally would be on a CD or usb drive to send over lots of images. </p>
<p>Drop box changes all that and it is so simple and intuitive to use that anybody can use it once it&#8217;s installed.</p>
<p>Drop box allows you to share a folder (and the files within) on your computer with anybody in the world.</p>
<p>Basically you sign up to drop box and download the drop box application to your computer.  Once it&#8217;s installed, it creates a drop box folder under your user folder.  It integrates with windows explorer so you can share folders with other through bringing up the context menu on a right click.</p>
<p>To share a folder is simple, right click it, go to drop box menu item and click share this folder. This will bring you straight to the drop box website where you can share the folder by entering the email address of the person you wish to share it with.  Simples.</p>
<p>I&#8217;ve used it so far to share files with my accountant, clients, co-workers, family and friends.</p>
<p>Dropbox is here to stay and the best part is, it&#8217;s free (well it&#8217;s free up to a folder size of 2GB and you get 250mb more for each additional person you recommend to the system, dropbox&#8217;s viral marketing mechanism).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waterfordwebdesign.ie/what-is-drop-box-and-how-does-it-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FREE SEO Test For Your Website</title>
		<link>http://www.waterfordwebdesign.ie/free-seo-test-for-your-website/</link>
		<comments>http://www.waterfordwebdesign.ie/free-seo-test-for-your-website/#comments</comments>
		<pubDate>Thu, 08 Sep 2011 15:32:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Search Engine Marketing]]></category>
		<category><![CDATA[Search Engine Optimisation (SEO)]]></category>
		<category><![CDATA[Web Basics]]></category>

		<guid isPermaLink="false">http://www.waterfordwebdesign.ie/?p=291</guid>
		<description><![CDATA[If you want to evaluate whether a webpage on your site is optimised for the main keywords customers are using to search for your products or service, we created a handy little tool for you to try here: Free SEO &#8230; <a href="http://www.waterfordwebdesign.ie/free-seo-test-for-your-website/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you want to evaluate whether a webpage on your site is optimised for the main keywords customers are using to search for your products or service, we created a handy little tool for you to try here: <a title="FREE SEO Analysis Tool" href="http://www.utdwebdesignireland.com/index.php?contentid=seo-analysis">Free SEO Analysis Tool</a></p>
<p>Basically what it does is searches for the keywords you specify within the areas of your page that Googles evaluates content too such as title, headings, images, meta description and so on.  It then generates an indicative score based on this evaluation.</p>
<p>Embedding the keywords people are searching for is critical to the success of your site.  By not having the keywords people are searching for on your site means that Google has little or no way of matching your site with a search phrase.</p>
<p>It is worth noting here that there are other factors too in SEO terms that can affect your site&#8217;s position on the results page including:</p>
<ol>
<li>Competition</li>
<li>Back links to your site</li>
<li>Trust</li>
<li>Social networking likes</li>
<li>Age of your site</li>
<li>Overall quality of your site content</li>
<li>Your site&#8217;s link structure</li>
</ol>
<p>This tool is intended as an initial evaluation tool for a single page on your site and is no substitution for a full in-depth SEO analysis.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waterfordwebdesign.ie/free-seo-test-for-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top Website Design Considerations</title>
		<link>http://www.waterfordwebdesign.ie/top-website-design-considerations/</link>
		<comments>http://www.waterfordwebdesign.ie/top-website-design-considerations/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 22:25:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.waterfordwebdesign.ie/?p=271</guid>
		<description><![CDATA[When designing / developing a site, too often the technical details are given all the focus instead of stepping back and telling the wood from the trees. Here are some top design considerations when building a website: Every page is &#8230; <a href="http://www.waterfordwebdesign.ie/top-website-design-considerations/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div>
<div>When designing / developing a site, too often the technical details are given all the focus instead of stepping back and telling the wood from the trees.</div>
<div>Here are some top design considerations when building a website:</div>
<ul>
<li>Every page is a landing page, so it should be branded and formatted consistently</li>
<li>Make sure the brand targets the intended audience (e.g. don&#8217;t use shocking pink for corporate site)</li>
<li>Images such as jpegs etc. should be crisp, nothing gives off a sense of amateurism more than poor image quality</li>
<li>Avoid Animation / Flash, not only is it distracting, it does not work on iphones, if you have to animate maybe you could try jquery image transitions. If you absolutely need flash, limit it to specific sections of the site.</li>
<li>Readable Font / Width / Contrast: it&#8217;s important that your pages are readable, your fon therefore should be legible, paragraph widths should not be too wide and the contrast should be good (black on white)</li>
<li>Make use of Whitespace &#8211; don&#8217;t be afraid of space, whitespace gives a sense of order, try align elements together to an invisible grid where possible</li>
<li>Easy to navigate (nothing should be more than 2-3 clicks away)</li>
<li>Good content organisation &#8211; content should tell story, beginning middle and end and put your key message at the top for speed readers.</li>
<li>Put contact details on every page &#8211; a basic oversight, users can enter your site from a any page, make sure contact details are there, you might only have 1 shot for the business.</li>
<li>Highlight your call to action (use colour such as red for apply buttons etc.)</li>
<li>Use a subtle background (backgrounds can make a site but keep them subtle)</li>
<li>Make sure the site works on various screen sizes, try on large and small screens, avoid horizontal scrolling at all costs</li>
<li>Make sure your site works on ALL major browsers, make sure that your site works on the important browsers (IE, Firefox, Safari, Google Chrome)</li>
</ul>
<p>This is just a snapshot of the kind of things that should be considered when designing a website. Best of luck.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.waterfordwebdesign.ie/top-website-design-considerations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is Twitter?</title>
		<link>http://www.waterfordwebdesign.ie/what-is-twitter/</link>
		<comments>http://www.waterfordwebdesign.ie/what-is-twitter/#comments</comments>
		<pubDate>Thu, 12 May 2011 14:57:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Social Networks]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Web Basics]]></category>

		<guid isPermaLink="false">http://www.waterfordwebdesign.ie/?p=263</guid>
		<description><![CDATA[Twitter is a social network. On twitter people post short &#60;140 character messages called tweets. The difference between twitter and facebook is that tweets are generally available for everyone to search on so it&#8217;s not as egocentric as facebook. Even &#8230; <a href="http://www.waterfordwebdesign.ie/what-is-twitter/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Twitter is a social network. On twitter people post short &lt;140 character messages called tweets.  The difference between twitter and facebook is that tweets are generally available for everyone to search on so it&#8217;s not as egocentric as facebook.</p>
<p>Even though tweets are public, most people follow others on twitter (people who follow are called tweeps). This means they get a quick view in their timeline of what tweeters they&#8217;re following are saying.</p>
<p><strong>Features</strong></p>
<ol>
<li>Timeline – shows what tweeters you are following are saying</li>
<li>@mentions – see who mentioned you</li>
<li>Retweets – see what others in your network have retweeted</li>
<li>Favourite – save your favourite tweets</li>
<li>Save searches – Keep an eye on your favourite topics</li>
<li>Twitter Lists – Group users together to watch them</li>
<li>Trends – Shows what’s currently popular</li>
</ol>
<p><strong>What are the #tags on Twitter?<br />
</strong></p>
<p>On Twitter people can search and tweet  based on the concept of #tags, where words that are commonly searched  are simply preceded with a #. It is an unofficial symbol, i.e. not  invented by twitter but it has become very very useful. As all tweets  are public (on public accounts), #tags are used to give a topic an id  e.g. #eurovision. Anytime anyone posts with this word included it can be  seen in real-time by people who search for it. This is very useful for  media / news companies. For example, in Ireland TV stations such as TV3  use the #tv3 tag, so if anyone posts a message containing this tag,  their researchers can find it instantly during a live program.</p>
<p><strong> </strong></p>
<p>The genius of twitter is its simplicity.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waterfordwebdesign.ie/what-is-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prestashop &#8211; No Search Results</title>
		<link>http://www.waterfordwebdesign.ie/prestashop-no-search-results/</link>
		<comments>http://www.waterfordwebdesign.ie/prestashop-no-search-results/#comments</comments>
		<pubDate>Tue, 03 May 2011 10:13:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[eCommerce]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[prestashop]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://www.waterfordwebdesign.ie/?p=259</guid>
		<description><![CDATA[So you&#8217;ve built your amazing prestashop and you&#8217;ve imported hundreds of products into the system but alas, when you peform a search, nothing is returned even though you know you&#8217;ve entered text present in one of your products. This one &#8230; <a href="http://www.waterfordwebdesign.ie/prestashop-no-search-results/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So you&#8217;ve built your amazing prestashop and you&#8217;ve imported hundreds of products into the system but alas, when you peform a search, nothing is returned even though you know you&#8217;ve entered text present in one of your products.</p>
<p>This one had me stumped for a bit as I assumed that the data would be stored within the system or that prestashop would do some dynamic search on the database records.  It turns out prestashop is a little more sophisticated than that and actually indexes all the products in the site to make search results quicker.</p>
<p>To ensure all of your products are indexed go to your backend, click on preferences and then search.</p>
<p>Once in there you will see how many products have been indexed.  If you had the same problem as me you will see that 0 products have been indexed. This is because I imported products from a CSV.  Manually inserted products are automatically indexed.</p>
<p>Once you are in backoffice->preferences->search you will see something like</p>
<p><em>Indexed products: 44 / 44.<br />
-> Add missing products to index.<br />
-> Re-build entire index.<br />
</em><br />
You can click either option to re-index your products. Once you don&#8217;t have thousands of entries it should take < 1 min to do. You can also set up a cron job to perform this indexing regularly for you.</p>
<p>Other options on this screen inclued</p>
<ul>
<li>Ajax search: To automatically fill in your search box, like google</li>
<li>Minimum word length</li>
<li>Blacklisted words</li>
</ul>
<p>There are also options here to weight your search results using various factors such as weight, tags etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.waterfordwebdesign.ie/prestashop-no-search-results/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress White Screen of Death (wp-admin blank screen problem)</title>
		<link>http://www.waterfordwebdesign.ie/wordpress-white-screen-of-death-wp-admin-blank-screen-problem/</link>
		<comments>http://www.waterfordwebdesign.ie/wordpress-white-screen-of-death-wp-admin-blank-screen-problem/#comments</comments>
		<pubDate>Mon, 02 May 2011 23:29:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Web Basics]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[blank screen]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.waterfordwebdesign.ie/?p=256</guid>
		<description><![CDATA[If anyone out there is experiencing the WordPress white screen of death i.e. when you go to your wordpress wp-admin folder all you see is a blank screen, you may have been hacked. I had a nasty little hack where &#8230; <a href="http://www.waterfordwebdesign.ie/wordpress-white-screen-of-death-wp-admin-blank-screen-problem/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If anyone out there is experiencing the WordPress white screen of death i.e. when you go to your wordpress wp-admin folder all you see is a blank screen, you may have been hacked.</p>
<p>I had a nasty little hack where link code was being injected into the footer of every rendered page. It was difficult to find as the links that were being injected were injected by an encoded script that had infected several files (especially in my themes folder). I went through each file and deleted the script from them.  In this case, if you&#8217;re not experienced with code you would be safer to do a full re-install of your blog.</p>
<p>The result of the clean up was that several files had spaces injected into them at the top and bottom of the page. I did a full re-install to restore all the important files in the system and I still was experiencing the blank screen. Obviously wp-config.php wasn&#8217;t part of the update and so I cleaned out a blank line on the top of this module and I could finally log back in again.</p>
<p>Hope this helps someone out there.</p>
<p><strong>Note:</strong> If you have been hacked, change all of your passwords, database, ftp, wordpress etc. and make sure that all file permissions on your server are set up correctly, be pessimistic. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.waterfordwebdesign.ie/wordpress-white-screen-of-death-wp-admin-blank-screen-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tips when Picking an SEO Consultant or Firm</title>
		<link>http://www.waterfordwebdesign.ie/tips-when-picking-an-seo-consultant-or-firm/</link>
		<comments>http://www.waterfordwebdesign.ie/tips-when-picking-an-seo-consultant-or-firm/#comments</comments>
		<pubDate>Mon, 25 Apr 2011 13:27:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Search Engine Marketing]]></category>
		<category><![CDATA[Search Engine Optimisation (SEO)]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[seo consultant]]></category>

		<guid isPermaLink="false">http://www.waterfordwebdesign.ie/?p=248</guid>
		<description><![CDATA[If you haven&#8217;t built a site yet, then make sure you talk to SEO experts before building your site! SEO should not be an afterthought! Lately, I&#8217;ve been asked to assist companies more and more with their Search Engine Optimisation. &#8230; <a href="http://www.waterfordwebdesign.ie/tips-when-picking-an-seo-consultant-or-firm/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>If you haven&#8217;t built a site yet, then make sure you talk to SEO  experts before building your site! SEO should not be an afterthought!</strong></p>
<p>Lately, I&#8217;ve been asked to assist companies more and more with their Search Engine Optimisation. The first thing I ask is why they are not consulting with the firm that built their website?  In most cases it comes down to price but also they want to independently verify the work that was done by their web development firm.</p>
<p>The first thing I tell clients is that they shouldn&#8217;t expect their website firm to have done much SEO work if they didn&#8217;t explicity ask/pay for it. Invariably it is the case that the minimum will be done and sometimes they just don&#8217;t have expertise in the area.  Most firms put some basic effort into SEO but beyond that, nothing is done.  However, if companies charge for it, I&#8217;d expect a little bit more and a report of what has been done.</p>
<p>If you are not happy with your site&#8217;s SEO and you are seeking an SEO consultancy firm then I suggest you follow these tips:</p>
<ol>
<li>Understand the basics of SEO yourself, read books, go online, do some research before meeting a consultant</li>
<li>Ask your business networks do they know SEO consultants that have made a difference for them</li>
<li>Ask SEO consultancy firms for the best examples of their work</li>
<li>Be careful that the SEO firm doesn&#8217;t have other clients in your niche area, would there be a conflict of interest?</li>
<li>Make sure the service they are providing is clear and what they will need from you</li>
<li>Make sure and get clear reports based on your analytics data</li>
<li>Make sure the price is not ridiculous.  In Ireland I&#8217;ve heard of some companies charging 1500 per day! That kind of spend would get you a lot of clicks through PPC advertising</li>
</ol>
<p>In my professional opinion an SEO consultant should be able to assist you with the following:</p>
<ul>
<li>Keyword Analysis</li>
<li>Competitor Analysis</li>
<li>Website Audit</li>
<li>Suggest or make changes to your site (sometimes they might not be willing to update the site)</li>
<li>Link Building or Link Suggestions (sometimes best to do link building in house)</li>
<li>Social Media Marketing</li>
<li>Advertising Advice</li>
<li>Deciphering Analytics and Monitor Improvements</li>
</ul>
<p>Most of these tasks can be done in house at a fraction of the rates an SEO consultant will charge you, so in my opinion, do what you can yourself based on your SEO consultants advice, however if you do require expertise to fulfil a specific task outsource that aspect of it (e.g. link building, site re-build etc.)<br />
<strong></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.waterfordwebdesign.ie/tips-when-picking-an-seo-consultant-or-firm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

