<?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: PG4WP 1.1.0 is out with WP 2.9.2 support</title>
	<atom:link href="http://www.hawkix.net/lang/en/2010/02/pg4wp-1-1-0-is-out/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hawkix.net/lang/en/2010/02/pg4wp-1-1-0-is-out</link>
	<description>Développement PHP / Conseils en informatique / Hébergement et maintenance de sites Web</description>
	<lastBuildDate>Mon, 12 Jul 2010 19:37:59 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Justen</title>
		<link>http://www.hawkix.net/lang/en/2010/02/pg4wp-1-1-0-is-out/comment-page-1/#comment-296</link>
		<dc:creator>Justen</dc:creator>
		<pubDate>Tue, 23 Mar 2010 12:48:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.hawkix.net/?p=256#comment-296</guid>
		<description>Just wanted to thank you for your work on this plugin, i needed to port wordpress across to postgres and was expecting to roll my sleeves up and code it myself! you have saved me alot of work :) thanks!!</description>
		<content:encoded><![CDATA[<p>Just wanted to thank you for your work on this plugin, i needed to port wordpress across to postgres and was expecting to roll my sleeves up and code it myself! you have saved me alot of work <img src='http://www.hawkix.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  thanks!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hawk__</title>
		<link>http://www.hawkix.net/lang/en/2010/02/pg4wp-1-1-0-is-out/comment-page-1/#comment-273</link>
		<dc:creator>Hawk__</dc:creator>
		<pubDate>Sun, 07 Mar 2010 23:02:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.hawkix.net/?p=256#comment-273</guid>
		<description>I couldn&#039;t reproduce this particular error, but I found a place in WordPress&#039; core where it should happen so I integrated a workaround in the current development version of PG4WP (you can download it &lt;a href=&quot;http://downloads.wordpress.org/plugin/postgresql-for-wordpress.zip&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;).

Please give it a try and tell me if it solves this error for you.</description>
		<content:encoded><![CDATA[<p>I couldn&#8217;t reproduce this particular error, but I found a place in WordPress&#8217; core where it should happen so I integrated a workaround in the current development version of PG4WP (you can download it <a href="http://downloads.wordpress.org/plugin/postgresql-for-wordpress.zip" rel="nofollow">here</a>).</p>
<p>Please give it a try and tell me if it solves this error for you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mx</title>
		<link>http://www.hawkix.net/lang/en/2010/02/pg4wp-1-1-0-is-out/comment-page-1/#comment-261</link>
		<dc:creator>mx</dc:creator>
		<pubDate>Wed, 24 Feb 2010 08:43:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.hawkix.net/?p=256#comment-261</guid>
		<description>On Postgre 8.4.2 I have this error:

Error running :
SELECT	DISTINCT MONTH(post_date) AS month, YEAR(post_date) AS year
		FROM wp_posts
		WHERE post_date &gt;	&#039;2010-02-01&#039;
		AND MONTH( post_date ) != MONTH( &#039;2010-02-01&#039; )
		AND post_type = &#039;post&#039; AND post_status = &#039;publish&#039;
			ORDER	BY post_date ASC
			LIMIT 1
---- converted to ----
SELECT	DISTINCT EXTRACT(MONTH FROM post_date) AS month, EXTRACT(YEAR FROM post_date) AS year
		FROM wp_posts
		WHERE post_date &gt;	&#039;2010-02-01&#039;
		AND EXTRACT(MONTH FROM  post_date ) != EXTRACT(MONTH FROM  &#039;2010-02-01&#039; )
		AND post_type = &#039;post&#039; AND post_status = &#039;publish&#039;
			ORDER	BY post_date ASC
			LIMIT 1
----
ERROR:  function pg_catalog.date_part(unknown, unknown) is not unique at character 184
HINT:  Could not choose a best candidate function. You might need to add explicit type casts.
---------------------</description>
		<content:encoded><![CDATA[<p>On Postgre 8.4.2 I have this error:</p>
<p>Error running :<br />
SELECT	DISTINCT MONTH(post_date) AS month, YEAR(post_date) AS year<br />
		FROM wp_posts<br />
		WHERE post_date &gt;	&#8216;2010-02-01&#8242;<br />
		AND MONTH( post_date ) != MONTH( &#8216;2010-02-01&#8242; )<br />
		AND post_type = &#8216;post&#8217; AND post_status = &#8216;publish&#8217;<br />
			ORDER	BY post_date ASC<br />
			LIMIT 1<br />
&#8212;- converted to &#8212;-<br />
SELECT	DISTINCT EXTRACT(MONTH FROM post_date) AS month, EXTRACT(YEAR FROM post_date) AS year<br />
		FROM wp_posts<br />
		WHERE post_date &gt;	&#8216;2010-02-01&#8242;<br />
		AND EXTRACT(MONTH FROM  post_date ) != EXTRACT(MONTH FROM  &#8216;2010-02-01&#8242; )<br />
		AND post_type = &#8216;post&#8217; AND post_status = &#8216;publish&#8217;<br />
			ORDER	BY post_date ASC<br />
			LIMIT 1<br />
&#8212;-<br />
ERROR:  function pg_catalog.date_part(unknown, unknown) is not unique at character 184<br />
HINT:  Could not choose a best candidate function. You might need to add explicit type casts.<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Hawk__</title>
		<link>http://www.hawkix.net/lang/en/2010/02/pg4wp-1-1-0-is-out/comment-page-1/#comment-259</link>
		<dc:creator>Hawk__</dc:creator>
		<pubDate>Tue, 23 Feb 2010 23:04:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.hawkix.net/?p=256#comment-259</guid>
		<description>Well this is a good question, and I must admit that I never thought about Wordpress MU when I worked on PG4WP until now.

I don&#039;t know much about the internals in Wordpress MU, but I think PG4WP may work with it.
If you try it, I&#039;d love to get feedback about this (even if it doesn&#039;t work, I think there would be little work to have it working).</description>
		<content:encoded><![CDATA[<p>Well this is a good question, and I must admit that I never thought about Wordpress MU when I worked on PG4WP until now.</p>
<p>I don&#8217;t know much about the internals in Wordpress MU, but I think PG4WP may work with it.<br />
If you try it, I&#8217;d love to get feedback about this (even if it doesn&#8217;t work, I think there would be little work to have it working).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oais</title>
		<link>http://www.hawkix.net/lang/en/2010/02/pg4wp-1-1-0-is-out/comment-page-1/#comment-258</link>
		<dc:creator>Oais</dc:creator>
		<pubDate>Tue, 23 Feb 2010 20:27:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.hawkix.net/?p=256#comment-258</guid>
		<description>is it possible to run your script with Wordpress MU, so accounts get created as well?</description>
		<content:encoded><![CDATA[<p>is it possible to run your script with Wordpress MU, so accounts get created as well?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
