<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The PhenixbluE &#187; Problems</title>
	<atom:link href="http://phenix.thephenixblue.com/category/site/problems-site/feed/" rel="self" type="application/rss+xml" />
	<link>http://phenix.thephenixblue.com</link>
	<description>Bringing Nonsense to the Masses since 2003!</description>
	<lastBuildDate>Wed, 16 Feb 2011 18:49:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WP Post Scheduling Mishap</title>
		<link>http://phenix.thephenixblue.com/2009/12/wp-post-scheduling-mishap/</link>
		<comments>http://phenix.thephenixblue.com/2009/12/wp-post-scheduling-mishap/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 18:30:22 +0000</pubDate>
		<dc:creator>Phenix</dc:creator>
				<category><![CDATA[Problems]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Upgrades]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[2.9]]></category>
		<category><![CDATA[scheduled posts]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://phenix.thephenixblue.com/?p=576</guid>
		<description><![CDATA[I recently had to help someone I host a site for solve a very strange issue with post scheduling after an upgrade to 2.9 on his WP site. I&#8217;ve hosted many WP sites over the years and have never had this problem personally, so I had to dig around a bit.
The Issue:
When the time allotted [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had to help someone I host a site for solve a very strange issue with post scheduling after an upgrade to 2.9 on his WP site. I&#8217;ve hosted many WP sites over the years and have never had this problem personally, so I had to dig around a bit.</p>
<p>The Issue:</p>
<p>When the time allotted for a scheduled post to be published occurs, the post is not published, and a message within the Admin panel only says &#8220;Missed Schedule.&#8221;</p>
<p>After perusing around the WP forums for a bit, I came to realize that this is a <a title="WP 2.9 Scheduled Posts Missed (Forum)" href="http://wordpress.org/support/topic/343080" onclick="urchinTracker('/outgoing/wordpress.org/support/topic/343080?referer=');">hot topic</a> for many 2.9 early adopters. After looking deeper into the forums, I found that this has been a potential issue with Wordpress versions since the release of 2.7. Some say the &#8220;Missed Schedule&#8221; mishap can be caused by a temporary &#8220;hiccup&#8221; with a site&#8217;s DNS. As I manage the DNS for the particular site I host, I knew this to not be the case. Further research did indeed provide me with a solution.</p>
<p>The Solution:</p>
<p>Apparently with all the new fancy upgrades to the WP core, a significant amount of time (in the web world this means milliseconds!) has been added to the time it takes to run the job that actually publishes a post. From what I can tell this is due to the number of hooks that data has to be run through to make it from the edit page as a draft, to the front page of your blog as a live post. The addition of running it through the scheduling cron job pushes it too far. Can&#8217;t we just extend the allowable time to publish a post you say? Here you go:</p>
<p>The time limit is set around line 230 in the /wp-includes/cron.php file. The default line will appear as such:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>230
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">wp_remote_post<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$cron_url</span><span style="color: #339933;">,</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'timeout'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color:#800080;">0.01</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'blocking'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'sslverify'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> apply_filters<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'https_local_ssl_verify'</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>As you can see, the limit is set to 0.01 seconds by default. I tried increasing the value in increments, and finally decided on 20 seconds. You may find that this can very from server to server, so play around with it for a bit to optimize it for your setup. So here&#8217;s the updates line:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>230
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">wp_remote_post<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$cron_url</span><span style="color: #339933;">,</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'timeout'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color:#800080;">20.0</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'blocking'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> <span style="color: #009900; font-weight: bold;">false</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'sslverify'</span> <span style="color: #339933;">=&amp;</span>gt<span style="color: #339933;">;</span> apply_filters<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'https_local_ssl_verify'</span><span style="color: #339933;">,</span> <span style="color: #009900; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>So there you go! If you&#8217;ve found yourself upgrading to a new version of WP and you are unable to successfully publish a scheduled post, try this out!</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save" onclick="urchinTracker('/outgoing/www.addtoany.com/share_save?referer=');"><img src="http://phenix.thephenixblue.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://phenix.thephenixblue.com/2009/12/wp-post-scheduling-mishap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wordpress.org Has problems!</title>
		<link>http://phenix.thephenixblue.com/2009/09/wordpress-org-has-problems/</link>
		<comments>http://phenix.thephenixblue.com/2009/09/wordpress-org-has-problems/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 20:45:00 +0000</pubDate>
		<dc:creator>Phenix</dc:creator>
				<category><![CDATA[Problems]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[problems]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://phenix.thephenixblue.com/?p=341</guid>
		<description><![CDATA[So, while browsing around today I decided to take a visit to Wordpress.org. To my astonishment their site was experiencing issues (around 4:30 EST). If I had to guess, the issues were stylesheet related, but it rendered there page in a format devoid of position styling (font and links looked to be ok). Here&#8217;s a [...]]]></description>
			<content:encoded><![CDATA[<p>So, while browsing around today I decided to take a visit to Wordpress.org. To my astonishment their site was experiencing issues (around 4:30 EST). If I had to guess, the issues were stylesheet related, but it rendered there page in a format devoid of position styling (font and links looked to be ok). Here&#8217;s a snapshot I did:</p>
<p style="text-align: center"><img class="size-full wp-image-342   aligncenter" src="http://phenix.thephenixblue.com/files/2009/09/Screen-shot-2009-09-02-at-4.38.26-PM.png" alt="When stylesheets go bad!" width="545" height="340" /></p>
<p>Hope they get this fixed soon!</p>
<p>-Phenix</p>
<p>P.S. This is why they need to hire me!!!</p>
<p><span style="color: #ff9900">UPDATE&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</span></p>
<p>As of around 4:54pm EST it looks like they got everything fixed!</p>
<p>-Phenix</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save" onclick="urchinTracker('/outgoing/www.addtoany.com/share_save?referer=');"><img src="http://phenix.thephenixblue.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://phenix.thephenixblue.com/2009/09/wordpress-org-has-problems/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Phenix Returns!!!</title>
		<link>http://phenix.thephenixblue.com/2009/04/the-phenix-returns/</link>
		<comments>http://phenix.thephenixblue.com/2009/04/the-phenix-returns/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 15:03:12 +0000</pubDate>
		<dc:creator>Phenix</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Problems]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[down]]></category>
		<category><![CDATA[flood]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://phenix.thephenixblue.com/?p=201</guid>
		<description><![CDATA[The PhenixbluE returns (DUH! if you&#8217;re reading this!!!). Sorry for the downtime folks, but Mother Nature didn&#8217;t really give myself or Mediacom forwarning or much of a choice! Service was restored sometime this morning, and a quick restart of services got everything back up and running smooth. Thanks for your patience, and I hope you [...]]]></description>
			<content:encoded><![CDATA[<p>The PhenixbluE returns (DUH! if you&#8217;re reading this!!!). Sorry for the downtime folks, but Mother Nature didn&#8217;t really give myself or Mediacom forwarning or much of a choice! Service was restored sometime this morning, and a quick restart of services got everything back up and running smooth. Thanks for your patience, and I hope you continue visiting.</p>
<p>For anyone unaware of the recent events in Valdosta/Lowndes County, see this <a title="Lowndes County Flooding" href="http://www.walb.com/Global/story.asp?s=10139005" onclick="urchinTracker('/outgoing/www.walb.com/Global/story.asp?s=10139005&amp;referer=');">article and video</a> (to the right of the article)  with details.</p>
<p>-Phenix</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save" onclick="urchinTracker('/outgoing/www.addtoany.com/share_save?referer=');"><img src="http://phenix.thephenixblue.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://phenix.thephenixblue.com/2009/04/the-phenix-returns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unexpected Downtime</title>
		<link>http://phenix.thephenixblue.com/2009/03/unexpected-downtime/</link>
		<comments>http://phenix.thephenixblue.com/2009/03/unexpected-downtime/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 13:01:33 +0000</pubDate>
		<dc:creator>Phenix</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Problems]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[downtime]]></category>
		<category><![CDATA[isp]]></category>
		<category><![CDATA[mediacom]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://phenix.thephenixblue.com/?p=133</guid>
		<description><![CDATA[Yesterday a little before 3:00pm EST this site and all associated went down for roughly 4 hours. This outage appears to be the fault of my ISP (Mediacom) as the web server, dns, dhcp, main router, etc. were all in operation when I arrived on site. After examining the logs from the various systems, I [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday a little before 3:00pm EST this site and all associated went down for roughly 4 hours. This outage appears to be the fault of my ISP (Mediacom) as the web server, dns, dhcp, main router, etc. were all in operation when I arrived on site. After examining the logs from the various systems, I saw no system faults. No data was lost during this outage, and full functionality was restored. I know you were all disheartened by not be able to read my wonderful content!</p>
<p>-Phenix</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save" onclick="urchinTracker('/outgoing/www.addtoany.com/share_save?referer=');"><img src="http://phenix.thephenixblue.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://phenix.thephenixblue.com/2009/03/unexpected-downtime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

