<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

	<title>Comments on: How can I make my website update itself automatically?</title>
	<link>http://ask.metafilter.com/233368/How-can-I-make-my-website-update-itself-automatically/</link>
	<description>Comments on Ask MetaFilter post How can I make my website update itself automatically?</description>
	<pubDate>Thu, 17 Jan 2013 12:35:43 -0800</pubDate>
	<lastBuildDate>Thu, 17 Jan 2013 12:39:24 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: How can I make my website update itself automatically?</title>
		<link>http://ask.metafilter.com/233368/How-can-I-make-my-website-update-itself-automatically</link>	
		<description>I&apos;m creating a simple website. It will be a single page with a photograph and a block of text. I will need to update it with a new photograph and a new block of text at a certain time each day, say midnight. I anticipate being able to do this manually most of the time, but would like an option to somehow pre-load at least one photo and text block and have the site automatically update if needed. It would also be great to have multiple days&apos; worth ready to go without human intervention. &lt;br /&gt;&lt;br /&gt; More info:&lt;br&gt;
- I can do this in Dreameaver on a hosted domain, or use Wordpress, or whatever solution works. &lt;br&gt;
- I&apos;m not a code-monkey, but have no problem with cutting and pasting code, editing parameters, etc. &lt;br&gt;
- I don&apos;t care if the solution involves &quot;bouncing&quot; the main URL to a date-specific one. (For example: www.mysite.com bounces to www.mysite.com/013113.htm at a specific time on January 13.) &lt;br&gt;
- This doesn&apos;t have to be fancy or clever; I value simplicity and sustainability. &lt;br&gt;
- I don&apos;t  mind if the best solution requires a purchase.&lt;br&gt;
- By &quot;automatic&quot; I don&apos;t mean I pay someone to do it for me; I can already do that.&lt;br&gt;
&lt;br&gt;
Thanks in advance!</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2013:site.233368</guid>
		<pubDate>Thu, 17 Jan 2013 12:35:43 -0800</pubDate>
		<dc:creator>The Deej</dc:creator>
		
			<category>webdesign</category>
		
			<category>automaticupdate</category>
		
			<category>timebasedupdate</category>
		
			<category>website</category>
		
	</item>
	<item>
		<title>By: matcha action</title>
		<link>http://ask.metafilter.com/233368/How-can-I-make-my-website-update-itself-automatically#3379972</link>	
		<description>Wordpress works for this- you can set publish dates on any post. Write it, save it, but set the post date/time to whenever you want in the future.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2013:site.233368-3379972</guid>
		<pubDate>Thu, 17 Jan 2013 12:39:24 -0800</pubDate>
		<dc:creator>matcha action</dc:creator>
	</item><item>
		<title>By: wierdo</title>
		<link>http://ask.metafilter.com/233368/How-can-I-make-my-website-update-itself-automatically#3380007</link>	
		<description>If your web host allows cron use and simple shell scripts, it shouldn&apos;t be hard at all. Just schedule a cron job that runs a script that makes &quot;today&apos;s&quot; page the index page. Whether you find Wordpress simpler depends on what exactly you mean by &quot;simplicity&quot;. It would definitely be simpler to set up, although it would also have vastly more in the way of moving parts.&lt;br&gt;
&lt;br&gt;
You could then upload 013113.html to the server at any time you like before the day itself and the cron job will take care of the rest.&lt;br&gt;
&lt;br&gt;
A script something like this might work:&lt;br&gt;
&lt;blockquote&gt;#!/bin/sh&lt;br&gt;
&lt;br&gt;
FILENAME=`date +%y%m%d`.html&lt;br&gt;
WEBROOT=&quot;/your/www/root&quot;&lt;br&gt;
&lt;br&gt;
rm ${WEBROOT}/index.html&lt;br&gt;
&lt;br&gt;
if [ -f ${WEBROOT}/${FILENAME} ]; then&lt;br&gt;
&amp;nbsp;&amp;nbsp;ln -s ${WEBROOT}/${FILENAME} ${WEBROOT}/index.html&lt;br&gt;
else&lt;br&gt;
&amp;nbsp;&amp;nbsp;ln -s ${WEBROOT}/error.html ${WEBROOT}/index.html&lt;br&gt;
fi&lt;/blockquote&gt;&lt;br&gt;
&lt;br&gt;
Set it to run 5 minutes after midnight every day and your page will be updated each day. Plus you have all your old pages archived automagically. Obviously, a CMS will be better for many uses, but if you really don&apos;t want/need one, this should do. I may well have typoed something. MeMail me if you want to use it and have trouble.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2013:site.233368-3380007</guid>
		<pubDate>Thu, 17 Jan 2013 12:55:57 -0800</pubDate>
		<dc:creator>wierdo</dc:creator>
	</item><item>
		<title>By: desjardins</title>
		<link>http://ask.metafilter.com/233368/How-can-I-make-my-website-update-itself-automatically#3380153</link>	
		<description>The simplest route would be tumblr. You can queue posts and schedule them to go live at a specific time, or X hours apart.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2013:site.233368-3380153</guid>
		<pubDate>Thu, 17 Jan 2013 14:30:34 -0800</pubDate>
		<dc:creator>desjardins</dc:creator>
	</item><item>
		<title>By: belladonna</title>
		<link>http://ask.metafilter.com/233368/How-can-I-make-my-website-update-itself-automatically#3380194</link>	
		<description>With Wordpress, just set a bunch of posts to publish at specific times, then have your homepage set to display just your most recent post. No need to bounce people to other URLs.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2013:site.233368-3380194</guid>
		<pubDate>Thu, 17 Jan 2013 14:54:14 -0800</pubDate>
		<dc:creator>belladonna</dc:creator>
	</item><item>
		<title>By: any portmanteau in a storm</title>
		<link>http://ask.metafilter.com/233368/How-can-I-make-my-website-update-itself-automatically#3380397</link>	
		<description>I think the OP is looking to make a queue of backup posts so that on the off days he isn&apos;t able to update his website the site will update itself with one of them.&lt;br&gt;
