<?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>Luke Howell.com</title>
	<atom:link href="http://www.lukehowell.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lukehowell.com</link>
	<description></description>
	<lastBuildDate>Mon, 05 Apr 2010 18:28:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Events Calendar Update</title>
		<link>http://www.lukehowell.com/2010/04/05/events-calendar-update-3/</link>
		<comments>http://www.lukehowell.com/2010/04/05/events-calendar-update-3/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 18:28:01 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.lukehowell.com/2010/04/05/events-calendar-update-3/</guid>
		<description><![CDATA[Hello everyone. First off let me apologize for not having any updates or fixes for the events calendar in recent times. I have lost touch with others that have worked on the plugin for reasons that I do not know. I too have had many things that have been taking precedence over working on projects. [...]]]></description>
			<content:encoded><![CDATA[<p>Hello everyone.  First off let me apologize for not having any updates or fixes for the events calendar in recent times.  I have lost touch with others that have worked on the plugin for reasons that I do not know.  I too have had many things that have been taking precedence over working on projects.  I am starting back work today on Events Calendar.  To help with sorting through the bugs and reports that have been made, I need everyone&#8217;s help.  I will be updating the svn trunk for the plugin while working on it.  I would appreciate anyone that wants to play around with it to email me any issue to luke (at) wp-eventscalendar (dot) com.</p>
<p>If is something quick and you have a patch you will be credited with the solution.  Any help is appreciated as I want to get the plugin where it should be and make it useful for everyone that needs it.</p>
<p>SVN Trunk is http://svn.wp-plugins.org/events-calendar/trunk</p>
<p>Feel free to email me with any concerns or questions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lukehowell.com/2010/04/05/events-calendar-update-3/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>PHP Form Select for States and Provinces</title>
		<link>http://www.lukehowell.com/2010/03/23/php-form-select-for-states-and-provinces/</link>
		<comments>http://www.lukehowell.com/2010/03/23/php-form-select-for-states-and-provinces/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 14:52:29 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.lukehowell.com/?p=241</guid>
		<description><![CDATA[I put this together and thought I would share it. Uses php to select the current drop down for state. Line 2 is where $state is set. You can set this based on anything you need. [php] Select One value=&#8221;BC&#8221;>British Columbia value=&#8221;NB&#8221;>New Brunswick value=&#8221;NT&#8221;>Northwest Territories value=&#8221;NU&#8221;>Nunavut value=&#8221;PE&#8221;>Prince Edward Island value=&#8221;SK&#8221;>Saskatchewan value=&#8221;AK&#8221;>Alaska value=&#8221;AZ&#8221;>Arizona value=&#8221;CA&#8221;>California value=&#8221;CT&#8221;>Connecticut value=&#8221;DC&#8221;>District [...]]]></description>
			<content:encoded><![CDATA[<p>I put this together and thought I would share it.  Uses php to select the current drop down for state.  Line 2 is where $state is set.  You can set this based on anything you need.</p>
<p>[php]<br />
<?php<br />
$state = '';<br />
?></p>
<select id="state" name="state">
<option value="">Select One</option>
<p><optgroup label="Canadian Provinces"></p>
<option <?php echo $state=='AB' ? 'selected="selected" ' : '';?>value=&#8221;AB&#8221;>Alberta</option>
<option <?php echo $state=='BC' ? 'selected="selected" ' : '';?>value=&#8221;BC&#8221;>British Columbia</option>
<option <?php echo $state=='MB' ? 'selected="selected" ' : '';?>value=&#8221;MB&#8221;>Manitoba</option>
<option <?php echo $state=='NB' ? 'selected="selected" ' : '';?>value=&#8221;NB&#8221;>New Brunswick</option>
<option <?php echo $state=='NF' ? 'selected="selected" ' : '';?>value=&#8221;NF&#8221;>Newfoundland</option>
<option <?php echo $state=='NT' ? 'selected="selected" ' : '';?>value=&#8221;NT&#8221;>Northwest Territories</option>
<option <?php echo $state=='NS' ? 'selected="selected" ' : '';?>value=&#8221;NS&#8221;>Nova Scotia</option>
<option <?php echo $state=='NU' ? 'selected="selected" ' : '';?>value=&#8221;NU&#8221;>Nunavut</option>
<option <?php echo $state=='ON' ? 'selected="selected" ' : '';?>value=&#8221;ON&#8221;>Ontario</option>
<option <?php echo $state=='PE' ? 'selected="selected" ' : '';?>value=&#8221;PE&#8221;>Prince Edward Island</option>
<option <?php echo $state=='QC' ? 'selected="selected" ' : '';?>value=&#8221;QC&#8221;>Quebec</option>
<option <?php echo $state=='SK' ? 'selected="selected" ' : '';?>value=&#8221;SK&#8221;>Saskatchewan</option>
<option <?php echo $state=='YT' ? 'selected="selected" ' : '';?>value=&#8221;YT&#8221;>Yukon Territory</option>
<p></optgroup></p>
<p><optgroup label="U.S. States"></p>
<option <?php echo $state=='AK' ? 'selected="selected" ' : '';?>value=&#8221;AK&#8221;>Alaska</option>
<option <?php echo $state=='AL' ? 'selected="selected" ' : '';?>value=&#8221;AL&#8221;>Alabama</option>
<option <?php echo $state=='AZ' ? 'selected="selected" ' : '';?>value=&#8221;AZ&#8221;>Arizona</option>
<option <?php echo $state=='AR' ? 'selected="selected" ' : '';?>value=&#8221;AR&#8221;>Arkansas</option>
<option <?php echo $state=='CA' ? 'selected="selected" ' : '';?>value=&#8221;CA&#8221;>California</option>
<option <?php echo $state=='CO' ? 'selected="selected" ' : '';?>value=&#8221;CO&#8221;>Colorado</option>
<option <?php echo $state=='CT' ? 'selected="selected" ' : '';?>value=&#8221;CT&#8221;>Connecticut</option>
<option <?php echo $state=='DE' ? 'selected="selected" ' : '';?>value=&#8221;DE&#8221;>Delaware</option>
<option <?php echo $state=='DC' ? 'selected="selected" ' : '';?>value=&#8221;DC&#8221;>District of Columbia</option>
<option <?php echo $state=='FL' ? 'selected="selected" ' : '';?>value=&#8221;FL&#8221;>Florida</option>
<option <?php echo $state=='GA' ? 'selected="selected" ' : '';?>value=&#8221;GA&#8221;>Georgia</option>
<option <?php echo $state=='HI' ? 'selected="selected" ' : '';?>value=&#8221;HI&#8221;>Hawaii</option>
<option <?php echo $state=='ID' ? 'selected="selected" ' : '';?>value=&#8221;ID&#8221;>Idaho</option>
<option <?php echo $state=='IL' ? 'selected="selected" ' : '';?>value=&#8221;IL&#8221;>Illinois</option>
<option <?php echo $state=='IN' ? 'selected="selected" ' : '';?>value=&#8221;IN&#8221;>Indiana</option>
<option <?php echo $state=='IA' ? 'selected="selected" ' : '';?>value=&#8221;IA&#8221;>Iowa</option>
<option <?php echo $state=='KS' ? 'selected="selected" ' : '';?>value=&#8221;KS&#8221;>Kansas</option>
<option <?php echo $state=='KY' ? 'selected="selected" ' : '';?>value=&#8221;KY&#8221;>Kentucky</option>
<option <?php echo $state=='LA' ? 'selected="selected" ' : '';?>value=&#8221;LA&#8221;>Louisiana</option>
<option <?php echo $state=='ME' ? 'selected="selected" ' : '';?>value=&#8221;ME&#8221;>Maine</option>
<option <?php echo $state=='MD' ? 'selected="selected" ' : '';?>value=&#8221;MD&#8221;>Maryland</option>
<option <?php echo $state=='MA' ? 'selected="selected" ' : '';?>value=&#8221;MA&#8221;>Massachusetts</option>
<option <?php echo $state=='MI' ? 'selected="selected" ' : '';?>value=&#8221;MI&#8221;>Michigan</option>
<option <?php echo $state=='MN' ? 'selected="selected" ' : '';?>value=&#8221;MN&#8221;>Minnesota</option>
<option <?php echo $state=='MS' ? 'selected="selected" ' : '';?>value=&#8221;MS&#8221;>Mississippi</option>
<option <?php echo $state=='MO' ? 'selected="selected" ' : '';?>value=&#8221;MO&#8221;>Missouri</option>
<option <?php echo $state=='MT' ? 'selected="selected" ' : '';?>value=&#8221;MT&#8221;>Montana</option>
<option <?php echo $state=='NE' ? 'selected="selected" ' : '';?>value=&#8221;NE&#8221;>Nebraska</option>
<option <?php echo $state=='NV' ? 'selected="selected" ' : '';?>value=&#8221;NV&#8221;>Nevada</option>
<option <?php echo $state=='NH' ? 'selected="selected" ' : '';?>value=&#8221;NH&#8221;>New Hampshire</option>
<option <?php echo $state=='NJ' ? 'selected="selected" ' : '';?>value=&#8221;NJ&#8221;>New Jersey</option>
<option <?php echo $state=='NM' ? 'selected="selected" ' : '';?>value=&#8221;NM&#8221;>New Mexico</option>
<option <?php echo $state=='NY' ? 'selected="selected" ' : '';?>value=&#8221;NY&#8221;>New York</option>
<option <?php echo $state=='NC' ? 'selected="selected" ' : '';?>value=&#8221;NC&#8221;>North Carolina</option>
<option <?php echo $state=='ND' ? 'selected="selected" ' : '';?>value=&#8221;ND&#8221;>North Dakota</option>
<option <?php echo $state=='OH' ? 'selected="selected" ' : '';?>value=&#8221;OH&#8221;>Ohio</option>
<option <?php echo $state=='OK' ? 'selected="selected" ' : '';?>value=&#8221;OK&#8221;>Oklahoma</option>
<option <?php echo $state=='OR' ? 'selected="selected" ' : '';?>value=&#8221;OR&#8221;>Oregon</option>
<option <?php echo $state=='PA' ? 'selected="selected" ' : '';?>value=&#8221;PA&#8221;>Pennsylvania</option>
<option <?php echo $state=='PR' ? 'selected="selected" ' : '';?>value=&#8221;PR&#8221;>Puerto Rico</option>
<option <?php echo $state=='RI' ? 'selected="selected" ' : '';?>value=&#8221;RI&#8221;>Rhode Island</option>
<option <?php echo $state=='SC' ? 'selected="selected" ' : '';?>value=&#8221;SC&#8221;>South Carolina</option>
<option <?php echo $state=='SD' ? 'selected="selected" ' : '';?>value=&#8221;SD&#8221;>South Dakota</option>
<option <?php echo $state=='TN' ? 'selected="selected" ' : '';?>value=&#8221;TN&#8221;>Tennessee</option>
<option <?php echo $state=='TX' ? 'selected="selected" ' : '';?>value=&#8221;TX&#8221;>Texas</option>
<option <?php echo $state=='UT' ? 'selected="selected" ' : '';?>value=&#8221;UT&#8221;>Utah</option>
<option <?php echo $state=='VT' ? 'selected="selected" ' : '';?>value=&#8221;VT&#8221;>Vermont</option>
<option <?php echo $state=='VA' ? 'selected="selected" ' : '';?>value=&#8221;VA&#8221;>Virginia</option>
<option <?php echo $state=='WA' ? 'selected="selected" ' : '';?>value=&#8221;WA&#8221;>Washington</option>
<option <?php echo $state=='WV' ? 'selected="selected" ' : '';?>value=&#8221;WV&#8221;>West Virginia</option>
<option <?php echo $state=='WI' ? 'selected="selected" ' : '';?>value=&#8221;WI&#8221;>Wisconsin</option>
<option <?php echo $state=='WY' ? 'selected="selected" ' : '';?>value=&#8221;WY&#8221;>Wyoming</option>
<p></optgroup><br />
</select>
<p>[/php]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lukehowell.com/2010/03/23/php-form-select-for-states-and-provinces/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Site To Check Out</title>
		<link>http://www.lukehowell.com/2009/09/30/new-site-to-check-out-2/</link>
		<comments>http://www.lukehowell.com/2009/09/30/new-site-to-check-out-2/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 14:59:33 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Other Sites]]></category>

		<guid isPermaLink="false">http://www.lukehowell.com/?p=218</guid>
		<description><![CDATA[The owner of the site is Greg Howell, and the site promotes the work that he has done and is capable of doing.  Greg is skilled in many different areas including but not limited to historic planning and restoration, museum exhibits, exhibit promotion, photography, web design and web marketing.  If any of this interests you [...]]]></description>
			<content:encoded><![CDATA[<p>The owner of the site is Greg Howell, and the site promotes the work that he has done and is capable of doing.  Greg is skilled in many different areas including but not limited to historic planning and restoration, museum exhibits, exhibit promotion, photography, web design and web marketing.  If any of this interests you check out his site.</p>
<p>There is other information there regarding his work that has been done, you might find that he worked on projects for some of you favorites stars.  Greg was instrumental in getting Elizabeth Montgomery (Bewitched) a star on the Hollywood Walk of Fame.  Greg was also involved with Elvis Presley Enterprises for many years and played a large role in maintaining and researching the archives of Elvis Presley.</p>
<p>If this sounds like a good read please visit his site at <a href="http://iconservation.net">http://iconservation.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lukehowell.com/2009/09/30/new-site-to-check-out-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Events Calendar Announcements</title>
		<link>http://www.lukehowell.com/2009/05/22/events-calendar-announcements/</link>
		<comments>http://www.lukehowell.com/2009/05/22/events-calendar-announcements/#comments</comments>
		<pubDate>Fri, 22 May 2009 14:23:23 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.lukehowell.com/?p=208</guid>
		<description><![CDATA[Hello everyone.  There are a few exciting announcements to make regarding the Events Calendar plugin. First off I would like to welcome a couple of new members to the Events Calendar team. Louis Lapointe has joined our team and has been a big help in getting collaboration going and sharing ideas to help with support [...]]]></description>
			<content:encoded><![CDATA[<div dir="ltr"><span style="font-size: x-small; color: #000000; font-family: Arial;">Hello everyone.  There are a few exciting announcements to make regarding the Events Calendar plugin.</span></div>
<p>First off I would like to welcome a couple of new members to the Events Calendar team.</p>
<ul>
<li>Louis Lapointe has joined our team and has been a big help in getting collaboration going and sharing ideas to help with support of the plugin.  With Louis&#8217; suggestion we will be having a bug tracker to help with the development of the plugin.  Louis is also putting together to major tests to bring the plugin to it&#8217;s knees.  This is good for us because the more bugs we catch the better it is for you.  Louis is setting up his site at <a href="http://www.laplix.com">http://www.laplix.com</a>.  Be sure to visit him.</li>
<li>The next addition is Coe Gwathney.  Coe is a long time friend of mine and is a very talented graphics artist.  He is working on a logo for us and will be very beneficial in the development of the plugin.  Coe is getting his feet wet with coding and WordPress.  Visit him at <a href="http://www.gwathneydesign.com">http://www.gwathneydesign.com</a> to see some of his work.</li>
</ul>
<p>The support for the plugin will be moved to <a href="http://www.wp-eventscalendar.com">http://www.wp-eventscalendar.com</a>.  There you will find a blog on the front page that will be used for announcements and to hear your comments.  There is also a forum at <a href="http://forum.wp-eventscalendar.com">http://forum.wp-eventscalendar.com</a>.  This forum will be used as you would expect.  General comments, questions and suggestions will be handled here.  There will be a bug tracker at <a href="http://tracker.wp-eventscalendar.com">http://tracker.wp-eventscalendar.com</a>.  This is powered by Mantis and will be up and running in the next day or two.</p>
<p>Lastly, with the popularity of Twitter, we decided that it would be beneficial to have a presence there.  You can find us at <a href="http://www.twitter.com/wpec">http://www.twitter.com/wpec</a>.  This will give you immediate access to anything that we think needs to be pushed out.  So whether you are online at your computer or using a mobile client you will be able to see updates pertaining to the Events Calendar.</p>
<p>Hope to see everyone at the new site for support.  I will still be posting some announcements and other things here but support will be handled at the new site.</p>
<p><span style="font-size: x-small; color: #000000; font-family: Arial;"> </span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lukehowell.com/2009/05/22/events-calendar-announcements/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Follow me on Twitter</title>
		<link>http://www.lukehowell.com/2009/04/26/follow-me-on-twitter/</link>
		<comments>http://www.lukehowell.com/2009/04/26/follow-me-on-twitter/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 03:39:21 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.lukehowell.com/?p=205</guid>
		<description><![CDATA[I added an image in the sidebar that will allow you to follow me on twitter.  I don&#8217;t expect nor am I trying to reach the ranks or Ashton or Diddy, but I&#8217;ll take as many as I can get.  Just for your information, there might be some tweets that have non-PG language so if [...]]]></description>
			<content:encoded><![CDATA[<p>I added an image in the sidebar that will allow you to follow me on twitter.  I don&#8217;t expect nor am I trying to reach the ranks or Ashton or Diddy, but I&#8217;ll take as many as I can get.  Just for your information, there might be some tweets that have non-PG language so if you follow me be prepared.  I will used it for updates about the site as well, but there are personal ones as well.<br />
Also, a big thanks to my buddy Coe for the design of the Follow Me icon.  Thanks Coe.  Don&#8217;t forget to check out his <a title="Gwathney Design" href="http://www.gwathneydesign.com">site</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lukehowell.com/2009/04/26/follow-me-on-twitter/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New Site to Check Out</title>
		<link>http://www.lukehowell.com/2009/04/21/new-site-to-check-out/</link>
		<comments>http://www.lukehowell.com/2009/04/21/new-site-to-check-out/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 22:08:40 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.lukehowell.com/?p=202</guid>
		<description><![CDATA[A friend of mine has started a site now to show off some of his graphic design work.  He is self taught and very talented.  Check out Coe&#8217;s site, Gwathney Design for some top notch work.]]></description>
			<content:encoded><![CDATA[<p>A friend of mine has started a site now to show off some of his graphic design work.  He is self taught and very talented.  Check out Coe&#8217;s site, <a title="Gwathney Design" href="http://www.gwathneydesign.com">Gwathney Design</a> for some top notch work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lukehowell.com/2009/04/21/new-site-to-check-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Events Calendar Site</title>
		<link>http://www.lukehowell.com/2009/02/15/events-calendar-site-2/</link>
		<comments>http://www.lukehowell.com/2009/02/15/events-calendar-site-2/#comments</comments>
		<pubDate>Sun, 15 Feb 2009 20:25:25 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Other Sites]]></category>
		<category><![CDATA[Site Links]]></category>
		<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://www.lukehowell.com/2009/02/15/events-calendar-site-2/</guid>
		<description><![CDATA[The Events Calendar site is up and running now. Support for the site will be moving there to have a centralized location for support. There is also a forum forthe site. http://www.wp-eventscalendar.com]]></description>
			<content:encoded><![CDATA[<p>The Events Calendar site is up and running now. Support for the site will be moving there to have a centralized location for support. There is also a forum forthe site. </p>
<p>http://www.wp-eventscalendar.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lukehowell.com/2009/02/15/events-calendar-site-2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Back To Work</title>
		<link>http://www.lukehowell.com/2008/11/19/back-to-work-2/</link>
		<comments>http://www.lukehowell.com/2008/11/19/back-to-work-2/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 17:25:15 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Wordpress Plugins]]></category>

		<guid isPermaLink="false">http://www.lukehowell.com/wordpress/?p=155</guid>
		<description><![CDATA[I recently was able to move back into my home. I had been having work done on it and we were staying with family. During this time my Internet access was limited to my iPhone. I am now back at home and hope to be able to focus on the plugins more and more. The [...]]]></description>
			<content:encoded><![CDATA[<p>I recently was able to move back into my home.  I had been having work done on it and we were staying with family.  During this time my Internet access was limited to my iPhone.  I am now back at home and hope to be able to focus on the plugins more and more.</p>
<p>The calendar that is on my sidebar is the version that is in the works.  The work has been done by Heirem.  His work is much apreciated and I now hope to be able to put forth more effort in the development of the site.</p>
<p>I am planning on reopening the events calendar support site at a later time.  I decided to go a different route on the server so I will be looking into other options.  In the mean time support questions will be able to be answered here and at http://heirem.fr</p>
<p>I look forward to your comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lukehowell.com/2008/11/19/back-to-work-2/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>Events Calendar Site</title>
		<link>http://www.lukehowell.com/2008/11/11/events-calendar-site/</link>
		<comments>http://www.lukehowell.com/2008/11/11/events-calendar-site/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 15:27:49 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://www.lukehowell.com/wordpress/?p=153</guid>
		<description><![CDATA[The events calendar site is currently down. I will be transferring it to a different server and it will be back up in the future.]]></description>
			<content:encoded><![CDATA[<p>The events calendar site is currently down.  I will be transferring it to a different server and it will be back up in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lukehowell.com/2008/11/11/events-calendar-site/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>New Events Calendar Support Site in the Works</title>
		<link>http://www.lukehowell.com/2008/10/10/new-events-calendar-support-site-in-the-works/</link>
		<comments>http://www.lukehowell.com/2008/10/10/new-events-calendar-support-site-in-the-works/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 13:33:26 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Wordpress Plugins]]></category>

		<guid isPermaLink="false">http://www.lukehowell.com/wordpress/?p=149</guid>
		<description><![CDATA[When I started developing plugins just for fun I never thought that I would create one that would have become so popular. My wife is a bartender and was talking to one of her guests (another plugin author), and he was mentioning a plugin that he had written for WordPress. My wife was chit chatting [...]]]></description>
			<content:encoded><![CDATA[<p>When I started developing plugins just for fun I never thought that I would create one that would have become so popular.  My wife is a bartender and was talking to one of her guests (another plugin author), and he was mentioning a plugin that he had written for WordPress.  My wife was chit chatting about some of the things I had done and he was a user of the Events Calendar plugin.  I can tell from the traffic on my site that there are many users and I am glad to hear it.</p>
<p>The main issue that has arose from this great response is that I do not have the time I need to provide the support that I would like.  I am very grateful to say that I have had numerous people step up and answer questions and others that have helped with development of the plugin.  Heirem has been a great benefit and has contributed the latest version of the plugin.  <img src='http://www.lukehowell.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   Heirem has also taken over some support issue at <a href="http://heirem.fr">http://heirem.fr</a>.  This is great but the only downfall is that the support is now divided into two sites it seems.</p>
<p>To solve these issues I have recently begun development on a new site devoted to the Events Calendar plugin entirely.  The new site is located at <a href="http://wp-eventscalendar.com">http://wp-eventscalendar.com</a>.  At the moment the site is not setup up for registration, questions, or comments.  I want to get it up and running before I start transferring support to new site.  From this site, Heirem, myself, and any other developers that may join will be able to focus on questions and respond in a more timely matter.</p>
<p>There are a few things to look forward to at the new site.  I am planning on setting up a new forum for the Events Calendar plugin as well a knowledge base and FAQ section.  I am taking volunteers now for help with moderating the forum.  It would preferably be someone who is fairly familiar with the plugin but it is not necessary.  I would like to get a few that way the site will be able to run more smoothly.  If you are interested in being a forum moderator or any other asset to the development and support of the plugin please contact me through the contact form on this site.  Include some information about yourself and a link to you site if you have one.  Thanks in advance for your support.  <img src='http://www.lukehowell.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.lukehowell.com/2008/10/10/new-events-calendar-support-site-in-the-works/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
	</channel>
</rss>
