<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: What to do if your cron job is failing</title>
	<atom:link href="http://blog.webbasedcron.com/2005/12/07/what-to-do-if-your-cron-job-is-failing/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.webbasedcron.com/2005/12/07/what-to-do-if-your-cron-job-is-failing/</link>
	<description>Visit WebBasedCron.com for all your cron hosting needs</description>
	<lastBuildDate>Tue, 12 Jan 2010 19:09:43 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Php Catalog</title>
		<link>http://blog.webbasedcron.com/2005/12/07/what-to-do-if-your-cron-job-is-failing/#comment-2346</link>
		<dc:creator>Php Catalog</dc:creator>
		<pubDate>Tue, 22 Dec 2009 03:23:20 +0000</pubDate>
		<guid isPermaLink="false">http://webbasedcron.wordpress.com/2005/12/07/what-to-do-if-your-cron-job-is-failing/#comment-2346</guid>
		<description>it&#039;s easy to increase the max execution time</description>
		<content:encoded><![CDATA[<p>it&#8217;s easy to increase the max execution time</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://blog.webbasedcron.com/2005/12/07/what-to-do-if-your-cron-job-is-failing/#comment-2265</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Tue, 11 Mar 2008 14:45:16 +0000</pubDate>
		<guid isPermaLink="false">http://webbasedcron.wordpress.com/2005/12/07/what-to-do-if-your-cron-job-is-failing/#comment-2265</guid>
		<description>Hi,
That&#039;s great, but I don&#039;t see how it would work for me. My website is running ASP.NET 2.0 on a shared hosting environment and I don&#039;t think I would have permission to run jobs in the background. 
The job I&#039;m looking to automate is a mass email up to 1000 recpients. I have negotiated to split the task into around 10 batches set off at 60 second intervals, so my script takes 10 minutes total to run (this limitation suggested by hosting company to avoid jamming the mail server). I could set up 10 cron jobs I suppose, but is there a better solution using your system?
Thanks.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
That&#8217;s great, but I don&#8217;t see how it would work for me. My website is running ASP.NET 2.0 on a shared hosting environment and I don&#8217;t think I would have permission to run jobs in the background.<br />
The job I&#8217;m looking to automate is a mass email up to 1000 recpients. I have negotiated to split the task into around 10 batches set off at 60 second intervals, so my script takes 10 minutes total to run (this limitation suggested by hosting company to avoid jamming the mail server). I could set up 10 cron jobs I suppose, but is there a better solution using your system?<br />
Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: totodu web</title>
		<link>http://blog.webbasedcron.com/2005/12/07/what-to-do-if-your-cron-job-is-failing/#comment-514</link>
		<dc:creator>totodu web</dc:creator>
		<pubDate>Mon, 12 Mar 2007 14:46:55 +0000</pubDate>
		<guid isPermaLink="false">http://webbasedcron.wordpress.com/2005/12/07/what-to-do-if-your-cron-job-is-failing/#comment-514</guid>
		<description>you just write : 

? &gt;
set_time_limit(420);	
ignore_user_abort(true);

function() {
   ...
}
? &gt;

and it leaves you work 420 seconds ;)</description>
		<content:encoded><![CDATA[<p>you just write : </p>
<p>? &gt;<br />
set_time_limit(420);<br />
ignore_user_abort(true);</p>
<p>function() {<br />
   &#8230;<br />
}<br />
? &gt;</p>
<p>and it leaves you work 420 seconds ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WebBasedCron blog &#38; faq &#187; A great way to never have your PHP script fail</title>
		<link>http://blog.webbasedcron.com/2005/12/07/what-to-do-if-your-cron-job-is-failing/#comment-11</link>
		<dc:creator>WebBasedCron blog &#38; faq &#187; A great way to never have your PHP script fail</dc:creator>
		<pubDate>Sat, 08 Apr 2006 18:53:33 +0000</pubDate>
		<guid isPermaLink="false">http://webbasedcron.wordpress.com/2005/12/07/what-to-do-if-your-cron-job-is-failing/#comment-11</guid>
		<description>[...] A little while ago I wrote a post about how to prevent your cron job from failing.&#160; A comment was posted suggesting the use of the PHP function ignore_user_abort(true). This is a great idea; anyone who is running a PHP script should put this: [...]</description>
		<content:encoded><![CDATA[<p>[...] A little while ago I wrote a post about how to prevent your cron job from failing.&nbsp; A comment was posted suggesting the use of the PHP function ignore_user_abort(true). This is a great idea; anyone who is running a PHP script should put this: [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FinalArena</title>
		<link>http://blog.webbasedcron.com/2005/12/07/what-to-do-if-your-cron-job-is-failing/#comment-9</link>
		<dc:creator>FinalArena</dc:creator>
		<pubDate>Sat, 18 Mar 2006 11:15:17 +0000</pubDate>
		<guid isPermaLink="false">http://webbasedcron.wordpress.com/2005/12/07/what-to-do-if-your-cron-job-is-failing/#comment-9</guid>
		<description>...or you can add ignore_user_abort(true); in php...then when the connection is closed, the script continues to run.</description>
		<content:encoded><![CDATA[<p>&#8230;or you can add ignore_user_abort(true); in php&#8230;then when the connection is closed, the script continues to run.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: webbasedcron</title>
		<link>http://blog.webbasedcron.com/2005/12/07/what-to-do-if-your-cron-job-is-failing/#comment-5</link>
		<dc:creator>webbasedcron</dc:creator>
		<pubDate>Thu, 08 Dec 2005 04:36:08 +0000</pubDate>
		<guid isPermaLink="false">http://webbasedcron.wordpress.com/2005/12/07/what-to-do-if-your-cron-job-is-failing/#comment-5</guid>
		<description>If your using a windows machine, the exec command might be a bit different.  I&#039;ll look into this and post a solution

George</description>
		<content:encoded><![CDATA[<p>If your using a windows machine, the exec command might be a bit different.  I&#8217;ll look into this and post a solution</p>
<p>George</p>
]]></content:encoded>
	</item>
</channel>
</rss>