&lt;br&gt;
If that is the case then this wordpress plugin: &lt;a href=&quot;http://wordpress.org/extend/plugins/automatic-post-scheduler/&quot;&gt;http://wordpress.org/extend/plugins/automatic-post-scheduler/&lt;/a&gt; sounds like it may do the job. From its description:&lt;br&gt;
&lt;br&gt;
A plugin that automatically schedules posts depending on a min/max threshold and the last post&apos;s publish date and time.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2013:site.233368-3380397</guid>
		<pubDate>Thu, 17 Jan 2013 19:06:11 -0800</pubDate>
		<dc:creator>any portmanteau in a storm</dc:creator>
	</item><item>
		<title>By: matcha action</title>
		<link>http://ask.metafilter.com/233368/How-can-I-make-my-website-update-itself-automatically#3380416</link>	
		<description>Re: Wordpress: you don&apos;t even need a plugin, Wordpress supports it right &apos;out of the box&apos;.  From the support page:&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://en.support.wordpress.com/posts/schedule-a-post/&quot;&gt;&quot;You can schedule blog posts to automatically publish themselves at any time in the future. &quot;&lt;/a&gt;</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2013:site.233368-3380416</guid>
		<pubDate>Thu, 17 Jan 2013 19:28:59 -0800</pubDate>
		<dc:creator>matcha action</dc:creator>
	</item><item>
		<title>By: The Deej</title>
		<link>http://ask.metafilter.com/233368/How-can-I-make-my-website-update-itself-automatically#3380458</link>	
		<description>Thanks everyone! I&apos;ll look into which solution works best for my needs. Looks like I have several options.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2013:site.233368-3380458</guid>
		<pubDate>Thu, 17 Jan 2013 20:01:33 -0800</pubDate>
		<dc:creator>The Deej</dc:creator>
	</item><item>
		<title>By: The Deej</title>
		<link>http://ask.metafilter.com/233368/How-can-I-make-my-website-update-itself-automatically#3390076</link>	
		<description>I&apos;ve finally had time to get hands-on with your answers. &lt;br&gt;
&lt;br&gt;
I&apos;ll be using the Wordpress solution, because I&apos;m familiar with WP and can deploy it on my own domain. Despite having used it for many years, I had no clue about the scheduled publishing, and obviously my pre-AskMe Google attempts were futile.&lt;br&gt;
&lt;br&gt;
I&apos;m marking the tumblr answer as best answer as well. Tumblr will not be my main site for this project, but I will set up an automated tumblr that will link to my main site. That answer also reminded me that I never did set up a tumblr under the name I use for my photography, so thanks for that!</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2013:site.233368-3390076</guid>
		<pubDate>Sun, 27 Jan 2013 09:33:00 -0800</pubDate>
		<dc:creator>The Deej</dc:creator>
	</item><item>
		<title>By: The Deej</title>
		<link>http://ask.metafilter.com/233368/How-can-I-make-my-website-update-itself-automatically#3412845</link>	
		<description>Update for posterity:&lt;br&gt;
&lt;br&gt;
Although the Wordpress auto-update answer is technically the best, so far I have not gotten it to work for me. Google tells me I am not the only one. I&apos;ll keep trying to work this out and report back if I solve it. (I won&apos;t go into details here; I&apos;ll create a separate AskMe if needed.)&lt;br&gt;
&lt;br&gt;
However, until I can get it to work truly automatically, Wordpress is still my choice because I can create a bunch of posts in advance, and publish them from my iPhone or iPad with just a click or two.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2013:site.233368-3412845</guid>
		<pubDate>Mon, 18 Feb 2013 17:32:11 -0800</pubDate>
		<dc:creator>The Deej</dc:creator>
	</item>
	</channel>
</rss>
