<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>WordPress &#8250; Support Tag: schedule post</title>
<link>http://wordpress.org/support/</link>
<description>WordPress &#8250; Support Tag: schedule post</description>
<language>en</language>
<pubDate>Thu, 26 Nov 2009 04:43:52 +0000</pubDate>

<item>
<title>maorb on "Scheduled posts, after a year..."</title>
<link>http://wordpress.org/support/topic/323863#post-1272182</link>
<pubDate>Fri, 06 Nov 2009 13:44:43 +0000</pubDate>
<dc:creator>maorb</dc:creator>
<guid isPermaLink="false">1272182@http://wordpress.org/support/</guid>
<description>&#60;p&#62;@mtw28 - thanks for the code, I'll check it soon and report how it went.&#60;br /&#62;
The &#34;Old Post Promoter plugin&#34; is not useful, since it only picks the old posts randomly, and I need them to be at the exact dates...&#60;/p&#62;
&#60;p&#62;Asking the plugin developer for the possibility to change it and add such a feature, I also thought to pay him for that job, but the buster said that &#34;he will do it for 1000$&#34;. Well, let him kiss my a*s ....
&#60;/p&#62;</description>
</item>
<item>
<title>mtw28 on "Scheduled posts, after a year..."</title>
<link>http://wordpress.org/support/topic/323863#post-1259004</link>
<pubDate>Mon, 26 Oct 2009 01:51:25 +0000</pubDate>
<dc:creator>mtw28</dc:creator>
<guid isPermaLink="false">1259004@http://wordpress.org/support/</guid>
<description>&#60;p&#62;No problem. Here's an example of getting posts that are the same month and same day of the month for category 1 as the current month and day.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
$today = getdate();
$myposts = get_posts(monthnum=&#38;#39; .$today[&#38;#39;mon&#38;#39;] .&#38;#39;&#38;amp;day=&#38;#39;.$today[&#38;#39;mday&#38;#39;].&#38;#39;&#38;amp;cat=1&#38;#39; );
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You would use this in your theme template, such as sidebar.php, in a loop like this:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;ul&#38;gt;
&#38;lt;?php
$today = getdate();
$myposts = get_posts(&#38;#39;monthnum=&#38;#39; .$today[&#38;#39;mon&#38;#39;].&#38;#39;&#38;amp;day=&#38;#39;.$today[&#38;#39;mday&#38;#39;].&#38;#39;&#38;amp;cat=1&#38;#39;);
	foreach($myposts as $post) :
?&#38;gt;
&#38;lt;li&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php the_permalink(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php the_title(); ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;/li&#38;gt;
&#38;lt;?php endforeach; ?&#38;gt;
&#38;lt;/ul&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Also, &#60;a href=&#34;http://codex.wordpress.org/Template_Tags/get_posts&#34;&#62;here's some more info on using get_posts()&#60;/a&#62;.&#60;br /&#62;
Hope that helps!
&#60;/p&#62;</description>
</item>
<item>
<title>maorb on "Scheduled posts, after a year..."</title>
<link>http://wordpress.org/support/topic/323863#post-1257354</link>
<pubDate>Sat, 24 Oct 2009 04:20:40 +0000</pubDate>
<dc:creator>maorb</dc:creator>
<guid isPermaLink="false">1257354@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Thanks @mtw28, I'll check the plugin.&#60;/p&#62;
&#60;p&#62;About the other idea, could you give me some guideline about how building and using such a query?&#60;br /&#62;
If building one, I'll prefer to build a query that will show a post that has the same month and same day on the month, and not posts that are exactly one year old. In such a query I'll be able to display the posts also when they will be 2,3, etc.. years old.
&#60;/p&#62;</description>
</item>
<item>
<title>mtw28 on "Scheduled posts, after a year..."</title>
<link>http://wordpress.org/support/topic/323863#post-1256003</link>
<pubDate>Fri, 23 Oct 2009 01:37:34 +0000</pubDate>
<dc:creator>mtw28</dc:creator>
<guid isPermaLink="false">1256003@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Maybe this &#60;a href=&#34;http://www.blogtrafficexchange.com/old-post-promoter/&#34;&#62;Old Post Promoter plugin&#60;/a&#62; would do the trick.&#60;/p&#62;
&#60;p&#62;Otherwise, you might be able to create a custom query to display posts in the &#34;sentence of the day&#34; category that are exactly one year old.&#60;/p&#62;
&#60;p&#62;Good luck!
&#60;/p&#62;</description>
</item>
<item>
<title>maorb on "Scheduled posts, after a year..."</title>
<link>http://wordpress.org/support/topic/323863#post-1255619</link>
<pubDate>Thu, 22 Oct 2009 20:04:58 +0000</pubDate>
<dc:creator>maorb</dc:creator>
<guid isPermaLink="false">1255619@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I have a site, which day have sort of  &#34;the sentence of the day&#34;, which means that every day there is an inspiring text for that date.&#60;br /&#62;
They use that by using the scheduled posts feature in the posts admin panel, and they enter the post every month and assign a date for each post to be published.&#60;br /&#62;
These sentences should be cycled in a yearly basis, which means that every date on the year will have the same sentence.&#60;br /&#62;
So, when scheduling a post to Nov-01,2009, it will be published on that date, but what will they do after one year? should they re-assign all 365 posts again to new dates of the next year?&#60;/p&#62;
&#60;p&#62;Will be happy for some ideas how to deal with this issue.&#60;br /&#62;
Thanls
&#60;/p&#62;</description>
</item>
<item>
<title>vijayrajesh on "[Plugin: Schedule Post] How to schedule post to a particular category with this plugin?"</title>
<link>http://wordpress.org/support/topic/317020#post-1232424</link>
<pubDate>Fri, 02 Oct 2009 05:47:53 +0000</pubDate>
<dc:creator>vijayrajesh</dc:creator>
<guid isPermaLink="false">1232424@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I need to schedule post to a particular category with this plugin?&#60;/p&#62;
&#60;p&#62;Currently it does not do such job , i think if i am right.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/schedule-post/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/schedule-post/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>cuban_cigar on "Needed: Working post Scheduler Plugin"</title>
<link>http://wordpress.org/support/topic/297290#post-1163314</link>
<pubDate>Wed, 05 Aug 2009 01:00:03 +0000</pubDate>
<dc:creator>cuban_cigar</dc:creator>
<guid isPermaLink="false">1163314@http://wordpress.org/support/</guid>
<description>&#60;p&#62;ops cant change it, now that it was said there are no edits allowed
&#60;/p&#62;</description>
</item>
<item>
<title>cuban_cigar on "Needed: Working post Scheduler Plugin"</title>
<link>http://wordpress.org/support/topic/297290#post-1163311</link>
<pubDate>Wed, 05 Aug 2009 00:59:29 +0000</pubDate>
<dc:creator>cuban_cigar</dc:creator>
<guid isPermaLink="false">1163311@http://wordpress.org/support/</guid>
<description>&#60;p&#62;did I mention the extreme substandardness of not being able to edit our posts here? I mean I might say that WP Devs are asshats and not be able to edit it.
&#60;/p&#62;</description>
</item>
<item>
<title>cuban_cigar on "Needed: Working post Scheduler Plugin"</title>
<link>http://wordpress.org/support/topic/297290#post-1163310</link>
<pubDate>Wed, 05 Aug 2009 00:58:04 +0000</pubDate>
<dc:creator>cuban_cigar</dc:creator>
<guid isPermaLink="false">1163310@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Again, no capacity to edit our posts here makes me feel that this forum really sucks.&#60;/p&#62;
&#60;p&#62;Anyway, the good plugin was called &#34;post queue&#34; not schedule posts. They both seem to be broken however.
&#60;/p&#62;</description>
</item>
<item>
<title>cuban_cigar on "Needed: Working post Scheduler Plugin"</title>
<link>http://wordpress.org/support/topic/297290#post-1163258</link>
<pubDate>Wed, 05 Aug 2009 00:17:31 +0000</pubDate>
<dc:creator>cuban_cigar</dc:creator>
<guid isPermaLink="false">1163258@http://wordpress.org/support/</guid>
<description>&#60;p&#62;In the past, schedule-post plugin worked well, put it is not supported past 2.5 now&#60;/p&#62;
&#60;p&#62;The default wordpress post scheduler is annoying in that you have to manually set a date, and it wont post in a random order.&#60;/p&#62;
&#60;p&#62;Anyone know how to schedule posts at random at specified time intervals now that schedule posts does not work?
&#60;/p&#62;</description>
</item>
<item>
<title>thehalogod on "Scheduling posts does not work"</title>
<link>http://wordpress.org/support/topic/283751#post-1116891</link>
<pubDate>Fri, 26 Jun 2009 00:46:01 +0000</pubDate>
<dc:creator>thehalogod</dc:creator>
<guid isPermaLink="false">1116891@http://wordpress.org/support/</guid>
<description>&#60;p&#62;What if I told you I would pay you money to fix this problem?
&#60;/p&#62;</description>
</item>
<item>
<title>thehalogod on "Scheduling posts does not work"</title>
<link>http://wordpress.org/support/topic/283751#post-1115819</link>
<pubDate>Thu, 25 Jun 2009 06:20:36 +0000</pubDate>
<dc:creator>thehalogod</dc:creator>
<guid isPermaLink="false">1115819@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I've had this issue since 2.7x and it appears as if this remains in version 2.8.&#60;/p&#62;
&#60;p&#62;Whenever I try to schedule my wordpress posts the post always says missed schedule. I have other wordpress blogs running the same version that have no issues like the ones this does.&#60;/p&#62;
&#60;p&#62;Any ideas at all?
&#60;/p&#62;</description>
</item>
<item>
<title>RayLucchesi on "schedule posts not working"</title>
<link>http://wordpress.org/support/topic/225331#post-1093837</link>
<pubDate>Sat, 06 Jun 2009 20:39:45 +0000</pubDate>
<dc:creator>RayLucchesi</dc:creator>
<guid isPermaLink="false">1093837@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Whenever i change date to publish in future the publish button changes to Schedule and whenever I click this I can no longer see my post.  Don't know if it actually is scheduled yet&#60;/p&#62;
&#60;p&#62;I published a PRIVATE post, then later edited date to publish in future, and this seemed to work ok as long as I kept in PRIVATE, when I changed it to PUBLIC the post is no longer visible in the EDIT posts screen...&#60;/p&#62;
&#60;p&#62;Not sure if it even gets posted in the future as a private post.
&#60;/p&#62;</description>
</item>
<item>
<title>robindemaria on "[Plugin: Schedule Post] Post articles directly"</title>
<link>http://wordpress.org/support/topic/274821#post-1086535</link>
<pubDate>Fri, 29 May 2009 15:35:48 +0000</pubDate>
<dc:creator>robindemaria</dc:creator>
<guid isPermaLink="false">1086535@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Is there any way I could use this plugin with the posts I have already written in Wordpress ?&#60;/p&#62;
&#60;p&#62;I would like to write my articles, and without specifying a date when it must be published, that every x hours one of the posts (randomly) I have written would be published.&#60;/p&#62;
&#60;p&#62;Could somebody help me?
&#60;/p&#62;</description>
</item>
<item>
<title>kwbridge on "Schedule Posts Not Working in 2.5"</title>
<link>http://wordpress.org/support/topic/165238/page/4#post-985285</link>
<pubDate>Fri, 13 Feb 2009 17:10:30 +0000</pubDate>
<dc:creator>kwbridge</dc:creator>
<guid isPermaLink="false">985285@http://wordpress.org/support/</guid>
<description>&#60;p&#62;cipote - the cron.php file is different in 2.7.  Recently, I used one from an earlier version of WordPress, made the edits, and used that file instead for someone having the problem after upgrading.  She can now schedule posts again.  I have not determined, however, if using an older version of cron.php will cause other problems.
&#60;/p&#62;</description>
</item>
<item>
<title>Shirley on "Schedule Posts Not Working in 2.5"</title>
<link>http://wordpress.org/support/topic/165238/page/4#post-953388</link>
<pubDate>Mon, 12 Jan 2009 13:27:15 +0000</pubDate>
<dc:creator>Shirley</dc:creator>
<guid isPermaLink="false">953388@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I've achieved success with this long-term problem.&#60;/p&#62;
&#60;p&#62;I upgraded my SoloBusinessMarketing.com blog to version 2.7 through the WordPress Automatic Upgrade plugin, wrote an article, set it to publish the next morning, and it worked.&#60;/p&#62;
&#60;p&#62;I don't know if it was my host or the plugin; I'm just pleased to announce this in hopes that others will also find a solution.
&#60;/p&#62;</description>
</item>
<item>
<title>perfectlyclear on "Schedule Posts Not Working in 2.5"</title>
<link>http://wordpress.org/support/topic/165238/page/4#post-950739</link>
<pubDate>Fri, 09 Jan 2009 18:53:08 +0000</pubDate>
<dc:creator>perfectlyclear</dc:creator>
<guid isPermaLink="false">950739@http://wordpress.org/support/</guid>
<description>&#60;p&#62;There are hundreds of threads on the forum with people having issues with Scheduled posts not working after 2.5 and above. Unfortunately if your host is not willing to modify their firewall just for you (which most will not) then you have 2 choices, go back to an earlier version of wordpress, or wait...  It sucks I know but it's as simple as that; and as far as I've seen there has been nothing posted that will rectify the problem.
&#60;/p&#62;</description>
</item>
<item>
<title>stevejohnson on "Schedule Posts Not Working in 2.5"</title>
<link>http://wordpress.org/support/topic/165238/page/4#post-946308</link>
<pubDate>Mon, 05 Jan 2009 23:24:22 +0000</pubDate>
<dc:creator>stevejohnson</dc:creator>
<guid isPermaLink="false">946308@http://wordpress.org/support/</guid>
<description>&#60;p&#62;For those of you having trouble with this, it could very well be security settings at your hosting company. HostGator, for instance, just upgraded their servers; in the process of upgrading Apache, they also installed mod_security. While this can be a good thing, it broke a lot of things on my blogs, including scheduled posting and also the 'Press This' function.&#60;/p&#62;
&#60;p&#62;Thankfully, HostGator was fully supportive and put my domains on a 'whitelist' to bypass some of the security settings. Voila, everything now works.&#60;/p&#62;
&#60;p&#62;Don't be too fast to criticize WordPress - while a few things sometimes don't work as planned, in this age of heightened server security there are a few script functions that get caught in the lurch.&#60;/p&#62;
&#60;p&#62;P.S. For those of you on Yahoo Business Hosting, MOVE. Yahoo is one of the least friendly hosting providers I've ever seen.
&#60;/p&#62;</description>
</item>
<item>
<title>binbin on "Schedule Posts Not Working in 2.5"</title>
<link>http://wordpress.org/support/topic/165238/page/4#post-945116</link>
<pubDate>Sun, 04 Jan 2009 23:10:56 +0000</pubDate>
<dc:creator>binbin</dc:creator>
<guid isPermaLink="false">945116@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I have the same problem with wordpress 2.7&#60;br /&#62;
How I can fix it ?
&#60;/p&#62;</description>
</item>
<item>
<title>Shirley on "Schedule Posts Not Working in 2.5"</title>
<link>http://wordpress.org/support/topic/165238/page/4#post-941465</link>
<pubDate>Wed, 31 Dec 2008 23:17:41 +0000</pubDate>
<dc:creator>Shirley</dc:creator>
<guid isPermaLink="false">941465@http://wordpress.org/support/</guid>
<description>&#60;p&#62;There's an &#34;Idea&#34; section within WordPress.org where I added the idea of bringing back schedule post.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/ideas/topic.php?id=2218&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/ideas/topic.php?id=2218&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;This beneficial setting has been missing for a long time, and by the number of posts in this thread, many of us would appreciate its return.&#60;/p&#62;
&#60;p&#62;If it's not on the menu for version 2.8, the &#34;Publish Status&#34; section to the right of the &#34;Write Post&#34; page can be eliminated.
&#60;/p&#62;</description>
</item>
<item>
<title>awesomeopp on "Can't See Publish Scheduler in Firefox"</title>
<link>http://wordpress.org/support/topic/227226#post-931330</link>
<pubDate>Fri, 19 Dec 2008 21:41:54 +0000</pubDate>
<dc:creator>awesomeopp</dc:creator>
<guid isPermaLink="false">931330@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I recently was upgraded to Firefox 3.0.5 and I upgraded to WP 2.7.  I am unable to see the panel to schedule a post. It works fine in IE6.
&#60;/p&#62;</description>
</item>
<item>
<title>Ruriko on "schedule posts not working"</title>
<link>http://wordpress.org/support/topic/225331#post-924637</link>
<pubDate>Sun, 14 Dec 2008 12:03:25 +0000</pubDate>
<dc:creator>Ruriko</dc:creator>
<guid isPermaLink="false">924637@http://wordpress.org/support/</guid>
<description>&#60;p&#62;When I have schedule my posts and when the right time comes it doesn't publish instead it increases the time. What is the problem?
&#60;/p&#62;</description>
</item>
<item>
<title>cipote on "Schedule Posts Not Working in 2.5"</title>
<link>http://wordpress.org/support/topic/165238/page/4#post-923051</link>
<pubDate>Fri, 12 Dec 2008 23:02:31 +0000</pubDate>
<dc:creator>cipote</dc:creator>
<guid isPermaLink="false">923051@http://wordpress.org/support/</guid>
<description>&#60;p&#62;It's not working of me even after updating to 2.7.&#60;br /&#62;
I'm also using Yahoo Small business as my hosting. &#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;$cron_url = get_option( 'siteurl' ) . '/wp-cron.php';&#60;br /&#62;
$parts = parse_url( $cron_url );&#60;/p&#62;&#60;/blockquote&#62;
&#60;p&#62;I don't see these lines in my wp-cron.php file...
&#60;/p&#62;</description>
</item>
<item>
<title>mdesiderio on "Schedule Posts Not Working in 2.5"</title>
<link>http://wordpress.org/support/topic/165238/page/4#post-919666</link>
<pubDate>Wed, 10 Dec 2008 17:23:48 +0000</pubDate>
<dc:creator>mdesiderio</dc:creator>
<guid isPermaLink="false">919666@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Yes, I have a Yahoo! Small Biz hosting. And it works perfectly =&#38;gt; my newsletter plugin now works well (I have been sending 10 emails per hour to my subscribers list since yesterday. &#60;/p&#62;
&#60;p&#62;And posts scheduling now works perfectly. &#60;/p&#62;
&#60;p&#62;Simply GREAT!&#60;br /&#62;
thx
&#60;/p&#62;</description>
</item>
<item>
<title>kwbridge on "Schedule Posts Not Working in 2.5"</title>
<link>http://wordpress.org/support/topic/165238/page/4#post-918554</link>
<pubDate>Tue, 09 Dec 2008 15:24:23 +0000</pubDate>
<dc:creator>kwbridge</dc:creator>
<guid isPermaLink="false">918554@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Hi - I'm glad it worked for you.  &#60;/p&#62;
&#60;p&#62;You use Yahoo! for hosting?  Someone else I knew was using Yahoo! and had the same problem but told me my fix didn't work.  Perhaps it wasn't done correctly.  At any rate I'm glad this fix works for some people.
&#60;/p&#62;</description>
</item>
<item>
<title>mdesiderio on "Schedule Posts Not Working in 2.5"</title>
<link>http://wordpress.org/support/topic/165238/page/4#post-918434</link>
<pubDate>Tue, 09 Dec 2008 12:40:52 +0000</pubDate>
<dc:creator>mdesiderio</dc:creator>
<guid isPermaLink="false">918434@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I used Kim's soution (&#60;a href=&#34;http://www.kimwoodbridge.com/scheduled-posts-in-wordpress-dont-work-a-possible-solution-for-iis/&#34; rel=&#34;nofollow&#34;&#62;http://www.kimwoodbridge.com/scheduled-posts-in-wordpress-dont-work-a-possible-solution-for-iis/&#60;/a&#62;) + set my blog's time at UTC and it works !!!!&#60;/p&#62;
&#60;p&#62;Check the link or do what she suggests:&#60;br /&#62;
In your Wordpress directory, edit /includes/cron.php. At line 84 and 85 replace&#60;/p&#62;
&#60;p&#62;    $cron_url = get_option( 'siteurl' ) . '/wp-cron.php';&#60;br /&#62;
    	$parts = parse_url( $cron_url );&#60;/p&#62;
&#60;p&#62;with&#60;/p&#62;
&#60;p&#62;    $cron_url = 'http://127.0.0.1/wp-cron.php';&#60;br /&#62;
    	$parts = parse_url( $cron_url );&#60;/p&#62;
&#60;p&#62;Thank you Kim!!!&#60;/p&#62;
&#60;p&#62;The problem is definitely a matter of IP (I think my host: Yahoo! does not have a fix IP for the websites =&#38;gt; when I ping &#60;a href=&#34;http://www.transport-expertise.org&#34; rel=&#34;nofollow&#34;&#62;http://www.transport-expertise.org&#60;/a&#62;, I always get a different IP address...)
&#60;/p&#62;</description>
</item>
<item>
<title>motoyen on "Schedule Posts Not Working in 2.5"</title>
<link>http://wordpress.org/support/topic/165238/page/3#post-916866</link>
<pubDate>Sun, 07 Dec 2008 08:17:21 +0000</pubDate>
<dc:creator>motoyen</dc:creator>
<guid isPermaLink="false">916866@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I'm running 2.6.5 and have the same problem. &#60;/p&#62;
&#60;p&#62;Is this a wordpress problem or a hosting problem?
&#60;/p&#62;</description>
</item>
<item>
<title>perfectlyclear on "Schedule Posts Not Working in 2.5"</title>
<link>http://wordpress.org/support/topic/165238/page/3#post-913366</link>
<pubDate>Tue, 02 Dec 2008 19:47:44 +0000</pubDate>
<dc:creator>perfectlyclear</dc:creator>
<guid isPermaLink="false">913366@http://wordpress.org/support/</guid>
<description>&#60;p&#62;Tried every hack mentioned in this post on all versiosn of wordpress from 2.6.3 to 2.7 RC1 and none of them work for me :(
&#60;/p&#62;</description>
</item>
<item>
<title>kwbridge on "Schedule Posts Not Working in 2.5"</title>
<link>http://wordpress.org/support/topic/165238/page/3#post-913108</link>
<pubDate>Tue, 02 Dec 2008 14:28:12 +0000</pubDate>
<dc:creator>kwbridge</dc:creator>
<guid isPermaLink="false">913108@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I'm not sure this will help or not but this corrected the problem for two people who were hosted on IIS servers.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.kimwoodbridge.com/scheduled-posts-in-wordpress-dont-work-a-possible-solution-for-iis/&#34;&#62;http://www.kimwoodbridge.com/scheduled-posts-in-wordpress-dont-work-a-possible-solution-for-iis/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>mdesiderio on "Schedule Posts Not Working in 2.5"</title>
<link>http://wordpress.org/support/topic/165238/page/3#post-912987</link>
<pubDate>Tue, 02 Dec 2008 11:04:09 +0000</pubDate>
<dc:creator>mdesiderio</dc:creator>
<guid isPermaLink="false">912987@http://wordpress.org/support/</guid>
<description>&#60;p&#62;I just upgraded to 2.6.5, and this does not fix the problem...&#60;br /&#62;
Change CHMOD to 644, and this does not fix the problem...&#60;br /&#62;
I contacted Yahoo!, and the average response time is 24 hours... &#60;/p&#62;
&#60;p&#62;See you tomorrow!&#60;br /&#62;
Matt&#60;/p&#62;
&#60;p&#62;For development purpose, I rewrite my host servers characteristics:&#60;br /&#62;
I run three WP on my site. Version is 2.6.3 &#38;gt; PHP Version 4.3.11&#60;br /&#62;
System FreeBSD hostingprod.com 4.11-YAHOO-20080312 FreeBSD 4.11-YAHOO-20080312 #0: i386&#60;br /&#62;
Host: Yahoo! Smallbusiness / domain name transport-expertise.org
&#60;/p&#62;</description>
</item>

</channel>
</rss>
