<?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 on: Problem with Geo Plugin</title>
	<atom:link href="http://douglas.nerad.org/journal/2006/02/problem-with-geo-plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://douglas.nerad.org/journal/2006/02/problem-with-geo-plugin/</link>
	<description>Every Band of Freaks</description>
	<lastBuildDate>Tue, 11 Oct 2011 03:18:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Quinn</title>
		<link>http://douglas.nerad.org/journal/2006/02/problem-with-geo-plugin/comment-page-1/#comment-3393</link>
		<dc:creator>Quinn</dc:creator>
		<pubDate>Tue, 12 Dec 2006 20:36:37 +0000</pubDate>
		<guid isPermaLink="false">http://douglas.nerad.org/journal/2006/02/03/problem-with-geo-plugin/#comment-3393</guid>
		<description>What I want to do on my blog, is every few hours take the oldest post and move it to the 
front of the queue, all automatically. Anyone know if there is a plugin that can do this or 
a simple way to set up another plugin to do this (use my own feed perhaps)?
Thanks.</description>
		<content:encoded><![CDATA[<p>What I want to do on my blog, is every few hours take the oldest post and move it to the<br />
front of the queue, all automatically. Anyone know if there is a plugin that can do this or<br />
a simple way to set up another plugin to do this (use my own feed perhaps)?<br />
Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: douglas</title>
		<link>http://douglas.nerad.org/journal/2006/02/problem-with-geo-plugin/comment-page-1/#comment-73</link>
		<dc:creator>douglas</dc:creator>
		<pubDate>Sat, 25 Feb 2006 07:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://douglas.nerad.org/journal/2006/02/03/problem-with-geo-plugin/#comment-73</guid>
		<description>They&#039;ve fixed the problem I was having with the release of &lt;a href=&quot;http://dev.wp-plugins.org/file/geo/trunk/geo.php&quot; rel=&quot;nofollow&quot;&gt;v1.9.1&lt;/a&gt;. Thank you &quot;ringmaster&quot;!</description>
		<content:encoded><![CDATA[<p>They&#8217;ve fixed the problem I was having with the release of <a href="http://dev.wp-plugins.org/file/geo/trunk/geo.php" >v1.9.1</a>. Thank you &#8220;ringmaster&#8221;!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: douglas</title>
		<link>http://douglas.nerad.org/journal/2006/02/problem-with-geo-plugin/comment-page-1/#comment-51</link>
		<dc:creator>douglas</dc:creator>
		<pubDate>Sat, 04 Feb 2006 19:36:06 +0000</pubDate>
		<guid isPermaLink="false">http://douglas.nerad.org/journal/2006/02/03/problem-with-geo-plugin/#comment-51</guid>
		<description>Yeah, that makes sense. The problem is that I know squat about PHP and am having a hard time figuring this stuff out. I&#039;d worked enough with Blosxom to guess what much of the Perl code did; this is still all too new.

Hopefully some of these pingbacks will produce the effect of someone more knowledgable than I in the art of PHP hacking in Wordpress to resolve the issue...</description>
		<content:encoded><![CDATA[<p>Yeah, that makes sense. The problem is that I know squat about PHP and am having a hard time figuring this stuff out. I&#8217;d worked enough with Blosxom to guess what much of the Perl code did; this is still all too new.</p>
<p>Hopefully some of these pingbacks will produce the effect of someone more knowledgable than I in the art of PHP hacking in WordPress to resolve the issue&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Clark</title>
		<link>http://douglas.nerad.org/journal/2006/02/problem-with-geo-plugin/comment-page-1/#comment-49</link>
		<dc:creator>Jason Clark</dc:creator>
		<pubDate>Sat, 04 Feb 2006 16:32:30 +0000</pubDate>
		<guid isPermaLink="false">http://douglas.nerad.org/journal/2006/02/03/problem-with-geo-plugin/#comment-49</guid>
		<description>Don&#039;t know for certain the issue, but I can offer a few tips.  First of all, the line number is probably useless.   If PHP uses any kind of file-inclusion, it can throw off the number.  That line 122 should refer to whatever line of code calls/loads the geo plugin.

The actual error means what it sounds like... Some code in geo.php is trying to add an HTTP header to the output,  but the HTTP headers have already been sent to the browser, and part of the page content has been sent as well.  I&#039;ve seen a similar issue years ago developing a web site using MS IIS and Active Server Pages.  If you needed to add/modify headers after some of the page content had been generated, you had to enable buffering, so that the page content would be buffered until the entire page was done, and only then would it go to the browser.  Of course, this makes the page appear to take longer to load.

I don&#039;t know if PHP (or the wordpress code) has a similar feature or not.  Hopefully this will give something to go on.</description>
		<content:encoded><![CDATA[<p>Don&#8217;t know for certain the issue, but I can offer a few tips.  First of all, the line number is probably useless.   If PHP uses any kind of file-inclusion, it can throw off the number.  That line 122 should refer to whatever line of code calls/loads the geo plugin.</p>
<p>The actual error means what it sounds like&#8230; Some code in geo.php is trying to add an HTTP header to the output,  but the HTTP headers have already been sent to the browser, and part of the page content has been sent as well.  I&#8217;ve seen a similar issue years ago developing a web site using MS IIS and Active Server Pages.  If you needed to add/modify headers after some of the page content had been generated, you had to enable buffering, so that the page content would be buffered until the entire page was done, and only then would it go to the browser.  Of course, this makes the page appear to take longer to load.</p>
<p>I don&#8217;t know if PHP (or the wordpress code) has a similar feature or not.  Hopefully this will give something to go on.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

