<?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: Custom Post Limits v2.0</title>
	<atom:link href="http://coffee2code.com/archives/2009/07/16/custom-post-limits-v20/feed/" rel="self" type="application/rss+xml" />
	<link>http://coffee2code.com/archives/2009/07/16/custom-post-limits-v20/</link>
	<description>pro-gram-mer: n. a person who converts coffee into code</description>
	<lastBuildDate>Tue, 07 Feb 2012 05:56:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Scott</title>
		<link>http://coffee2code.com/archives/2009/07/16/custom-post-limits-v20/comment-page-1/#comment-448985</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Wed, 30 Dec 2009 17:25:54 +0000</pubDate>
		<guid isPermaLink="false">http://coffee2code.com/?p=370#comment-448985</guid>
		<description>&lt;a href=&quot;http://coffee2code.com/archives/2009/12/30/custom-post-limits-v2-5/&quot; rel=&quot;nofollow&quot;&gt;v2.5 of this plugin has been released&lt;/a&gt;

Please direct any further questions to the page announcing that release.

All known outstanding issues, including anything mentioned in the above comments, should be addressed in the latest release.</description>
		<content:encoded><![CDATA[<p><a href="http://coffee2code.com/archives/2009/12/30/custom-post-limits-v2-5/" rel="nofollow">v2.5 of this plugin has been released</a></p>
<p>Please direct any further questions to the page announcing that release.</p>
<p>All known outstanding issues, including anything mentioned in the above comments, should be addressed in the latest release.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill</title>
		<link>http://coffee2code.com/archives/2009/07/16/custom-post-limits-v20/comment-page-1/#comment-446004</link>
		<dc:creator>Bill</dc:creator>
		<pubDate>Sat, 12 Sep 2009 16:57:16 +0000</pubDate>
		<guid isPermaLink="false">http://coffee2code.com/?p=370#comment-446004</guid>
		<description>In the WordPress file query.php this code:

		if ( !isset($q[&#039;nopaging&#039;]) ) {
			if ($q[&#039;posts_per_page&#039;] == -1) {
				$q[&#039;nopaging&#039;] = true;

suggests that returning -1 when no limit is wanted avoids the whole limit clause.  I tried it and it seems to work.  Was there a problem with this that led you to return the large number 18446744073709551615 for the no-limit case?</description>
		<content:encoded><![CDATA[<p>In the WordPress file query.php this code:</p>
<p>		if ( !isset($q['nopaging']) ) {<br />
			if ($q['posts_per_page'] == -1) {<br />
				$q['nopaging'] = true;</p>
<p>suggests that returning -1 when no limit is wanted avoids the whole limit clause.  I tried it and it seems to work.  Was there a problem with this that led you to return the large number 18446744073709551615 for the no-limit case?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bill</title>
		<link>http://coffee2code.com/archives/2009/07/16/custom-post-limits-v20/comment-page-1/#comment-446002</link>
		<dc:creator>Bill</dc:creator>
		<pubDate>Sat, 12 Sep 2009 16:31:36 +0000</pubDate>
		<guid isPermaLink="false">http://coffee2code.com/?p=370#comment-446002</guid>
		<description>Thanks for the plugin - it&#039;s definitely helping me out.  One thing I&#039;ve noticed is occasional SQL errors like this:


[12-Sep-2009 08:53:38] WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &#039;1.84467440737E+19, 9223372036854775807&#039; at line 1 for query  SELECT SQL_CALC_FOUND_ROWS  wp_posts.* FROM wp_posts  INNER JOIN wp_term_relationships ON (wp_posts.ID = wp_term_relationships.object_id) INNER JOIN wp_term_taxonomy ON (wp_term_relationships.term_taxonomy_id = wp_term_taxonomy.term_taxonomy_id)  WHERE 1=1  AND wp_term_taxonomy.taxonomy = &#039;category&#039; AND wp_term_taxonomy.term_id IN (&#039;7&#039;) AND wp_posts.post_type = &#039;post&#039; AND (wp_posts.post_status = &#039;publish&#039;) GROUP BY wp_posts.ID ORDER BY wp_posts.post_date DESC LIMIT 1.84467440737E+19, 9223372036854775807 made by require, wp, WP-&gt;main, WP-&gt;query_posts, WP_Query-&gt;query, WP_Query-&gt;get_posts


The limit looks pretty strange.  Not sure if this is due to the plugin, but the 1.84467440737E+19 constant is suspicious.</description>
		<content:encoded><![CDATA[<p>Thanks for the plugin &#8211; it&#8217;s definitely helping me out.  One thing I&#8217;ve noticed is occasional SQL errors like this:</p>
<p>[12-Sep-2009 08:53:38] WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near &#8217;1.84467440737E+19, 9223372036854775807&#8242; at line 1 for query  SELECT SQL_CALC_FOUND_ROWS  wp_posts.* FROM wp_posts  INNER JOIN wp_term_relationships ON (wp_posts.ID = wp_term_relationships.object_id) INNER JOIN wp_term_taxonomy ON (wp_term_relationships.term_taxonomy_id = wp_term_taxonomy.term_taxonomy_id)  WHERE 1=1  AND wp_term_taxonomy.taxonomy = &#8216;category&#8217; AND wp_term_taxonomy.term_id IN (&#8217;7&#8242;) AND wp_posts.post_type = &#8216;post&#8217; AND (wp_posts.post_status = &#8216;publish&#8217;) GROUP BY wp_posts.ID ORDER BY wp_posts.post_date DESC LIMIT 1.84467440737E+19, 9223372036854775807 made by require, wp, WP-&gt;main, WP-&gt;query_posts, WP_Query-&gt;query, WP_Query-&gt;get_posts</p>
<p>The limit looks pretty strange.  Not sure if this is due to the plugin, but the 1.84467440737E+19 constant is suspicious.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bernardino Todolí</title>
		<link>http://coffee2code.com/archives/2009/07/16/custom-post-limits-v20/comment-page-1/#comment-445849</link>
		<dc:creator>Bernardino Todolí</dc:creator>
		<pubDate>Tue, 08 Sep 2009 04:58:13 +0000</pubDate>
		<guid isPermaLink="false">http://coffee2code.com/?p=370#comment-445849</guid>
		<description>Works great!
Thanks you!</description>
		<content:encoded><![CDATA[<p>Works great!<br />
Thanks you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://coffee2code.com/archives/2009/07/16/custom-post-limits-v20/comment-page-1/#comment-445621</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Thu, 03 Sep 2009 06:16:18 +0000</pubDate>
		<guid isPermaLink="false">http://coffee2code.com/?p=370#comment-445621</guid>
		<description>&lt;strong&gt;James, Darice :&lt;/strong&gt; Thanks for the bug reports.  I&#039;ve been able to verify it and know the issue.  Working on a fix which I plan to release soon.

&lt;strong&gt;Carl :&lt;/strong&gt; Is there anything unique about how your site is configured?  Are you running WP in a subdirectory of your main site maybe?  Yours is the first report of the kind for this plugin, so I&#039;m just trying to find what may be different.  Are you running a translated/localized version of WP?</description>
		<content:encoded><![CDATA[<p><strong>James, Darice :</strong> Thanks for the bug reports.  I&#8217;ve been able to verify it and know the issue.  Working on a fix which I plan to release soon.</p>
<p><strong>Carl :</strong> Is there anything unique about how your site is configured?  Are you running WP in a subdirectory of your main site maybe?  Yours is the first report of the kind for this plugin, so I&#8217;m just trying to find what may be different.  Are you running a translated/localized version of WP?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Darice de Cuba</title>
		<link>http://coffee2code.com/archives/2009/07/16/custom-post-limits-v20/comment-page-1/#comment-445575</link>
		<dc:creator>Darice de Cuba</dc:creator>
		<pubDate>Wed, 02 Sep 2009 11:20:39 +0000</pubDate>
		<guid isPermaLink="false">http://coffee2code.com/?p=370#comment-445575</guid>
		<description>The plugin doesn&#039;t work 100%. I want to keep the default 10 posts per pages as set in the admin. But for one particular category I want to display only 4 posts per pages.

But the plugin only reacts if I change the number on category as whole, it doesn&#039;t react when I add limit 4 to only one category.

Any idea why? Thanks...</description>
		<content:encoded><![CDATA[<p>The plugin doesn&#8217;t work 100%. I want to keep the default 10 posts per pages as set in the admin. But for one particular category I want to display only 4 posts per pages.</p>
<p>But the plugin only reacts if I change the number on category as whole, it doesn&#8217;t react when I add limit 4 to only one category.</p>
<p>Any idea why? Thanks&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carl</title>
		<link>http://coffee2code.com/archives/2009/07/16/custom-post-limits-v20/comment-page-1/#comment-444957</link>
		<dc:creator>Carl</dc:creator>
		<pubDate>Wed, 19 Aug 2009 11:37:22 +0000</pubDate>
		<guid isPermaLink="false">http://coffee2code.com/?p=370#comment-444957</guid>
		<description>I like the idea for this plug-in but I can&#039;t get it to work. It installs fine, but when I enter new values and press Save Changes nothing is saved - I&#039;m back to a screen with all field empry (default).
Any suggestions? I&#039;m on WP  2.8.4, have tried in both IE and Firefox.</description>
		<content:encoded><![CDATA[<p>I like the idea for this plug-in but I can&#8217;t get it to work. It installs fine, but when I enter new values and press Save Changes nothing is saved &#8211; I&#8217;m back to a screen with all field empry (default).<br />
Any suggestions? I&#8217;m on WP  2.8.4, have tried in both IE and Firefox.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James Clements</title>
		<link>http://coffee2code.com/archives/2009/07/16/custom-post-limits-v20/comment-page-1/#comment-444465</link>
		<dc:creator>James Clements</dc:creator>
		<pubDate>Sat, 08 Aug 2009 02:47:30 +0000</pubDate>
		<guid isPermaLink="false">http://coffee2code.com/?p=370#comment-444465</guid>
		<description>Thank you for this plugin, it&#039;s a great one.

Wanted to let you know that I&#039;m having trouble trying to set different limits for individual categories.

 I have entered different values for the number of posts to display on different category pages. For example, I have a &quot;Podcast&quot; category (I&#039;m using a custom category template just for this category as well) that I link to from my top-nav that I would like to have 5 posts display per page. However, I have four more categories I use for subject categorization that I wouldn&#039;t mind if 100 posts show up per page (I am using one standard template for all of those.) Any ideas?</description>
		<content:encoded><![CDATA[<p>Thank you for this plugin, it&#8217;s a great one.</p>
<p>Wanted to let you know that I&#8217;m having trouble trying to set different limits for individual categories.</p>
<p> I have entered different values for the number of posts to display on different category pages. For example, I have a &#8220;Podcast&#8221; category (I&#8217;m using a custom category template just for this category as well) that I link to from my top-nav that I would like to have 5 posts display per page. However, I have four more categories I use for subject categorization that I wouldn&#8217;t mind if 100 posts show up per page (I am using one standard template for all of those.) Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Allan bradley</title>
		<link>http://coffee2code.com/archives/2009/07/16/custom-post-limits-v20/comment-page-1/#comment-443680</link>
		<dc:creator>Allan bradley</dc:creator>
		<pubDate>Wed, 22 Jul 2009 11:03:35 +0000</pubDate>
		<guid isPermaLink="false">http://coffee2code.com/?p=370#comment-443680</guid>
		<description>great plugin that makes wordpress easier 
the good thing that this bug is fixed : Fixed bug with tag names not appearing
thanks :)</description>
		<content:encoded><![CDATA[<p>great plugin that makes wordpress easier<br />
the good thing that this bug is fixed : Fixed bug with tag names not appearing<br />
thanks <img src='http://coffee2code.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

