<?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: How to Time Things in WordPress &#8211; Cron Job Plugin</title>
	<atom:link href="http://activeblogging.com/info/wordpress-cron-plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://activeblogging.com/info/wordpress-cron-plugin/</link>
	<description>The Knowledge You Need For The Blog You Want</description>
	<lastBuildDate>Mon, 02 Jan 2012 17:13:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: David Pankhurst</title>
		<link>http://activeblogging.com/info/wordpress-cron-plugin/comment-page-1/#comment-125458</link>
		<dc:creator>David Pankhurst</dc:creator>
		<pubDate>Wed, 25 May 2011 12:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://activeblogging.com/info/wordpress-cron-plugin/#comment-125458</guid>
		<description>Unfortunately, WordPress is only run when viewed, either in Admin or a page view (including things like RSS feed viewing), so hooking to its internal cron still make you dependent on page views. Using an external cron job that loads a page would give you more control.</description>
		<content:encoded><![CDATA[<p>Unfortunately, WordPress is only run when viewed, either in Admin or a page view (including things like RSS feed viewing), so hooking to its internal cron still make you dependent on page views. Using an external cron job that loads a page would give you more control.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ForensicDev</title>
		<link>http://activeblogging.com/info/wordpress-cron-plugin/comment-page-1/#comment-125438</link>
		<dc:creator>ForensicDev</dc:creator>
		<pubDate>Sat, 05 Mar 2011 05:48:40 +0000</pubDate>
		<guid isPermaLink="false">http://activeblogging.com/info/wordpress-cron-plugin/#comment-125438</guid>
		<description>This may be off topic, yet I feel like I may have the right audience here for my question. I just recently written a plugin.  That plugin, upon activation, uses a hook that will use wp_schedule_event() to start a daily job.  This functionality seems to work just fine and I see the job via the wp-crontrl plugin.

Unfortunately, the job never executes, unless I view a page or post.

Is there a way to write a WP plugin that will &quot;wake up&quot; once a day and trigger a PHP function?

It looks like the cron framework in WP is not really mean to trigger events based on frequency as the wp_schedule_event() function suggests, yet rather is bound to the fact people viewing pages to trigger jobs.

Any insight, sample code, ideas would be much appreciated.</description>
		<content:encoded><![CDATA[<p>This may be off topic, yet I feel like I may have the right audience here for my question. I just recently written a plugin.  That plugin, upon activation, uses a hook that will use wp_schedule_event() to start a daily job.  This functionality seems to work just fine and I see the job via the wp-crontrl plugin.</p>
<p>Unfortunately, the job never executes, unless I view a page or post.</p>
<p>Is there a way to write a WP plugin that will &#8220;wake up&#8221; once a day and trigger a PHP function?</p>
<p>It looks like the cron framework in WP is not really mean to trigger events based on frequency as the wp_schedule_event() function suggests, yet rather is bound to the fact people viewing pages to trigger jobs.</p>
<p>Any insight, sample code, ideas would be much appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Pankhurst</title>
		<link>http://activeblogging.com/info/wordpress-cron-plugin/comment-page-1/#comment-125432</link>
		<dc:creator>David Pankhurst</dc:creator>
		<pubDate>Mon, 07 Feb 2011 07:26:07 +0000</pubDate>
		<guid isPermaLink="false">http://activeblogging.com/info/wordpress-cron-plugin/#comment-125432</guid>
		<description>Perhaps the web page passes some variables via POST, including the count. If the cron only does one, then just set up two jobs, if possible. Or perhaps it is possible to call the web page with GET variables, like ?i=2 or something, so that you can do two calls.</description>
		<content:encoded><![CDATA[<p>Perhaps the web page passes some variables via POST, including the count. If the cron only does one, then just set up two jobs, if possible. Or perhaps it is possible to call the web page with GET variables, like ?i=2 or something, so that you can do two calls.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leo</title>
		<link>http://activeblogging.com/info/wordpress-cron-plugin/comment-page-1/#comment-125429</link>
		<dc:creator>Leo</dc:creator>
		<pubDate>Mon, 31 Jan 2011 16:04:43 +0000</pubDate>
		<guid isPermaLink="false">http://activeblogging.com/info/wordpress-cron-plugin/#comment-125429</guid>
		<description>Good plugin but i have a problem.
I want to make a cron job to a page that read a simplepie function and create 2 post with the RSS.

The problem is that the page with the cron job create only 1 post, but if i go to the Page it create 2 post, why ?

Is a problem with the function: foreach ?</description>
		<content:encoded><![CDATA[<p>Good plugin but i have a problem.<br />
I want to make a cron job to a page that read a simplepie function and create 2 post with the RSS.</p>
<p>The problem is that the page with the cron job create only 1 post, but if i go to the Page it create 2 post, why ?</p>
<p>Is a problem with the function: foreach ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://activeblogging.com/info/wordpress-cron-plugin/comment-page-1/#comment-125425</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Sun, 16 Jan 2011 01:04:49 +0000</pubDate>
		<guid isPermaLink="false">http://activeblogging.com/info/wordpress-cron-plugin/#comment-125425</guid>
		<description>David,

I am new to Wordpress, so spent &#039;a while&#039; swearing at the screen before I found your post:

&quot;WP 2.7 changes the menu layout significantly – the U-Cron tab is now in the ‘Posts’ section, at the bottom.&quot;

Thanks so much for sharing your knowledge &amp; restoring my sanity!

Warmest,

Nick</description>
		<content:encoded><![CDATA[<p>David,</p>
<p>I am new to WordPress, so spent &#8216;a while&#8217; swearing at the screen before I found your post:</p>
<p>&#8220;WP 2.7 changes the menu layout significantly – the U-Cron tab is now in the ‘Posts’ section, at the bottom.&#8221;</p>
<p>Thanks so much for sharing your knowledge &amp; restoring my sanity!</p>
<p>Warmest,</p>
<p>Nick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greekx</title>
		<link>http://activeblogging.com/info/wordpress-cron-plugin/comment-page-1/#comment-125412</link>
		<dc:creator>Greekx</dc:creator>
		<pubDate>Fri, 19 Nov 2010 22:52:43 +0000</pubDate>
		<guid isPermaLink="false">http://activeblogging.com/info/wordpress-cron-plugin/#comment-125412</guid>
		<description>Thanks for this plugin, it works fine!!!!!</description>
		<content:encoded><![CDATA[<p>Thanks for this plugin, it works fine!!!!!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

