<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Everything is Crap &#187; wordpress</title>
	<atom:link href="http://everythingiscrap.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://everythingiscrap.com</link>
	<description>Notes on the crap we&#039;ve been subjected to</description>
	<lastBuildDate>Wed, 02 May 2012 15:33:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Random Posts in WordPress</title>
		<link>http://everythingiscrap.com/random-posts-in-wordpress/</link>
		<comments>http://everythingiscrap.com/random-posts-in-wordpress/#comments</comments>
		<pubDate>Mon, 14 Feb 2011 14:24:43 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.everythingiscrap.com/?p=729</guid>
		<description><![CDATA[Okay, there are plenty of places online with instructions on randomizing posts in WordPress; even WordPress tells how. But here's my version along with the code I used. Basically, I randomized the loop, and this required replacing the standard loop like this: Replace&#8230; with&#8230; That worked for me. (note: setup_postdata() prepares the $post array as [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-medium wp-image-730 alignnone" title="Dice Illusion" src="http://www.everythingiscrap.com/wp-content/uploads/2011/02/3625_1813_dice-illusion-298x300.jpg" alt="" width="298" height="300" /></p>
<p>Okay, there are plenty of places online with instructions on randomizing posts in WordPress; even <a href="http://codex.wordpress.org/Template_Tags/get_posts">WordPress tells how</a>. But here's my version along with the code I used.</p>
<p>Basically, I randomized the loop, and this required replacing the standard loop like this:</p>
<p>Replace&#8230;</p>
<p><code>while (have_posts()) : the_post(); 
... 
endwhile;</code></p>
<p>with&#8230;<br />
<code>$pdh_args = array( &#039;numberposts&#039; =&gt; 30, &#039;orderby&#039; =&gt; &#039;rand&#039; );
$rand_posts = get_posts( $pdh_args );
foreach ( $rand_posts as $post ) : setup_postdata($post);
...
endforeach;<!--formatted--></code></p>
<p>That worked for me. (note: setup_postdata() prepares the $post array as if it had been part of a standard loop, and the code did not work without it)</p>
]]></content:encoded>
			<wfw:commentRss>http://everythingiscrap.com/random-posts-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Curly quotes and WordPress permalinks don&#039;t mix</title>
		<link>http://everythingiscrap.com/curly-quotes-and-wordpress-permalinks-dont-mix/</link>
		<comments>http://everythingiscrap.com/curly-quotes-and-wordpress-permalinks-dont-mix/#comments</comments>
		<pubDate>Tue, 25 Jan 2011 14:23:54 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.everythingiscrap.com/?p=721</guid>
		<description><![CDATA[Sometimes curly quotes get copied and pasted into the title of our blog and WordPress just can't handle it. The problem lies in the permalinks and manually editing the permalink to get rid of curly quotes fixes it (but what a pain). In my search for an automated solution I discovered no hooks into this [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-725" title="Curly Quotes" src="http://everythingiscrap.com/wp-content/uploads/2011/01/Screen-shot-2011-01-25-at-9.02.40-AM.png" alt="Curly Quotes" width="213" height="84" />Sometimes curly quotes get copied and pasted into the title of our blog and WordPress just can't handle it. The problem lies in the permalinks and manually editing the permalink to get rid of curly quotes fixes it (but what a pain). In my search for an automated solution I discovered  no hooks into this aspect of WordPress and, therefore, no plugins that handle it.</p>
<p>The solution involves editing WordPress code. I'm not a fan of this and I wish there were another way, but if there is, I haven't found it.</p>
<p>This solution I discovered in a <a href="http://wordpress.org/support/topic/slug-includes-non-ascii-characters">conversation that ericr23 had with himself</a>.</p>
<p>Add this to sanitize_title_with_dashes in wp-include/formatting.php:</p>
<p><code>$title = preg_replace(&amp;#039;/[“”‘’]/&amp;#039;, &amp;#039;&amp;#039;, $title); //delete curly quotes
$title = preg_replace(&amp;#039;/[–—]/&amp;#039;, &amp;#039;-&amp;#039;, $title); //en- and em-dash to hyphen<!--formatted--></code></p>
<p>Permalinks sanitized! And we could all do with a little more sanitation, right? We could do with some more sanity too!</p>
]]></content:encoded>
			<wfw:commentRss>http://everythingiscrap.com/curly-quotes-and-wordpress-permalinks-dont-mix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If you want to use Sendmail, install it, dummy!</title>
		<link>http://everythingiscrap.com/installing-sendmail/</link>
		<comments>http://everythingiscrap.com/installing-sendmail/#comments</comments>
		<pubDate>Thu, 18 Nov 2010 16:14:46 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[sendmail]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.everythingiscrap.com/?p=667</guid>
		<description><![CDATA[Right&#8230;I must have forgotten to install sendmail, because mail wasn't working for WordPress. First, to verify that sendmail wasn't working I ran this PHP script (thanks to phpeasystep.com) That confirmed it. And the fix was easy: Doing this exposed a flaw in my hosts file and ZYXware.com had the answer sudo gedit /etc/hosts &#8230; 127.0.0.1 [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://everythingiscrap.com/wp-content/uploads/2010/11/Sendmail-Inc.png" alt="" title="Sendmail Inc" width="240" height="35" class="alignnone size-full wp-image-668" /></p>
<p>Right&#8230;I must have forgotten to install sendmail, because mail wasn't working for WordPress. First, to verify that sendmail wasn't working I ran this PHP script (<a href="http://www.phpeasystep.com/phptu/23.html">thanks to phpeasystep.com</a>)</p>
<p><code>&lt;?
// send e-mail to ...
$to=&quot;me@localhost&quot;;

// Your subject
$subject=&quot;Test&quot;;

// From
$header=&quot;from: your name &lt;your email&gt;&quot;;

// Your message
$message=&quot;Hello rn&quot;;
$message.=&quot;This is testrn&quot;;
$message.=&quot;Test again &quot;;

// send email
$sentmail = mail($to,$subject,$message,$header);

// if your email succesfully sent
if($sentmail){
echo &quot;Email Has Been Sent .&quot;;
}
else {
echo &quot;Cannot Send Email &quot;;
}

?&gt;<!--formatted--></code></p>
<p>That confirmed it. And the fix was easy:</p>
<p><code>apt-get install sendmail</code><br />
Doing this exposed a flaw in my hosts file and <a href="http://www.zyxware.com/articles/641/fixed-ubuntu-startup-slows-down-at-starting-mail-transport-agent-mta-sendmail">ZYXware.com had the answer</a></p>
<blockquote><p>
sudo gedit /etc/hosts<br />
&#8230;<br />
127.0.0.1	localhost.localdomain	localhost<br />
127.0.1.1	zyxware01.localdomain zyxware01<br />
&#8230;<br />
If you have a static IP you can replace 127.0.1.1 with your static IP.<br />
&#8230;
</p></blockquote>
<p>So, now mail works from php and, more importantly, WordPress.</p>
<p>[EDIT]<br />
Sheesh&#8230;Ubuntu is picky. Here's (almost) exactly what I have for the top half of my hosts file<br />
<code>127.0.0.1    myhostname    localhost.localdomain    localhost
::1    myhostname    localhost6.localdomain6    localhost6
127.0.1.1    myhostname
192.168.1.100    myhostname.mydomain.com
</code></p>
<p>The spaces are actually tabs, I don't know if it matters. </p>
<p>I also don't know what is needed and what is not, but I mimicked this layout on a new server and it worked; the MTA blah-blah service no longer takes forever and sendmail works nice and quickly.<br />
[/EDIT]</p>
]]></content:encoded>
			<wfw:commentRss>http://everythingiscrap.com/installing-sendmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hrmph, you mean GD wasn&#039;t installed?</title>
		<link>http://everythingiscrap.com/hrmph-you-mean-gd-wasnt-installed/</link>
		<comments>http://everythingiscrap.com/hrmph-you-mean-gd-wasnt-installed/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 14:03:22 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.everythingiscrap.com/?p=590</guid>
		<description><![CDATA[I couldn't embed thumbnail sizes on my new WordPress install on my new Ubuntu server; I could only embed the original size (which was 3072&#215;2048). The options to embed other sizes were just grayed out. It turns out that the default LAMP install doesn't include php-gd, the graphics library that creates thumbnails. Well&#8230; I guess [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://everythingiscrap.com/wp-content/uploads/2010/07/WordPress.jpg" alt="" title="WordPress" width="316" height="73" class="alignnone size-full wp-image-591" /></p>
<p>I couldn't embed thumbnail sizes on my new WordPress install on my new Ubuntu server; I could only embed the original size (which was 3072&#215;2048). The options to embed other sizes were just grayed out. It turns out that the default LAMP install doesn't include php-gd, the graphics library that creates thumbnails. Well&#8230; <a href="http://wordpress.org/support/topic/199390?replies=3">I guess that's easy enough to fix</a>:</p>
<blockquote><p>apt-get install php5-gd</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://everythingiscrap.com/hrmph-you-mean-gd-wasnt-installed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#039;s not &quot;stealing&quot; (my new, stolen code wrapping technique)</title>
		<link>http://everythingiscrap.com/its-not-stealing/</link>
		<comments>http://everythingiscrap.com/its-not-stealing/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 19:15:16 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.everythingiscrap.com/?p=553</guid>
		<description><![CDATA[I've heard it said that if you copy from only one source then it's called plagiarism, but if you copy from multiple sources then it's called research. Well, by researching Jeff Atwood's Coding Horror blog I found a great, simple way to frame code on Everything is Crap. First, the CSS: Then the Plugins&#8230; Raw [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.codinghorror.com/blog/"><img src="http://everythingiscrap.com/wp-content/uploads/2010/06/I-3-Steve-McConnell.png" alt="" title="I 3 Steve McConnell" width="100" height="91" class="alignnone size-full wp-image-554" /></a><br />
I've heard it said that if you copy from only one source then it's called plagiarism, but if you copy from multiple sources then it's called research. Well, by researching <a href="http://www.codinghorror.com/">Jeff Atwood's Coding Horror blog</a> I found a great, simple way to frame code on Everything is Crap.</p>
<p>First, the CSS:<br />
<code>code {
  border:2px silver dotted;
  font-size:100%;
  line-height:100%;
  margin:0px auto 0px auto;
  max-height:450px;
  overflow:auto;
  padding:5px 5px 5px 5px;
  width:95%;
  display:block;
  font-family:monospace;
  white-space:pre;
}</code></p>
<p>Then the Plugins&#8230;</p>
<p><a href="http://w-shadow.com/blog/2007/12/13/raw-html-in-wordpress/">Raw HTML capability by Janis Elsts</a><br />
<a href="http://scott.sherrillmix.com/blog/blogger/wp_codeshield/">WP_CodeShield by Scott Sherrill-Mix</a></p>
<p>Wrap code section in&#8230;</p>
<p>&#91;RAW&#93;&lt;code&gt; &#8230; &lt;/code&gt;&#91;/RAW&#93; </p>
<p>&#8230;and you're in business.</p>
<p>P.S. Incidentally, Jeff Atwood is the spiritual inspiration for the motto and title of this site, Everything is Crap. Years ago he helped me realize that <a href="http://www.codinghorror.com/blog/2004/10/we-make-shitty-software-with-bugs.html">all the code I ever wrote is crap</a> and the best I can hope for is to make it less crappy as time goes by. Over time I've come to realize that most aspects of daily life are total crap as well, thus this blog was born.</p>
]]></content:encoded>
			<wfw:commentRss>http://everythingiscrap.com/its-not-stealing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yes, I think I will have an Ubuntu</title>
		<link>http://everythingiscrap.com/yes-i-think-i-will-have-an-ubuntu/</link>
		<comments>http://everythingiscrap.com/yes-i-think-i-will-have-an-ubuntu/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 16:40:04 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.everythingiscrap.com/?p=498</guid>
		<description><![CDATA[After flirting with Windows as a WordPress server we've realized that, since we went to the trouble of learning Linux, it's now easier to use Linux. So, Everything is Crap is back to Ubuntu and it's delicious. Would you like an Ubuntu? You might want some milk to help wash it down.]]></description>
			<content:encoded><![CDATA[<p><img src="http://everythingiscrap.com/wp-content/uploads/2010/06/DSC00379-320-12.jpg" alt="" title="DSC00379-320-12" width="320" height="240" class="alignnone size-full wp-image-499" /></p>
<p>After flirting with Windows as a WordPress server we've realized that, since we went to the trouble of learning Linux, it's now easier to use Linux. So, Everything is Crap is back to Ubuntu and it's delicious.</p>
<p>Would you like an Ubuntu? <a href="http://www.everythingiscrap.com/2010/01/21/turnkey-linux/">You might want some milk to help wash it down.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://everythingiscrap.com/yes-i-think-i-will-have-an-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixed slow Ubuntu in Hyper-V</title>
		<link>http://everythingiscrap.com/fixed-slow-ubuntu-in-hyper-v/</link>
		<comments>http://everythingiscrap.com/fixed-slow-ubuntu-in-hyper-v/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 16:35:32 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[hyper-v]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://everythingiscrap.com/?p=492</guid>
		<description><![CDATA[So, Windows doesn't work well for WordPress. The more plug-ins I install, the more I realize that the world of WordPress is still a Linux-based world. We'll keep Everything is Crap on Windows because our needs are simple for this blog. But, in the future, all my WordPress are belong to Ubuntu. But, because Everything [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://everythingiscrap.com/wp-content/uploads/2010/06/ubuntu-910-vs-windows-7-300x183.jpg" alt="" title="ubuntu-910-vs-windows-7-300x183" width="300" height="183" class="alignnone size-full wp-image-493" /><br />
So, Windows doesn't work well for WordPress. The more plug-ins I install, the more I realize that the world of WordPress is still a Linux-based world. We'll keep Everything is Crap on Windows because our needs are simple for this blog. But, in the future, all my WordPress are belong to Ubuntu.</p>
<p>But, because Everything is Crap, Ubuntu has problems too. Specifically, the shiny and new Ubuntu 10.04 Server running on Hyper-V R2 is unusably slow. But, just on the console. Attaching via SSH works as quick as ever. Anyway, here's the fix:</p>
<blockquote><p>edit /etc/modprobe.d/blacklist-framebuffer.conf and add the following line:<br />
blacklist vga16fb</p></blockquote>
<p><a href="http://solyaris.wordpress.com/2010/05/01/ubuntu-10-04-on-intel-driver-and-server-frame-buffer/">This guy fixed the Ubuntu slow console frame buffer problem for Hyper-V and Ubuntu 10.04.</a> Thanks guy!</p>
]]></content:encoded>
			<wfw:commentRss>http://everythingiscrap.com/fixed-slow-ubuntu-in-hyper-v/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Uploads on Windows 2003/IIS6</title>
		<link>http://everythingiscrap.com/wordpress-uploads-on-windows-2003iis6/</link>
		<comments>http://everythingiscrap.com/wordpress-uploads-on-windows-2003iis6/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 17:56:22 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://everythingiscrap.com/?p=484</guid>
		<description><![CDATA[I hit another snag moving WordPress to Windows 2003/IIS6; media uploads don't work. (Interestingly, this doesn't seem to be a problem with Windows 2008/IIS7.) The fix involves creating a temp folder, as Joseph Scott's blog explains: Edit upload_tmp_dir option in php.ini. In my case I created an uploads folder in the wwwroot: upload_tmp_dir = "c:inetpubwwwrootuploads" [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://everythingiscrap.com/wp-content/uploads/2009/12/wordpress-250x2501.png" alt="" title="WordPress" width="250" height="250" class="alignnone size-full wp-image-162" /></p>
<p>I hit another snag moving WordPress to Windows 2003/IIS6; media uploads don't work. (Interestingly, this doesn't seem to be a problem with Windows 2008/IIS7.) The fix involves creating a temp folder, as <a href="http://joseph.randomnetworks.com/archives/2007/09/04/wordpress-file-uploads-with-iis/">Joseph Scott's blog explains</a>:</p>
<blockquote>
<ul>
<li>Edit upload_tmp_dir option in php.ini. In my case I created an uploads folder in the wwwroot: upload_tmp_dir = "c:inetpubwwwrootuploads"</li>
<li>Create the c:inetpubwwwrootuploads folder and grant the IUSR full control of it</li>
<li>Create the uploads folder in your wp-content folder, for me this was in c:inetpubwwwrootwordpress-trunkwp-contentsuploads, then grant the IUSR full control of it</li>
<li>Restart the IIS service (to pick up the php.ini change)</li>
</ul>
</blockquote>
<p>That fixed the problem for me.</p>
]]></content:encoded>
			<wfw:commentRss>http://everythingiscrap.com/wordpress-uploads-on-windows-2003iis6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mod_rewrite for IIS6 and IIS7</title>
		<link>http://everythingiscrap.com/mod_rewrite-for-iis6-and-iis7/</link>
		<comments>http://everythingiscrap.com/mod_rewrite-for-iis6-and-iis7/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 17:54:09 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://everythingiscrap.com/?p=481</guid>
		<description><![CDATA[One of the most famous pains-in-the-neck associated with installing WordPress is getting the Apache mod_rewrite to work. It's not automatic. I've talked about mod_rewrite already in a previous post, but I recently moved to a Windows WordPress installation, and that changes things. In Windows Server 2008/IIS7, WordPress tells you what you need to do. If [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://everythingiscrap.com/wp-content/uploads/2010/06/feather.gif" alt="" title="feather" width="356" height="107" class="alignnone size-full wp-image-482" /></p>
<p>One of the most famous pains-in-the-neck associated with installing WordPress is getting the Apache mod_rewrite to work. It's not automatic. I've talked about mod_rewrite already in a <a href="/how-to-enable-mod_rewrite-in-wordpress/">previous post</a>, but I recently moved to a Windows WordPress installation, and that changes things.</p>
<p>In Windows Server 2008/IIS7, WordPress tells you what you need to do. If you go to the Permalinks section of Settings in WordPress, and you try to change how your permalinks appear, then it tells you to copy and paste the code that it displays into your web.config file. This is great, and a really strong reason to upgrade to Windows Server 2008.</p>
<p>But, since this blog has no budget, we've had to make Windows Server 2003 work. KyleCaulfield.com has a page that explains everything that you have to do to<a href="http://www.kylecaulfield.com/permalink-for-wordpress-iis-6-mod_rewrite-fixed-free"> get mod_rewrite working for Windows Server 2003/IIS6</a>. Works for us!</p>
]]></content:encoded>
			<wfw:commentRss>http://everythingiscrap.com/mod_rewrite-for-iis6-and-iis7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automated IIS WordPress Installer from Microsoft</title>
		<link>http://everythingiscrap.com/automated-iis-wordpress-installer-from-microsoft/</link>
		<comments>http://everythingiscrap.com/automated-iis-wordpress-installer-from-microsoft/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 15:51:44 +0000</pubDate>
		<dc:creator>paul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[utilities]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://everythingiscrap.com/?p=477</guid>
		<description><![CDATA[Now that I know how to do it, I'm getting fed up with LAMP as a web platform. I much prefer Windows. (What can I say? I'm a Windows guy!) And I recently stumbled into the Microsoft Web Platform Installer. It makes installing WordPress embarrassingly simple. Just run the installer and it does everything for [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://everythingiscrap.com/wp-content/uploads/2010/06/web.png" alt="" title="web" width="256" height="256" class="alignnone size-full wp-image-478" /></p>
<p>Now that I know how to do it, I'm getting fed up with LAMP as a web platform. I much prefer Windows. (What can I say? I'm a Windows guy!) And I recently stumbled into the <a href="http://www.microsoft.com/web/downloads/platform.aspx">Microsoft Web Platform Installer</a>. It makes installing WordPress embarrassingly simple. Just run the installer and it does <em>everything</em> for you. For instance: I made a website in IIS, then ran the installer and it&#8230;</p>
<ul>
<li>installed PHP,</li>
<li>installed MySQL,</li>
<li>installed WordPress,</li>
<li>and installed a couple other bits and pieces for IIS.</li>
</ul>
<p>From what I understand, it would have installed IIS if it wasn't already installed. And that's not all it installs either: Joomla, Umbraco, phpBB, DotNetNuke, MS SQL Express, and a lot of others. It's great and, more importantly, it <em>works.</em> With the Web Platform Installer I've gone from barely being able to get WordPress to work on Windows/IIS to stupidly simple installs that take about 5 minutes. Literally! It's great!</p>
]]></content:encoded>
			<wfw:commentRss>http://everythingiscrap.com/automated-iis-wordpress-installer-from-microsoft/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

