<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for A Blog By Justin</title>
	<atom:link href="http://jmbennett.org/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://jmbennett.org</link>
	<description>a little bit of everything</description>
	<lastBuildDate>Wed, 30 Jun 2010 05:30:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Comment on Google Calendar Feed Parser by Download: Rob Z&#8217;s Widgetized Wordpress Google Calendar &#171; TechKnowMe</title>
		<link>http://jmbennett.org/2008/06/21/google-calendar-feed-parser/comment-page-2/#comment-42916</link>
		<dc:creator>Download: Rob Z&#8217;s Widgetized Wordpress Google Calendar &#171; TechKnowMe</dc:creator>
		<pubDate>Wed, 30 Jun 2010 05:30:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jmbennett.org/?p=45#comment-42916</guid>
		<description>[...] off, I did NOT write the bulk of this code &#8211; the bulk of it was written by Justin Bennett and the original can be found on his site. I take no responsibility or credit for the original code, only for my modifications. Having said [...]</description>
		<content:encoded><![CDATA[<p>[...] off, I did NOT write the bulk of this code &#8211; the bulk of it was written by Justin Bennett and the original can be found on his site. I take no responsibility or credit for the original code, only for my modifications. Having said [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google Calendar Feed Parser by Melinda</title>
		<link>http://jmbennett.org/2008/06/21/google-calendar-feed-parser/comment-page-2/#comment-42751</link>
		<dc:creator>Melinda</dc:creator>
		<pubDate>Mon, 28 Jun 2010 17:45:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jmbennett.org/?p=45#comment-42751</guid>
		<description>I am having a problem where the times randomly change. I don&#039;t know if it&#039;s a time zone issue through my host, or if it&#039;s a plugin thing, but I have to go back and do the math to change the offset every few weeks. My clients are not happy about this, especially since it now says their church service is at 2pm (once it was at 3 am!). I would LOVE something where you can just pick the time zone, so it doesn&#039;t have to do math based on any server time zones.</description>
		<content:encoded><![CDATA[<p>I am having a problem where the times randomly change. I don&#8217;t know if it&#8217;s a time zone issue through my host, or if it&#8217;s a plugin thing, but I have to go back and do the math to change the offset every few weeks. My clients are not happy about this, especially since it now says their church service is at 2pm (once it was at 3 am!). I would LOVE something where you can just pick the time zone, so it doesn&#8217;t have to do math based on any server time zones.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google Calendar Feed Parser by Jarryd Pearson</title>
		<link>http://jmbennett.org/2008/06/21/google-calendar-feed-parser/comment-page-2/#comment-41398</link>
		<dc:creator>Jarryd Pearson</dc:creator>
		<pubDate>Wed, 02 Jun 2010 03:41:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jmbennett.org/?p=45#comment-41398</guid>
		<description>My apologies. I&#039;ve just realised that every time I add the question mark, it&#039;s causing a &quot;Headers already output&quot; error. When I delete the question mark, it&#039;s still outputting the error.</description>
		<content:encoded><![CDATA[<p>My apologies. I&#8217;ve just realised that every time I add the question mark, it&#8217;s causing a &#8220;Headers already output&#8221; error. When I delete the question mark, it&#8217;s still outputting the error.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google Calendar Feed Parser by Jarryd Pearson</title>
		<link>http://jmbennett.org/2008/06/21/google-calendar-feed-parser/comment-page-2/#comment-41397</link>
		<dc:creator>Jarryd Pearson</dc:creator>
		<pubDate>Wed, 02 Jun 2010 03:24:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jmbennett.org/?p=45#comment-41397</guid>
		<description>Hi Justin

I&#039;m not sure if you&#039;ve updated it, however I discovered the reason for the error on Line 104:

bjh posted: Followed the instructions, set up the feed, and I get the following right out of the box:
Warning: SimpleXMLElement::__construct() [simplexmlelement.--construct]: Entity: line 1: parser error : Start tag expected, ‘&lt;’ not found in /home/bjhelms/public_html/wp-content/plugins/gcalpars/gcalparse.php on line 104
Warning: SimpleXMLElement::__construct() [simplexmlelement.--construct]: Unknown projection:basic&amp;max-results=4 in /home/bjhelms/public_html/wp-content/plugins/gcalpars/gcalparse.php on line 104

To fix this problem, I changed:

$feed_url .= &#039;&amp;max-results=&#039; . (( get_option(&#039;gcal_max_results&#039;) == &#039;&#039; ) ? &#039;4&#039; : get_option(&#039;gcal_max_results&#039;));

to:

$feed_url .= &#039;?&amp;max-results=&#039; . (( get_option(&#039;gcal_max_results&#039;) == &#039;&#039; ) ? &#039;4&#039; : get_option(&#039;gcal_max_results&#039;));

You hadn&#039;t added the question mark before the ampersand. Once I added the question mark, it worked fine.</description>
		<content:encoded><![CDATA[<p>Hi Justin</p>
<p>I&#8217;m not sure if you&#8217;ve updated it, however I discovered the reason for the error on Line 104:</p>
<p>bjh posted: Followed the instructions, set up the feed, and I get the following right out of the box:<br />
Warning: SimpleXMLElement::__construct() [simplexmlelement.--construct]: Entity: line 1: parser error : Start tag expected, ‘&lt;’ not found in /home/bjhelms/public_html/wp-content/plugins/gcalpars/gcalparse.php on line 104<br />
Warning: SimpleXMLElement::__construct() [simplexmlelement.--construct]: Unknown projection:basic&amp;max-results=4 in /home/bjhelms/public_html/wp-content/plugins/gcalpars/gcalparse.php on line 104</p>
<p>To fix this problem, I changed:</p>
<p>$feed_url .= &#039;&amp;max-results=&#039; . (( get_option(&#039;gcal_max_results&#039;) == &#039;&#039; ) ? &#039;4&#039; : get_option(&#039;gcal_max_results&#039;));</p>
<p>to:</p>
<p>$feed_url .= &#039;?&amp;max-results=&#039; . (( get_option(&#039;gcal_max_results&#039;) == &#039;&#039; ) ? &#039;4&#039; : get_option(&#039;gcal_max_results&#039;));</p>
<p>You hadn&#039;t added the question mark before the ampersand. Once I added the question mark, it worked fine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google Calendar Feed Parser by Jesse Zimmerman</title>
		<link>http://jmbennett.org/2008/06/21/google-calendar-feed-parser/comment-page-2/#comment-40274</link>
		<dc:creator>Jesse Zimmerman</dc:creator>
		<pubDate>Sat, 22 May 2010 01:47:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jmbennett.org/?p=45#comment-40274</guid>
		<description>Justin,

This is a great plugin. Your plugin gives you the best free calendar tool in a event list format + sidebar widget. It is exactly what I needed for several sites. So thank you for your work with it. I will no doubt make a donatation once I get these sites to production.

The problem I&#039;m having is a slow connection to Google. It may just be because my list of events queried from Google via sidebar widget is rather large (10 events). I&#039;ve noticed the same thing on the Events page. 

I do love the instantaneous sync between WP and GC, but is there some type of caching mechanism available? I think it would help greatly if the feed was not always live, but able to be cached, with a live update via click. 

I may be able to help.. I haven&#039;t gotten into looking through your code yet.

Thanks, and this is a great plugin that I was able to get working sufficiently within 10 minutes.</description>
		<content:encoded><![CDATA[<p>Justin,</p>
<p>This is a great plugin. Your plugin gives you the best free calendar tool in a event list format + sidebar widget. It is exactly what I needed for several sites. So thank you for your work with it. I will no doubt make a donatation once I get these sites to production.</p>
<p>The problem I&#8217;m having is a slow connection to Google. It may just be because my list of events queried from Google via sidebar widget is rather large (10 events). I&#8217;ve noticed the same thing on the Events page. </p>
<p>I do love the instantaneous sync between WP and GC, but is there some type of caching mechanism available? I think it would help greatly if the feed was not always live, but able to be cached, with a live update via click. </p>
<p>I may be able to help.. I haven&#8217;t gotten into looking through your code yet.</p>
<p>Thanks, and this is a great plugin that I was able to get working sufficiently within 10 minutes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google Calendar Feed Parser by Michael</title>
		<link>http://jmbennett.org/2008/06/21/google-calendar-feed-parser/comment-page-2/#comment-35058</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Fri, 09 Apr 2010 18:20:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jmbennett.org/?p=45#comment-35058</guid>
		<description>Hello,

I really love your plugin, but have come across an issue. Was wondering if you could help:

I&#039;ve been trying to get the links to work with a lightbox. I&#039;ve tried several lightboxes, and have gotten them to work other external webpages. But for some reason the google calendar url links dont work in Safari. They always appear blank! Could you take a look at this link?  I&#039;m really in a bind, and not sure where to go with this issue.

http://www.greyyy.com/rigor/test.html

Thanks for the help!

-m</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I really love your plugin, but have come across an issue. Was wondering if you could help:</p>
<p>I&#8217;ve been trying to get the links to work with a lightbox. I&#8217;ve tried several lightboxes, and have gotten them to work other external webpages. But for some reason the google calendar url links dont work in Safari. They always appear blank! Could you take a look at this link?  I&#8217;m really in a bind, and not sure where to go with this issue.</p>
<p><a href="http://www.greyyy.com/rigor/test.html" rel="nofollow">http://www.greyyy.com/rigor/test.html</a></p>
<p>Thanks for the help!</p>
<p>-m</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google Calendar Feed Parser by Justin</title>
		<link>http://jmbennett.org/2008/06/21/google-calendar-feed-parser/comment-page-2/#comment-34132</link>
		<dc:creator>Justin</dc:creator>
		<pubDate>Wed, 31 Mar 2010 13:15:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jmbennett.org/?p=45#comment-34132</guid>
		<description>Jim/Chuck,

When I initially designed this plugin I ran into the issue of timezones, as you are both seeing.  The problem is that Google, your web server and PHP are all configured for a particular timezone, which may or may not be the timezone you&#039;re actually in.  I attempted to compensate for misinterpreted times by including the customizable offset, which works in many cases.

Chuck, the problem you&#039;re seeing with some events being off by a day is certainly odd and not one that I&#039;d heard of yet.  

I have a few ideas for ways I could remedy these issues.  I will try to do some research in the coming days and will certainly let you know via a comment here and a new blog post if I come up with anything that will help you.  (maybe it&#039;s time for a 0.4!)</description>
		<content:encoded><![CDATA[<p>Jim/Chuck,</p>
<p>When I initially designed this plugin I ran into the issue of timezones, as you are both seeing.  The problem is that Google, your web server and PHP are all configured for a particular timezone, which may or may not be the timezone you&#8217;re actually in.  I attempted to compensate for misinterpreted times by including the customizable offset, which works in many cases.</p>
<p>Chuck, the problem you&#8217;re seeing with some events being off by a day is certainly odd and not one that I&#8217;d heard of yet.  </p>
<p>I have a few ideas for ways I could remedy these issues.  I will try to do some research in the coming days and will certainly let you know via a comment here and a new blog post if I come up with anything that will help you.  (maybe it&#8217;s time for a 0.4!)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google Calendar Feed Parser by Jim</title>
		<link>http://jmbennett.org/2008/06/21/google-calendar-feed-parser/comment-page-2/#comment-34119</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Wed, 31 Mar 2010 12:11:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jmbennett.org/?p=45#comment-34119</guid>
		<description>I have restored the current version of the code and still have the same problem.  The behavior of the code is different on home pages than on other pages.  I have tried this on both the Titanium abd bChurch themes from iThemes.
My offset is 0, not the default 7200.</description>
		<content:encoded><![CDATA[<p>I have restored the current version of the code and still have the same problem.  The behavior of the code is different on home pages than on other pages.  I have tried this on both the Titanium abd bChurch themes from iThemes.<br />
My offset is 0, not the default 7200.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google Calendar Feed Parser by Chuck</title>
		<link>http://jmbennett.org/2008/06/21/google-calendar-feed-parser/comment-page-2/#comment-33992</link>
		<dc:creator>Chuck</dc:creator>
		<pubDate>Tue, 30 Mar 2010 20:37:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jmbennett.org/?p=45#comment-33992</guid>
		<description>Ever since daylight savings time, my calendar is off in the upcoming events by an hour...but it&#039;s right in the Google Calendar page.
I changed the seconds offset, and it fixed some...but now others are a day early.</description>
		<content:encoded><![CDATA[<p>Ever since daylight savings time, my calendar is off in the upcoming events by an hour&#8230;but it&#8217;s right in the Google Calendar page.<br />
I changed the seconds offset, and it fixed some&#8230;but now others are a day early.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Google Calendar Feed Parser by Jim</title>
		<link>http://jmbennett.org/2008/06/21/google-calendar-feed-parser/comment-page-2/#comment-33781</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Mon, 29 Mar 2010 19:27:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.jmbennett.org/?p=45#comment-33781</guid>
		<description>I have a problem with the time displayed for my calendar.  I tweaked the code to adjust the display and everything works great on the home page.  But on every other page, the time is displayed off by 5 hours, as GMT.  When I click on the link, the time is displayed by Google correctly.

Here is the Feed URL
http://www.google.com/calendar/feeds/hopeofspringfield@gmail.com/public/full?ctz=America/Chicago&amp;orderby=starttime&amp;sortorder=ascending&amp;futureevents=true&amp;singleevents=true</description>
		<content:encoded><![CDATA[<p>I have a problem with the time displayed for my calendar.  I tweaked the code to adjust the display and everything works great on the home page.  But on every other page, the time is displayed off by 5 hours, as GMT.  When I click on the link, the time is displayed by Google correctly.</p>
<p>Here is the Feed URL<br />
<a href="http://www.google.com/calendar/feeds/hopeofspringfield@gmail.com/public/full?ctz=America/Chicago&amp;orderby=starttime&amp;sortorder=ascending&amp;futureevents=true&amp;singleevents=true" rel="nofollow">http://www.google.com/calendar/feeds/hopeofspringfield@gmail.com/public/full?ctz=America/Chicago&amp;orderby=starttime&amp;sortorder=ascending&amp;futureevents=true&amp;singleevents=true</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
