<?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: Deepest Sender &#8211; FireFox Plugin</title>
	<atom:link href="http://blog.miloco.com/2006/03/deepest-sender-firefox-plugin.html/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.miloco.com/2006/03/deepest-sender-firefox-plugin.html</link>
	<description>Why do I have a Blog?  When I find out, I'll tell you.</description>
	<lastBuildDate>Wed, 04 Jan 2012 04:33:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Andrew Milo</title>
		<link>http://blog.miloco.com/2006/03/deepest-sender-firefox-plugin.html/comment-page-1#comment-122</link>
		<dc:creator>Andrew Milo</dc:creator>
		<pubDate>Wed, 08 Mar 2006 18:34:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.miloco.myblogstorage.net/?p=85#comment-122</guid>
		<description>:) It keeps you from having to type the URL to your control panel.  hehe  Lazy, huh?

But, the crontab thing is completely different...

-A</description>
		<content:encoded><![CDATA[<p> <img src='http://blog.miloco.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  It keeps you from having to type the URL to your control panel.  hehe  Lazy, huh?</p>
<p>But, the crontab thing is completely different&#8230;</p>
<p>-A</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://blog.miloco.com/2006/03/deepest-sender-firefox-plugin.html/comment-page-1#comment-121</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Wed, 08 Mar 2006 16:27:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.miloco.myblogstorage.net/?p=85#comment-121</guid>
		<description>Uh, last time I checked, don&#039;t you actually post to a blog anyway from within Firefox or IE anyway? Why is this so special?</description>
		<content:encoded><![CDATA[<p>Uh, last time I checked, don&#8217;t you actually post to a blog anyway from within Firefox or IE anyway? Why is this so special?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Milo</title>
		<link>http://blog.miloco.com/2006/03/deepest-sender-firefox-plugin.html/comment-page-1#comment-120</link>
		<dc:creator>Andrew Milo</dc:creator>
		<pubDate>Wed, 08 Mar 2006 02:55:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.miloco.myblogstorage.net/?p=85#comment-120</guid>
		<description>Well, I don&#039;t think so actually, but thanks for mentioning it... :)

It does indeed publish the post, but still hangs sometime. I think it has to do with the update pings to technorati, etc.

Wordpress is a bit different that MT in that it doesn&#039;t actually write out any HTML files, like MT and Blogger do. Its all database driven and each page is &quot;created&quot; on the fly so to speak.

The cron job that you are speaking of is simply a scheduler - like &quot;cronology&quot;. Windows would do the same thing with a &quot;Scheduled task&quot;. Forgive me if I&#039;m telling you things that you know. :)

Cron is basically a &quot;daemon&quot; - an always running process - that executes queued commands at specified times. These commands are stored in whats called a crontab file - basically a tabulated file of chronicled jobs.

If you have shell access, you can do this:

% crontab -e

This will have you editing your cron file.  BTW - the % is just meant to represent your shell prompt, you don&#039;t actually type that.  Your shell prompt may look like a filespec &quot;~/home&gt;&quot; or even a the machine&#039;s name &quot;grouchy&gt;&quot; or something similar.

Anyway, once you are in the crontab file, put in:

0,15,30,45 * * * * cd (path to mt); ./tools/run-periodic-tasks

This will republish your blog every 15 minutes at 0,15,30 and 45 past the hour. The astericks are just wildcards for hour, day, week and month.

If you only wanted to do it every half-hour, you could just do:

0,30 * * * * cd (path to mt); ./tools/run-periodic-tasks

That should do it at :00 and :30 each hour of each day, etc.

If you don&#039;t have shell access, you probably have some kind of control panel that allows you to setup a schedule for crontab jobs. Using that control panel, you would select the schedule that you want and then put:

cd (path to mt); ./tools/run-periodic-tasks

as the command that you want to run at the scheduled times.

Anyway, again, sorry if I&#039;m telling you stuff you know. :)

Good luck, and thanks!

-A</description>
		<content:encoded><![CDATA[<p>Well, I don&#8217;t think so actually, but thanks for mentioning it&#8230; <img src='http://blog.miloco.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>It does indeed publish the post, but still hangs sometime. I think it has to do with the update pings to technorati, etc.</p>
<p>Wordpress is a bit different that MT in that it doesn&#8217;t actually write out any HTML files, like MT and Blogger do. Its all database driven and each page is &#8220;created&#8221; on the fly so to speak.</p>
<p>The cron job that you are speaking of is simply a scheduler &#8211; like &#8220;cronology&#8221;. Windows would do the same thing with a &#8220;Scheduled task&#8221;. Forgive me if I&#8217;m telling you things that you know. <img src='http://blog.miloco.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Cron is basically a &#8220;daemon&#8221; &#8211; an always running process &#8211; that executes queued commands at specified times. These commands are stored in whats called a crontab file &#8211; basically a tabulated file of chronicled jobs.</p>
<p>If you have shell access, you can do this:</p>
<p>% crontab -e</p>
<p>This will have you editing your cron file.  BTW &#8211; the % is just meant to represent your shell prompt, you don&#8217;t actually type that.  Your shell prompt may look like a filespec &#8220;~/home>&#8221; or even a the machine&#8217;s name &#8220;grouchy>&#8221; or something similar.</p>
<p>Anyway, once you are in the crontab file, put in:</p>
<p>0,15,30,45 * * * * cd (path to mt); ./tools/run-periodic-tasks</p>
<p>This will republish your blog every 15 minutes at 0,15,30 and 45 past the hour. The astericks are just wildcards for hour, day, week and month.</p>
<p>If you only wanted to do it every half-hour, you could just do:</p>
<p>0,30 * * * * cd (path to mt); ./tools/run-periodic-tasks</p>
<p>That should do it at :00 and :30 each hour of each day, etc.</p>
<p>If you don&#8217;t have shell access, you probably have some kind of control panel that allows you to setup a schedule for crontab jobs. Using that control panel, you would select the schedule that you want and then put:</p>
<p>cd (path to mt); ./tools/run-periodic-tasks</p>
<p>as the command that you want to run at the scheduled times.</p>
<p>Anyway, again, sorry if I&#8217;m telling you stuff you know. <img src='http://blog.miloco.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Good luck, and thanks!</p>
<p>-A</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Linoge</title>
		<link>http://blog.miloco.com/2006/03/deepest-sender-firefox-plugin.html/comment-page-1#comment-119</link>
		<dc:creator>Linoge</dc:creator>
		<pubDate>Wed, 08 Mar 2006 02:06:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.miloco.myblogstorage.net/?p=85#comment-119</guid>
		<description>It could have something to do with how WordPress actually posts the writings...  I know that Movable Type has a similar plugin, but it only puts the post in the system, it does not actually publish it.  Publishing requires the implementation of a cron job (something I do not fully understand at the moment, so have not used :) ) to execute the &quot;rebuild your site&quot; command from time to time.  Could be the same way with this system, but I honestly do not know.  :)</description>
		<content:encoded><![CDATA[<p>It could have something to do with how WordPress actually posts the writings&#8230;  I know that Movable Type has a similar plugin, but it only puts the post in the system, it does not actually publish it.  Publishing requires the implementation of a cron job (something I do not fully understand at the moment, so have not used <img src='http://blog.miloco.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ) to execute the &#8220;rebuild your site&#8221; command from time to time.  Could be the same way with this system, but I honestly do not know.  <img src='http://blog.miloco.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

