<?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: Scheduling with WordPress Cron Functions</title>
	<atom:link href="http://holisticnetworking.net/plugins/2008/10/18/scheduling-with-wordpress-cron-functions/feed/" rel="self" type="application/rss+xml" />
	<link>http://holisticnetworking.net/plugins/2008/10/18/scheduling-with-wordpress-cron-functions/</link>
	<description>Plugin Resource for WordPress and WPMU</description>
	<lastBuildDate>Tue, 09 Mar 2010 07:03:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: jeremyclarke</title>
		<link>http://holisticnetworking.net/plugins/2008/10/18/scheduling-with-wordpress-cron-functions/comment-page-1/#comment-8295</link>
		<dc:creator>jeremyclarke</dc:creator>
		<pubDate>Sat, 19 Dec 2009 00:56:52 +0000</pubDate>
		<guid isPermaLink="false">http://holisticnetworking.net/plugins/?p=64#comment-8295</guid>
		<description>Hey people who are subscribed to this comment thread. Just wanted to point out that in many cases where you&#039;re scheduling data saving it might be easier/more effective to use the transients api instead. It allows you to set options similar to update_option() but with a time limit, after which they will be deleted. It&#039;s been around a copule of versions but there was no documentation till now: &lt;a href=&quot;http://codex.wordpress.org/Transients_API&quot; rel=&quot;nofollow&quot;&gt;http://codex.wordpress.org/Transients_API&lt;/a&gt; </description>
		<content:encoded><![CDATA[<p>Hey people who are subscribed to this comment thread. Just wanted to point out that in many cases where you&#39;re scheduling data saving it might be easier/more effective to use the transients api instead. It allows you to set options similar to update_option() but with a time limit, after which they will be deleted. It&#39;s been around a copule of versions but there was no documentation till now: <a href="http://codex.wordpress.org/Transients_API" rel="nofollow">http://codex.wordpress.org/Transients_API</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tbelknap</title>
		<link>http://holisticnetworking.net/plugins/2008/10/18/scheduling-with-wordpress-cron-functions/comment-page-1/#comment-8297</link>
		<dc:creator>tbelknap</dc:creator>
		<pubDate>Fri, 18 Dec 2009 21:27:18 +0000</pubDate>
		<guid isPermaLink="false">http://holisticnetworking.net/plugins/?p=64#comment-8297</guid>
		<description>Jeremy,  
  
Thanks for that! I&#039;d not seen it before, myself. Very handy for a couple plugins I&#039;ve got brewin&#039;.  </description>
		<content:encoded><![CDATA[<p>Jeremy,  </p>
<p>Thanks for that! I&#039;d not seen it before, myself. Very handy for a couple plugins I&#039;ve got brewin&#039;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tbelknap</title>
		<link>http://holisticnetworking.net/plugins/2008/10/18/scheduling-with-wordpress-cron-functions/comment-page-1/#comment-8294</link>
		<dc:creator>tbelknap</dc:creator>
		<pubDate>Fri, 18 Dec 2009 20:30:03 +0000</pubDate>
		<guid isPermaLink="false">http://holisticnetworking.net/plugins/?p=64#comment-8294</guid>
		<description>One word of caution about the hourly crons: WP will run all the crons whose time has expired once someone actually does cause the WP-cron function to fire. So, if you&#039;re not getting hourly visits, hourly crons could have a pretty negative impact on your site performance or do something you didn&#039;t expect. Its not a guarantee, just a word of caution.  </description>
		<content:encoded><![CDATA[<p>One word of caution about the hourly crons: WP will run all the crons whose time has expired once someone actually does cause the WP-cron function to fire. So, if you&#039;re not getting hourly visits, hourly crons could have a pretty negative impact on your site performance or do something you didn&#039;t expect. Its not a guarantee, just a word of caution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guillaume</title>
		<link>http://holisticnetworking.net/plugins/2008/10/18/scheduling-with-wordpress-cron-functions/comment-page-1/#comment-8293</link>
		<dc:creator>Guillaume</dc:creator>
		<pubDate>Fri, 18 Dec 2009 20:02:41 +0000</pubDate>
		<guid isPermaLink="false">http://holisticnetworking.net/plugins/?p=64#comment-8293</guid>
		<description>Answered my own question. From the codex: 
 
The action will trigger when someone visits your WordPress site, if the scheduled time has passed.  
 
This is an important nuance.  In my case, I need to fetch data from an external site every hour. The first visitor after the scheduled time will see the old data. It will trigger the cron, and only then will the new data be available. </description>
		<content:encoded><![CDATA[<p>Answered my own question. From the codex: </p>
<p>The action will trigger when someone visits your WordPress site, if the scheduled time has passed.  </p>
<p>This is an important nuance.  In my case, I need to fetch data from an external site every hour. The first visitor after the scheduled time will see the old data. It will trigger the cron, and only then will the new data be available.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Guillaume</title>
		<link>http://holisticnetworking.net/plugins/2008/10/18/scheduling-with-wordpress-cron-functions/comment-page-1/#comment-8292</link>
		<dc:creator>Guillaume</dc:creator>
		<pubDate>Fri, 18 Dec 2009 19:43:01 +0000</pubDate>
		<guid isPermaLink="false">http://holisticnetworking.net/plugins/?p=64#comment-8292</guid>
		<description>Is it a true cron that will start on its own, or on every page load it checks if some job needs to be run? 
 
Another way to put it: 
When you set a cron to run every hour and no one visits your site for 3 days, will it run every hour during that time? </description>
		<content:encoded><![CDATA[<p>Is it a true cron that will start on its own, or on every page load it checks if some job needs to be run? </p>
<p>Another way to put it:<br />
When you set a cron to run every hour and no one visits your site for 3 days, will it run every hour during that time?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tbelknap</title>
		<link>http://holisticnetworking.net/plugins/2008/10/18/scheduling-with-wordpress-cron-functions/comment-page-1/#comment-7929</link>
		<dc:creator>tbelknap</dc:creator>
		<pubDate>Sat, 19 Sep 2009 13:57:50 +0000</pubDate>
		<guid isPermaLink="false">http://holisticnetworking.net/plugins/?p=64#comment-7929</guid>
		<description>Thanks for that, Ryan. Not sure, though, that this is exactly the way to do it.... </description>
		<content:encoded><![CDATA[<p>Thanks for that, Ryan. Not sure, though, that this is exactly the way to do it&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://holisticnetworking.net/plugins/2008/10/18/scheduling-with-wordpress-cron-functions/comment-page-1/#comment-7928</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Sat, 19 Sep 2009 13:07:57 +0000</pubDate>
		<guid isPermaLink="false">http://holisticnetworking.net/plugins/?p=64#comment-7928</guid>
		<description>You could simple reschedule the same event as part of your event/function itself if you wanted it to happen FOREVER AND FOREVER! </description>
		<content:encoded><![CDATA[<p>You could simple reschedule the same event as part of your event/function itself if you wanted it to happen FOREVER AND FOREVER!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jeremyclarke</title>
		<link>http://holisticnetworking.net/plugins/2008/10/18/scheduling-with-wordpress-cron-functions/comment-page-1/#comment-7899</link>
		<dc:creator>jeremyclarke</dc:creator>
		<pubDate>Wed, 16 Sep 2009 21:59:13 +0000</pubDate>
		<guid isPermaLink="false">http://holisticnetworking.net/plugins/?p=64#comment-7899</guid>
		<description>Diego, that&#039;s also something that can be pretty easily handled entirely by a plugin. Search the plugin repo for &#039;backup&#039; and you&#039;ll find lots of ideas.</description>
		<content:encoded><![CDATA[<p>Diego, that&#8217;s also something that can be pretty easily handled entirely by a plugin. Search the plugin repo for &#8216;backup&#8217; and you&#8217;ll find lots of ideas.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas Belknap</title>
		<link>http://holisticnetworking.net/plugins/2008/10/18/scheduling-with-wordpress-cron-functions/comment-page-1/#comment-7897</link>
		<dc:creator>Thomas Belknap</dc:creator>
		<pubDate>Wed, 16 Sep 2009 21:45:53 +0000</pubDate>
		<guid isPermaLink="false">http://holisticnetworking.net/plugins/?p=64#comment-7897</guid>
		<description>If by automatic export you&#039;re referring to backing up your posts or database, you&#039;re definitely looking in the wrong area. Something like that needs to be handled by an actual Cron job on the server, which WP Cron does not do. If you don&#039;t have access to the server directly, you might want to check with your web host to see if there is a scheduling tool available to you.</description>
		<content:encoded><![CDATA[<p>If by automatic export you&#8217;re referring to backing up your posts or database, you&#8217;re definitely looking in the wrong area. Something like that needs to be handled by an actual Cron job on the server, which WP Cron does not do. If you don&#8217;t have access to the server directly, you might want to check with your web host to see if there is a scheduling tool available to you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: deigo</title>
		<link>http://holisticnetworking.net/plugins/2008/10/18/scheduling-with-wordpress-cron-functions/comment-page-1/#comment-7896</link>
		<dc:creator>deigo</dc:creator>
		<pubDate>Wed, 16 Sep 2009 20:15:27 +0000</pubDate>
		<guid isPermaLink="false">http://holisticnetworking.net/plugins/?p=64#comment-7896</guid>
		<description>Hi,
I´m looking for a cron code to do a automatic export...
...anyone knows wath is the function to include it?

thx</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I´m looking for a cron code to do a automatic export&#8230;<br />
&#8230;anyone knows wath is the function to include it?</p>
<p>thx</p>
]]></content:encoded>
	</item>
</channel>
</rss>
