<?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: Auto Schedule Posts</title>
	<atom:link href="http://www.davidjmiller.org/auto-schedule-posts/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.davidjmiller.org</link>
	<description>Recording Bits and Pieces of Heaven in Theory and Practice</description>
	<lastBuildDate>Mon, 06 Feb 2012 20:18:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: David</title>
		<link>http://www.davidjmiller.org/auto-schedule-posts/comment-page-1/#comment-15924</link>
		<dc:creator>David</dc:creator>
		<pubDate>Thu, 20 Oct 2011 20:22:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidjmiller.org/?page_id=2281#comment-15924</guid>
		<description>Tony,

I think the next fix is for me to add Chris&#039; fix into an official release. As for random posting: that was something I wanted to do when I first began development but it proved to be very difficult. I have an idea of how to implement it but it would not be as robust as what you are suggesting - letting users set a range for how many posts to publish. I think what I would be able to do is allow users to specify a target number to seed the random function so that the intervals would be random and the higher the seed the more posts would likely be published in a given day.

I&#039;ll have to see if I have time to do that and get it deployed publicly.</description>
		<content:encoded><![CDATA[<p>Tony,</p>
<p>I think the next fix is for me to add Chris&#8217; fix into an official release. As for random posting: that was something I wanted to do when I first began development but it proved to be very difficult. I have an idea of how to implement it but it would not be as robust as what you are suggesting &#8211; letting users set a range for how many posts to publish. I think what I would be able to do is allow users to specify a target number to seed the random function so that the intervals would be random and the higher the seed the more posts would likely be published in a given day.</p>
<p>I&#8217;ll have to see if I have time to do that and get it deployed publicly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tony</title>
		<link>http://www.davidjmiller.org/auto-schedule-posts/comment-page-1/#comment-15923</link>
		<dc:creator>Tony</dc:creator>
		<pubDate>Thu, 20 Oct 2011 11:17:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidjmiller.org/?page_id=2281#comment-15923</guid>
		<description>Great plug-in now with Chris Bells excellent fix, its cooking! to propel this plugin to the next level suggestion, if you could include a randomise post time ie you say want around 10 posts in a day and these are posted at random times would be great ie a humanising of it, easy, hard, next update? ;-) even taking it further that it randomises how many a day (between parameters you can set) so monday the plugin decides to post 6 at random times, 9 on tues at random times (so it decides when and how many) you just set the boundaries the plugin works out the detail (no restriction also, so you could set the per day higher if needed)</description>
		<content:encoded><![CDATA[<p>Great plug-in now with Chris Bells excellent fix, its cooking! to propel this plugin to the next level suggestion, if you could include a randomise post time ie you say want around 10 posts in a day and these are posted at random times would be great ie a humanising of it, easy, hard, next update? <img src='http://www.davidjmiller.org/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  even taking it further that it randomises how many a day (between parameters you can set) so monday the plugin decides to post 6 at random times, 9 on tues at random times (so it decides when and how many) you just set the boundaries the plugin works out the detail (no restriction also, so you could set the per day higher if needed)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.davidjmiller.org/auto-schedule-posts/comment-page-1/#comment-15870</link>
		<dc:creator>David</dc:creator>
		<pubDate>Fri, 16 Sep 2011 15:41:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidjmiller.org/?page_id=2281#comment-15870</guid>
		<description>Thanks for that fix Chris. That probably explains the inconsistencies I have seen from time to time in the timezone calculations. I hadn&#039;t been able to isolate the cause. I&#039;ll get that into a new version as soon as I can.

As for the plugin homepage - that was a remnant of a site migration. You should be able to see it without a login now.</description>
		<content:encoded><![CDATA[<p>Thanks for that fix Chris. That probably explains the inconsistencies I have seen from time to time in the timezone calculations. I hadn&#8217;t been able to isolate the cause. I&#8217;ll get that into a new version as soon as I can.</p>
<p>As for the plugin homepage &#8211; that was a remnant of a site migration. You should be able to see it without a login now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Bell</title>
		<link>http://www.davidjmiller.org/auto-schedule-posts/comment-page-1/#comment-15868</link>
		<dc:creator>Chris Bell</dc:creator>
		<pubDate>Fri, 16 Sep 2011 03:21:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidjmiller.org/?page_id=2281#comment-15868</guid>
		<description>I just found a timezone bug... (version 2.2) and have a fix...  The $tod calculation can wrap to a different day that is not expected when comparing with the $open and $close.  my quick hack, add 3 lines and a var to the 4th:
[around line 112]
  $open = mktime((double)$open[0],(double)$open[1]);
   $close = mktime((double)$close[0],(double)$close[1]);
  &lt;b&gt;$bump = 0;&lt;/b&gt;
  &lt;b&gt; if ( (date(&quot;H&quot;) + get_option(&#039;gmt_offset&#039;)) &gt; 23 ) $bump = -24;&lt;/b&gt;
  &lt;b&gt;if ( (date(&quot;H&quot;) + get_option(&#039;gmt_offset&#039;)) &lt; 0 ) $bump = 24;&lt;/b&gt;
  $tod = mktime(date(&quot;H&quot;) + get_option(&#039;gmt_offset&#039;&lt;/b&gt;&lt;b&gt; + $bump&lt;/b&gt;),date(&quot;i&quot;));

Same change around line 293 for the admin page.

Also, the plugin homepage is broken... asks for an admin login.  

Thanks for the great plugin!
Chris.</description>
		<content:encoded><![CDATA[<p>I just found a timezone bug&#8230; (version 2.2) and have a fix&#8230;  The $tod calculation can wrap to a different day that is not expected when comparing with the $open and $close.  my quick hack, add 3 lines and a var to the 4th:<br />
[around line 112]<br />
  $open = mktime((double)$open[0],(double)$open[1]);<br />
   $close = mktime((double)$close[0],(double)$close[1]);<br />
  <b>$bump = 0;</b><br />
  <b> if ( (date(&#8220;H&#8221;) + get_option(&#8216;gmt_offset&#8217;)) > 23 ) $bump = -24;</b><br />
  <b>if ( (date(&#8220;H&#8221;) + get_option(&#8216;gmt_offset&#8217;)) < 0 ) $bump = 24;</b><br />
  $tod = mktime(date(&#8220;H&#8221;) + get_option(&#8216;gmt_offset&#8217;</b><b> + $bump</b>),date(&#8220;i&#8221;));</p>
<p>Same change around line 293 for the admin page.</p>
<p>Also, the plugin homepage is broken&#8230; asks for an admin login.  </p>
<p>Thanks for the great plugin!<br />
Chris.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.davidjmiller.org/auto-schedule-posts/comment-page-1/#comment-15856</link>
		<dc:creator>David</dc:creator>
		<pubDate>Tue, 06 Sep 2011 16:11:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidjmiller.org/?page_id=2281#comment-15856</guid>
		<description>I may have to look at the timezone conversion again.</description>
		<content:encoded><![CDATA[<p>I may have to look at the timezone conversion again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kor</title>
		<link>http://www.davidjmiller.org/auto-schedule-posts/comment-page-1/#comment-15854</link>
		<dc:creator>kor</dc:creator>
		<pubDate>Tue, 06 Sep 2011 16:07:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidjmiller.org/?page_id=2281#comment-15854</guid>
		<description>Yep, version 2.2.</description>
		<content:encoded><![CDATA[<p>Yep, version 2.2.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.davidjmiller.org/auto-schedule-posts/comment-page-1/#comment-15853</link>
		<dc:creator>David</dc:creator>
		<pubDate>Tue, 06 Sep 2011 16:04:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidjmiller.org/?page_id=2281#comment-15853</guid>
		<description>Are you running the latest version of the plugin?</description>
		<content:encoded><![CDATA[<p>Are you running the latest version of the plugin?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kor</title>
		<link>http://www.davidjmiller.org/auto-schedule-posts/comment-page-1/#comment-15846</link>
		<dc:creator>kor</dc:creator>
		<pubDate>Thu, 01 Sep 2011 20:39:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidjmiller.org/?page_id=2281#comment-15846</guid>
		<description>I discovered this plugin a few weeks ago and it perfectly suits my needs !

I really do hope you&#039;ll update it from time to time, I find it so useful !

(A few problems running it on WP 3.2.1. By example the &quot;&lt;em&gt;We should be open to publish now&lt;/em&gt;&quot; doesn&#039;t work quite well.)</description>
		<content:encoded><![CDATA[<p>I discovered this plugin a few weeks ago and it perfectly suits my needs !</p>
<p>I really do hope you&#8217;ll update it from time to time, I find it so useful !</p>
<p>(A few problems running it on WP 3.2.1. By example the &#8220;<em>We should be open to publish now</em>&#8221; doesn&#8217;t work quite well.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David</title>
		<link>http://www.davidjmiller.org/auto-schedule-posts/comment-page-1/#comment-14921</link>
		<dc:creator>David</dc:creator>
		<pubDate>Sat, 11 Sep 2010 22:19:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidjmiller.org/?page_id=2281#comment-14921</guid>
		<description>The update has now been deployed - you should be able to upgrade. I have created a blog for my various Wordpress plugins and with this version the plugin homepage and support are moving to the new location - http://plugins.davidjmiller.org/auto-schedule-posts/</description>
		<content:encoded><![CDATA[<p>The update has now been deployed &#8211; you should be able to upgrade. I have created a blog for my various WordPress plugins and with this version the plugin homepage and support are moving to the new location &#8211; <a href="http://plugins.davidjmiller.org/auto-schedule-posts/" rel="nofollow">http://plugins.davidjmiller.org/auto-schedule-posts/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://www.davidjmiller.org/auto-schedule-posts/comment-page-1/#comment-14911</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Thu, 09 Sep 2010 01:20:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidjmiller.org/?page_id=2281#comment-14911</guid>
		<description>David

I just wanted to check on the ETA of that upgrade. I just installed it on a clients site not realizing that it wasn&#039;t compatible with WP 3.0

Thanks</description>
		<content:encoded><![CDATA[<p>David</p>
<p>I just wanted to check on the ETA of that upgrade. I just installed it on a clients site not realizing that it wasn&#8217;t compatible with WP 3.0</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

