<?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>Sean Deasy &#187; Wordpress</title>
	<atom:link href="http://www.seandeasy.com/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.seandeasy.com</link>
	<description>.Net and tech related topics</description>
	<lastBuildDate>Thu, 08 Jul 2010 20:59:23 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>My RSS Feed fixed at last</title>
		<link>http://www.seandeasy.com/my-rss-feed-fixed-at-last/</link>
		<comments>http://www.seandeasy.com/my-rss-feed-fixed-at-last/#comments</comments>
		<pubDate>Tue, 08 May 2007 22:03:01 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.seandeasy.com/my-rss-feed-fixed-at-last/</guid>
		<description><![CDATA[For a few weeks now my rss feed on this blog was not working and it took me a while to track down the problem.  When I ran the feed through the feed validator it reported that the feed was being returned as text/html as opposed to text/xml.  
After alot of testing and [...]]]></description>
			<content:encoded><![CDATA[<p>For a few weeks now my rss feed on this blog was not working and it took me a while to track down the problem.  When I ran the feed through the <a href="http://feedvalidator.org/">feed validator</a> it reported that the feed was being returned as text/html as opposed to text/xml.  </p>
<p>After alot of testing and trying to track the issue down, it eventually turned out to be due to a wordpress plugin that I installed a while back to do syntax highlighting called <a href="http://blog.rubypdf.com/2006/09/28/wp-dpsyntaxhighlightersource-code-syntax-highlighting-plugin/">WP-dp.SyntaxHighlighter</a>.  It did the trick with the syntax highlighting for code snippets but it totally messed up my rss feed.  In order to fix the feed I deactivated the plugin and began the search for a similar plugin which wouldn&#8217;t mess up the rss feed.  I have just installed the <a href="http://wordpress.org/extend/plugins/wp-syntax/">WP-Syntax</a> plugin as a replacement code syntax highlighter plugin and it works a treat without breaking my rss feed. </p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="sdeasy@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Donate for My RSS Feed fixed at last" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="10" /><input type="image" src="http://www.seandeasy.com/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=sdeasy@gmail.com&amp;currency_code=USD&amp;amount=10&amp;return=&amp;item_name=Donate+for+My+RSS+Feed+fixed+at+last" target="paypal">If this post has helped you please consider making a donation.</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.seandeasy.com/my-rss-feed-fixed-at-last/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Code Syntax Highlighting in Wordpress</title>
		<link>http://www.seandeasy.com/code-syntax-highlighting-in-wordpress/</link>
		<comments>http://www.seandeasy.com/code-syntax-highlighting-in-wordpress/#comments</comments>
		<pubDate>Thu, 22 Mar 2007 13:33:19 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.seandeasy.com/code-syntax-highlighting-in-wordpress/</guid>
		<description><![CDATA[Since this blog is of a technical nature I plan to be posting more code snippets as time goes on.  I obviously want the source code to appear pretty on my blog with all the syntax highlighting that one is used to in modern IDEs (including Visual Studio .NET 2003/2005).  I run this [...]]]></description>
			<content:encoded><![CDATA[<p>Since this blog is of a technical nature I plan to be posting more code snippets as time goes on.  I obviously want the source code to appear pretty on my blog with all the syntax highlighting that one is used to in modern IDEs (including Visual Studio .NET 2003/2005).  I run this blog using WordPress and I have just installed a plugin to take care of the Syntax highlighting called <a href="http://blog.rubypdf.com/2006/09/28/wp-dpsyntaxhighlightersource-code-syntax-highlighting-plugin/">WP-dp.SyntaxHighlighter</a>.  It supports many languages and I&#8217;ll be interested mainly in the .NET languages.  Below is an example of a code snippet in C# </p>
<pre lang="csharp">
using System; 

public class ReverseArraySort
{
   public static void Main()
   {
      string[] strings = {"beta", "alpha", "gamma"};
      Console.WriteLine ("Array elements: ");
      DisplayArray  (strings);
      Array.Sort    (strings); // Sort elements
      DisplayArray  (strings);
   }

   public static void DisplayArray (Array array)
   {
      foreach (object o in array)
      {
         Console.Write ("{0} ", o);
      }
      Console.WriteLine();
   }
}
</pre>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="sdeasy@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Donate for Code Syntax Highlighting in Wordpress" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="10" /><input type="image" src="http://www.seandeasy.com/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=sdeasy@gmail.com&amp;currency_code=USD&amp;amount=10&amp;return=&amp;item_name=Donate+for+Code+Syntax+Highlighting+in+Wordpress" target="paypal">If this post has helped you please consider making a donation.</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.seandeasy.com/code-syntax-highlighting-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up a CronJob with CPanel</title>
		<link>http://www.seandeasy.com/setting-up-a-cronjob-with-cpanel/</link>
		<comments>http://www.seandeasy.com/setting-up-a-cronjob-with-cpanel/#comments</comments>
		<pubDate>Wed, 07 Feb 2007 21:19:30 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.seandeasy.com/setting-up-a-cronjob-with-cpanel/</guid>
		<description><![CDATA[For hosting this site and many others I work with CPanel (hosting control panel).  I needed to find out how to set up a Cron Job. A Cron Job is nothing more than a job that runs on a schedule.  So you could call a script at a specified time every week or [...]]]></description>
			<content:encoded><![CDATA[<p>For hosting this site and many others I work with CPanel (hosting control panel).  I needed to find out how to set up a Cron Job. A Cron Job is nothing more than a job that runs on a schedule.  So you could call a script at a specified time every week or send an email report at the same time every day automatically.  </p>
<p>I googled for it and I came across this little show video tutorial of <a href="http://www.scriptwiz.com/tutorials/cpanel/cronjob.htm">how to set up a cronjob using cpanel</a></p>
<p>In fact after hunting around a bit I found <a href="http://www.scriptwiz.com/tutorials/cpanel-tutorials.php">many more cpanel video tutorials</a> on the same site.</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="sdeasy@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Donate for Setting up a CronJob with CPanel" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="10" /><input type="image" src="http://www.seandeasy.com/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=sdeasy@gmail.com&amp;currency_code=USD&amp;amount=10&amp;return=&amp;item_name=Donate+for+Setting+up+a+CronJob+with+CPanel" target="paypal">If this post has helped you please consider making a donation.</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.seandeasy.com/setting-up-a-cronjob-with-cpanel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress posting issue solved at last :)</title>
		<link>http://www.seandeasy.com/wordpress-posting-issue-solved-at-last/</link>
		<comments>http://www.seandeasy.com/wordpress-posting-issue-solved-at-last/#comments</comments>
		<pubDate>Fri, 02 Feb 2007 23:46:53 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.seandeasy.com/wordpress-posting-issue-solved-at-last/</guid>
		<description><![CDATA[For the past few months now I have been having issues when posting to my Wordpress blogs.  I type in the post and click Publish and after what seems like forever a blank post.php page appears.   The post does get submitted but a blank page is shown.  After alot of debugging [...]]]></description>
			<content:encoded><![CDATA[<p>For the past few months now I have been having issues when posting to my Wordpress blogs.  I type in the post and click Publish and after what seems like forever a blank post.php page appears.   The post does get submitted but a blank page is shown.  After alot of debugging I have solved the issue.</p>
<p>If you have this issue with the blank post.php page when posting then the issue is most likely some one of the sites in your ping list is timing out.</p>
<p>Alot of people say that by simply removing http://rpc.pingomatic.com from the list it should work but this did not work for me.  I had to go through alot of the ping list to eliminate which ones were causing issues.</p>
<p>Here is my current ping list and with this ping list I do not have the blank post.php issue.  Hope this helps someone else.  <img src='http://www.seandeasy.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>http://api.feedster.com/ping</p>
<p>http://api.my.yahoo.com/RPC2</p>
<p>http://api.my.yahoo.com/rss/ping</p>
<p>http://www.irishblogs.ie/xmlrpc.php</p>
<p>http://blogsearch.google.com/ping/RPC2</p>
<p>http://planet.journals.ie/xml-rpc.php</p>
<p>http://ping.blo.gs/</p>
<p>http://ping.feedburner.com</p>
<p>http://rpc.technorati.com/rpc/ping</p>
<p>http://rpc.weblogs.com/RPC2</p>
<p>http://api.my.yahoo.com/rss/ping</p>
<p>http://api.moreover.com/ping</p>
<p>http://www.blogsnow.com/ping</p>
<p>http://www.blogstreet.com/xrbin/xmlrpc.cgi</p>
<p>http://coreblog.org/ping/</p>
<p>http://ping.syndic8.com/xmlrpc.php</p>
<p>http://ping.weblogalot.com/rpc.php</p>
<p>http://www.a2b.cc/setloc/bp.a2b</p>
<p>http://www.blogdigger.com/RPC2</p>
<p>http://www.blogshares.com/rpc.php</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="sdeasy@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Donate for Wordpress posting issue solved at last :)" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="10" /><input type="image" src="http://www.seandeasy.com/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=sdeasy@gmail.com&amp;currency_code=USD&amp;amount=10&amp;return=&amp;item_name=Donate+for+Wordpress+posting+issue+solved+at+last+:)" target="paypal">If this post has helped you please consider making a donation.</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.seandeasy.com/wordpress-posting-issue-solved-at-last/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Timeout issue when posting in Wordpress 2.0.4 solved</title>
		<link>http://www.seandeasy.com/timeout-issue-when-posting-in-wordpress-204-solved/</link>
		<comments>http://www.seandeasy.com/timeout-issue-when-posting-in-wordpress-204-solved/#comments</comments>
		<pubDate>Mon, 27 Nov 2006 21:59:26 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.seandeasy.com/timeout-issue-when-posting-in-wordpress-204-solved/</guid>
		<description><![CDATA[Every time I wrote a Wordpress post and published it the page would time out.Â  The post would be posted but the page time out was a bit worrying.Â  After a bit of googling, the issue seems to be that I was using an older version of the No Ping Wait plugin.Â Â I thought that the [...]]]></description>
			<content:encoded><![CDATA[<p>Every time I wrote a <font color="#8a1800">Wordpress</font> post and published it the page would time out.Â  The post would be posted but the page time out was a bit worrying.Â  After a bit of googling, the issue seems to be that I was using an older version of the <strong><font color="#d26941">No Ping Wait</font></strong> plugin.Â Â I thought that the upgrade to the latest version would solve the problem but it failed to help.Â  In the end I have disabled the No Ping Wait wordpress plugin and the timeout issue has disappeared.Â </p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="sdeasy@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Donate for Timeout issue when posting in Wordpress 2.0.4 solved" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="10" /><input type="image" src="http://www.seandeasy.com/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=sdeasy@gmail.com&amp;currency_code=USD&amp;amount=10&amp;return=&amp;item_name=Donate+for+Timeout+issue+when+posting+in+Wordpress+2.0.4+solved" target="paypal">If this post has helped you please consider making a donation.</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.seandeasy.com/timeout-issue-when-posting-in-wordpress-204-solved/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>WordPress 2.0.4 and WPCron database backups</title>
		<link>http://www.seandeasy.com/wordpress-204-and-wpcron-database-backups/</link>
		<comments>http://www.seandeasy.com/wordpress-204-and-wpcron-database-backups/#comments</comments>
		<pubDate>Mon, 06 Nov 2006 21:17:31 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.seandeasy.com/wordpress-204-and-wpcron-database-backups/</guid>
		<description><![CDATA[I have a few of my blogs running on Wordpress 1.4 with the WP Cron and WP DatabaseÂ Backup plugins working perfectly, I would get an automated email everyday with a backup of each of my blog&#8217;s databases.Â  Thanks GMail for all the space  
Well, I recently upgraded my blogs to WordPress 2.0.4 and I [...]]]></description>
			<content:encoded><![CDATA[<p>I have a few of my blogs running on Wordpress 1.4 with the WP Cron and WP DatabaseÂ Backup plugins working perfectly, I would get an automated email everyday with a backup of each of my blog&#8217;s databases.Â  Thanks GMail for all the space <img src='http://www.seandeasy.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Well, I recently upgraded my blogs to WordPress 2.0.4 and I stopped getting the automated emails.Â  The WP Database Backup plugin comesÂ pre-installed with version 2.0.4 of Wordpress and my WP Cron plugin was left untouched.Â  I checked the versions of my old WP Database Backup plugin against the new version and they bothÂ were 1.7, so I initially thought thatÂ the WP Cron plugin was the issue.</p>
<p>I eventually debugged it down to the fact that the twoÂ WP DatabaseÂ Backup plugins (old and new) were different even though they both stated version 1.7.Â Â  So I overwrote the newer WP DatabaseÂ Backup plugin with my old backup copy of the WP DatabaseÂ Backup plugin and the emails started to arrive again with the blog backups attached.</p>
<p>The versions that work for me with Wordpress 2.0.4 are:</p>
<p><a href="http://www.seandeasy.com/postfiles/wp-cron.php.txt">WP Cron</a></p>
<p><a href="http://www.seandeasy.com/postfiles/wp-db-backup.php.txt">WP Database Backup</a></p>
<p>So I had to use the older version of the WP DatabaseÂ Backup plugin (not the version shipped with WP 2.0.4).Â  Disappointing that two <strong>different</strong> versions of the WP DatabaseÂ Backup plugin were both labelled version 1.7.</p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="sdeasy@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Donate for WordPress 2.0.4 and WPCron database backups" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="10" /><input type="image" src="http://www.seandeasy.com/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=sdeasy@gmail.com&amp;currency_code=USD&amp;amount=10&amp;return=&amp;item_name=Donate+for+WordPress+2.0.4+and+WPCron+database+backups" target="paypal">If this post has helped you please consider making a donation.</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.seandeasy.com/wordpress-204-and-wpcron-database-backups/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>What are the Best Blogging Tools ?</title>
		<link>http://www.seandeasy.com/what-are-the-best-blogging-tools/</link>
		<comments>http://www.seandeasy.com/what-are-the-best-blogging-tools/#comments</comments>
		<pubDate>Thu, 26 Oct 2006 22:43:38 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.seandeasy.com/what-are-the-best-blogging-tools/</guid>
		<description><![CDATA[I have started this blog recently and have been searching for the ultimate blogging tools.Â  I have been blogging on other blogs for over a year now so I had some experience of the different tools available.Â  Up to a few weeks ago my main blogging tools were RSSBandit www.rssbandit.org for reading all my feeds [...]]]></description>
			<content:encoded><![CDATA[<p>I have started this blog recently and have been searching for the ultimate blogging tools.Â  I have been blogging on other blogs for over a year now so I had some experience of the different tools available.Â  Up to a few weeks ago my main blogging tools were RSSBandit <a href="http://www.rssbandit.org/">www.rssbandit.org</a> for reading all my feeds and wbloggar <a href="http://www.wbloggar.com/">www.wbloggar.com/</a>Â for posting blog entries. wbloggar integrates nicely into RSS Bandit which a right click on the item to post about it.Â  So why am I still searching for the ultimate blogging tools ?</p>
<p>Well the main disadvantage I find is that they both are Windows applicationsÂ (offline tools).Â  RSS Bandit has a synchronisation feature soÂ thatÂ when I installed it in many locations I could use my ftp space to store synchronisation information.Â  Still, though what I was really after is some online solution where I only need a web browser to run my blogs.</p>
<p>Â In the last few weeks I have been using Google Reader <a href="http://reader.google.com/">http://reader.google.com</a>.Â  Google have updated it recently and I must say that I am very impressed.Â  Ok, so this solved my reading online but what about posting to blogs.Â  Currently I am using the Firefox Performancing pluginÂ  <a href="http://performancing.com/firefox">http://performancing.com/firefox</a>Â to post to some of my blogs.Â  Strictly speaking the plugin is still installed locally on my pc but at least it allows to read and post all from within my browser.</p>
<p>IÂ am still on the look out for the ultimate solution, whereby I could read/blog from anyÂ internet enabledÂ computer in the world without having to install any tools.</p>
<p>WhatÂ toolsÂ do you useÂ nowÂ for blogging ?Â </p>
<p>Share some of your suggestions hereÂ </p>
<p>Â </p>
<p>Â </p>
<p>Â </p>
<p class="buymebeer"><form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post"><input type="hidden" name="cmd" value="_xclick" /><input type="hidden" name="business" value="sdeasy@gmail.com" /><input type="hidden" name="return" value="" /><input type="hidden" name="item_name" value="Donate for What are the Best Blogging Tools ?" /><input type="hidden" name="currency_code" value="USD" /><input type="hidden" name="amount" value="10" /><input type="image" src="http://www.seandeasy.com/wp-content/plugins/buy-me-beer/icon_cafe.gif" align="left" alt="" title="" hspace="3" /></form><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=sdeasy@gmail.com&amp;currency_code=USD&amp;amount=10&amp;return=&amp;item_name=Donate+for+What+are+the+Best+Blogging+Tools+?" target="paypal">If this post has helped you please consider making a donation.</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.seandeasy.com/what-are-the-best-blogging-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
