<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Smitty's Blog</title>
	<atom:link href="http://smittysblog.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://smittysblog.wordpress.com</link>
	<description>Genius is keeping things simple...but Crazy is sometimes more fun!</description>
	<lastBuildDate>Tue, 19 Feb 2008 14:53:05 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='smittysblog.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/69de142aed99c017b0d738d20cbb0f81?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Smitty's Blog</title>
		<link>http://smittysblog.wordpress.com</link>
	</image>
			<item>
		<title>How to install PHP on Apache running under Vista</title>
		<link>http://smittysblog.wordpress.com/2008/02/19/how-to-install-php-on-apache-running-under-vista/</link>
		<comments>http://smittysblog.wordpress.com/2008/02/19/how-to-install-php-on-apache-running-under-vista/#comments</comments>
		<pubDate>Tue, 19 Feb 2008 01:35:00 +0000</pubDate>
		<dc:creator>smittysblog</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[install php]]></category>
		<category><![CDATA[install vista]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[vista]]></category>

		<guid isPermaLink="false">http://smittysblog.wordpress.com/?p=6</guid>
		<description><![CDATA[After finally getting Apache running on Vista after some serious brain dramage, I moved on to getting PHP running&#8230; certainly better than Apache, but only because of some helpful instructions from others&#8230; 
More incredible thanks to:
http://senese.wordpress.com/2007/06/06/install-php-5-under-apache-22-and-windows-vista/#comment-262,
 However, after carefully following the instructions, and reading thru the comments, I still had a big issue: 
I couldn&#8217;t get the php test ( phpinfo [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=smittysblog.wordpress.com&blog=2906432&post=6&subd=smittysblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>After finally getting Apache running on Vista after some serious brain dramage, I moved on to getting PHP running&#8230; certainly better than Apache, but only because of some helpful instructions from others&#8230; </p>
<p>More incredible thanks to:<br />
<a href="http://senese.wordpress.com/2007/06/06/install-php-5-under-apache-22-and-windows-vista/#comment-262">http://senese.wordpress.com/2007/06/06/install-php-5-under-apache-22-and-windows-vista/#comment-262</a>,</p>
<p> However, after carefully following the instructions, and reading thru the comments, I still had a big issue: </p>
<p>I couldn&#8217;t get the php test ( phpinfo ) page to come up! I was getting an HTTP 500 error (internal server error) and finally decided to try one of the wierd fixes suggested on the post above. It worked!</p>
<p>Joe Orr’s suggestion to add a backslash to the end of the ini path fixed the problem! Seems kinda lame to me, but change</p>
<p>PHPIniDir “C:\PHP”<br />
to<br />
PHPIniDir “C:\PHP\”</p>
<p><em>UPDATE:So, it appeared everything was fine after the ending backslash was added&#8230; php loaded and I could successfully see the phpinfo page. However, for the next step, when I wanted to get mySQL loaded, it was apparent something was still seriously wrong. When examining the phpinfo page, I could not find the mySQL module loaded (or for that matter, any of the other extensions that should have).</em></p>
<p><em> I carefully looked at the Apache configuration file, and the PHPIniDir was specified correctly as above, and the the php.ini file had the correct entries for mySQL:</em></p>
<p><em>extension=php_gd2.dll<br />
extension=php_mysql.dll<br />
extension=php_mysqli.dll</em></p>
<p><em> After some hunting around I found some suggestions to look at the path that php was actually using &#8211; </em></p>
<p><em>at the very top of the phpinfo page there is an entry for Configuration  File (php.ini) Path. My showed &#8221;C:\Windows&#8221;.  Right below it is an entry for &#8220;Loaded Configuration File&#8221; which also showed C:\Windows. Definitely not good. </em></p>
<p><em>Additionally, I checked the entry in the php core section  of the phpinfo page for &#8220;extension_dir&#8221; and it showed &#8220;c:\php5&#8243;. Also not good!</em></p>
<p><em>The solution? I know this sounds incredulous, but you have to change the Apache config file to have forward slashes! </em></p>
<p><em>So rather than use: <br />
PHPIniDir &#8220;c:\php\&#8221;</em></p>
<p><em>use : </em></p>
<p><em>PHPIniDir &#8220;c:/php/&#8221; </em></p>
<p><em>Even tho the phpinfo page still shows the Configuration File Path to be &#8220;c:\windows&#8221;, now the Loaded Configuration File correctly showed &#8220;c:\php\php.ini&#8221;. Also phpinfo now correctly showed the entry for extensions:</em></p>
<p><em> extension_dir c:php\ext.</em></p>
<p><em>The good news, now I could see the mySQL module lower down in the phpinfo page, so I knew I was good to go. I still had not loaded mySQL, but at least php would be able to talk to the server when I get it installed!</em></p>
<p><em></em></p>
<p>As a side comment, there was not any discussion in the post I linked to above about why or why not he chose to load the various php modules he did, and I didn&#8217;t take a lot of time to check them out. I did not load a few that seemed unnecessary, and it seems to still be working fine, tho its probably a good idea to load what he specified, or look though each one so you know what it is doing. </p>
<p>Even though I am technical, and have been an on and off programmer for 30 years now, I still just don&#8217;t get why software companies (even open source ones) make it so darned ridiculous to get a &#8220;standard&#8221; configuration running.  Yes, I understand why we need all the great flexibility, but let&#8217;s face it, most of us have much better things to do with our time than figure out why a page won&#8217;t load because there is no backslash on the end of a configuration line!  <em>(Update: or because in this case you use a forward slash not a backslash!)</em> OK, I&#8217;m whining a bit, but I guess I&#8217;m due after a whole day just trying to get an Apache web server up and running on Vista&#8230;</p>
<p>I thought I would also pass on that I just ran into something called WAMP, which may be worth exploring if you have not yet got your install working, as it is supposed to install Apache/MySQL/PHP onto Windows all at once! Anyone have any experience with this? I&#8217;m  a little gun shy at this point after all the time spent (and the fact it is working) to want to chuck it and start over, just to get the mySQL piece. I&#8217;ll post on my mySQL experiences if I find that to be a pain too.</p>
<p>Happy installs!</p>
<p>Smitty</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/smittysblog.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/smittysblog.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/smittysblog.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/smittysblog.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/smittysblog.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/smittysblog.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/smittysblog.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/smittysblog.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/smittysblog.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/smittysblog.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/smittysblog.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/smittysblog.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=smittysblog.wordpress.com&blog=2906432&post=6&subd=smittysblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://smittysblog.wordpress.com/2008/02/19/how-to-install-php-on-apache-running-under-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/20164cbc903a8814d3730b3d80f22236?s=96&#38;d=identicon" medium="image">
			<media:title type="html">smittysblog</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Install Apache Web Server on Vista &#8211; and Avoid Problems!</title>
		<link>http://smittysblog.wordpress.com/2008/02/18/how-to-install-apache-web-server-on-vista-and-avoid-problems/</link>
		<comments>http://smittysblog.wordpress.com/2008/02/18/how-to-install-apache-web-server-on-vista-and-avoid-problems/#comments</comments>
		<pubDate>Mon, 18 Feb 2008 18:38:18 +0000</pubDate>
		<dc:creator>smittysblog</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[delete vista files]]></category>
		<category><![CDATA[install apache]]></category>
		<category><![CDATA[port 80 vista]]></category>
		<category><![CDATA[unistall apache]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[vista permissions]]></category>

		<guid isPermaLink="false">http://smittysblog.wordpress.com/?p=5</guid>
		<description><![CDATA[Ok, we all know Vista is a pain, but sometimes we gotta use it anyway. If you want to install Apache on Vista, hopefully these step by step instructions will help save you some of the brain damage I went through.
Thanks to other forums, in particular to:
http://senese.wordpress.com/2007/06/06/installing-apache-on-windows-vista/
Even after helpful forums, I still ran into some [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=smittysblog.wordpress.com&blog=2906432&post=5&subd=smittysblog&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><span><font face="Times New Roman">Ok, we all know Vista is a pain, but sometimes we gotta use it anyway. If you want to install Apache on Vista, hopefully these step by step instructions will help save you some of the brain damage I went through.</font></span></p>
<p><span><font face="Times New Roman"><span><font face="Times New Roman">Thanks to other forums, in particular to:<br />
<a href="http://senese.wordpress.com/2007/06/06/installing-apache-on-windows-vista/">http://senese.wordpress.com/2007/06/06/installing-apache-on-windows-vista/</a></font></span></font></span></p>
<p><span><font face="Times New Roman"><span><font face="Times New Roman"><span><font face="Times New Roman"><span><font face="Times New Roman">Even after helpful forums, I still ran into some issues that I hoped I could clarify for others. </font></span></font></span></font></span></font></span><span><font face="Times New Roman"><span><font face="Times New Roman"><span><font face="Times New Roman"><span></span></font></span><span><font face="Times New Roman"><span><font face="Times New Roman">There’s one remaining issue I haven’t been able to solve, and will post if I can fix it:</font></span></font></span></font></span></font></span></p>
<blockquote><p><span><font face="Times New Roman"><span><font face="Times New Roman"><span><font face="Times New Roman"><span></span><span><font face="Times New Roman">I can’t get Apache to listen on port 80. I get an error during install (in the command prompt which goes away) indicating that it can’t allocate port 80, but it doesn’t seem to post the details in the error logs I can view later. I’ve looked using the command “netstat –ao”, and there does not appear to be any applications bound to port 80. The only thing I can figure is something with my Vista firewall – just out of time and need to get some stuff done, so using another port number: 8080.</font></span></font></span></font></span></font></span><span><font face="Times New Roman"><span><font face="Times New Roman"> </font></span></font></span></p></blockquote>
<p><span><font face="Times New Roman"><span></span></font></span><span><font face="Times New Roman"><span></span></font></span><span><font face="Times New Roman"><span><font face="Times New Roman"><br />
<span><font face="Times New Roman">In any case, here’s the steps I used to succesfully install Apache 2.2 on Vista Home Basic:</font></span></font></span></font></span><span><font face="Times New Roman"><span><font face="Times New Roman"><span><font face="Times New Roman"><span><font face="Times New Roman"><span><font face="Times New Roman"><span><font face="Times New Roman">I. First uninstall old installations of Apache Server. </font></span></font></span></font></span></font></span></font></span></font></span><span><font face="Times New Roman"><span><font face="Times New Roman"><span><font face="Times New Roman"><span><font face="Times New Roman"><span><font face="Times New Roman"><span></span></font></span></font></span></font></span><span><font face="Times New Roman"><span><font face="Times New Roman"><span><font face="Times New Roman"><span></span></font></span><span><font face="Times New Roman"><span></span><font face="Times New Roman"><span><span>1.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>There’s a few ways to run the unistall:</span></font></font></span></font></span></font></span></p>
<p></font></span></font></span></p>
<blockquote><p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>a.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>Re-run the Apache installer. It will go into unistall mode.</span></font></p></blockquote>
<blockquote><p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>b.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>Start &gt; Control Panel &gt; Programs and Features </span></font></p></blockquote>
<p><font face="Times New Roman"><span></span></font><span><span><font face="Times New Roman">2.<span style="font:7pt 'Times New Roman';"> </span></font></span></span><span><font face="Times New Roman">Delete remaining installation files.<br />
I really strongly recommend deleting old files that Vista probably did not remove during the unistall. Delete the whole directory “Apache Software Foundation”.</font></span></p>
<blockquote><p><span></span><font face="Times New Roman"><span><span>a.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>It turns out this is a pain due to Vista permissions on the “Program Files” folder where Apache installs by default. </span></font></p></blockquote>
<blockquote><p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>b.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>Run the command prompt in administrator mode (this is critical) by right clicking on Start&gt;All Programs&gt;Accessories&gt;Command Prompt and “run as administrator”</span></font></p></blockquote>
<blockquote><p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>c.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>There may be a much easier/smarter way to do this, but I had to go to each sub directory within “Apache Software Foundation” and “del *.*” then “cd ..” and then “rd ‘directory-name’” to get everything removed. Yes, it is a pain.</span></font></p></blockquote>
<p><font face="Times New Roman"><span><span><font face="Times New Roman">II. Now do a fresh install of Apache Web Server as follows:</font></span></span></font></p>
<p><font face="Times New Roman"><span><span></span></span></font><font face="Times New Roman"><span><span></span><font face="Times New Roman"><span><span></span><font face="Times New Roman"><span><span>1.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>Stop any other services that use port 80. Skype and IIS would be two examples. Set them up to use other ports. In Skype, go to <span></span><span></span>Advanced Options &gt; Connection and uncheck Use Port 80.</span></font></span></font></span></font></p>
<blockquote><p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>a.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>I used “netstat –ao” in the Command Prompt to show the process bindings to port numbers. </span></font></p></blockquote>
<p><font face="Times New Roman"><span></span></font><span><span><font face="Times New Roman">2.<span style="font:7pt 'Times New Roman';"> </span></font></span></span><span><font face="Times New Roman">If you don’t like the incessant nagging from Vista, stop the User Account Control by Control Panel &gt; User Accounts &gt; Turn User Account Control on or off.<br />
(You can always turn it back on if you want.)</font></span></p>
<p><span></span><font face="Times New Roman"><span><span>3.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>Get the most recent version of the Apache Win32 binaries from <a href="http://httpd.apache.org/download.cgi">http://httpd.apache.org/download.cgi</a> and put it on your desktop. Rename it to “<span>apache”</span> (without changing the .msi extension, if that’s showing). </span></font></p>
<p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>4.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>As before, run the Command prompt in administrator mode:</span></font></p>
<blockquote><p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>a.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>Right clicking on Start&gt;All Programs&gt;Accessories&gt;Command Prompt and “run as administrator”</span></font></p></blockquote>
<p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>5.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>Change to your desktop folder directory “ cd desktop” </span></font></p>
<p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>6.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>Run the installer in administrator mode:</span></font></p>
<blockquote><p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>a.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>At the prompt, type: msiexec /i apache.msi </span></font></p></blockquote>
<blockquote><p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>b.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>This is critical, or you will have some other security/permissions issues later. </span></font></p></blockquote>
<p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>7.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>Answer the questions in the Apache installer dialogs. </span></font></p>
<blockquote><p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>a.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>I strongly recommend you do NOT use the default directory for the install. I chose “c:\apache”. Otherwise it will put the install in the Program Files directory and you will have serious permissions issues. You will not be able to use the Apache tools on the start menu to edit the configuration files! You will have to edit them manually in administrator mode using the command prompt, which is a pain&#8230;</span></font></p></blockquote>
<blockquote><p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>b.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>If you are running a server live on the Internet, you will have to make sure all your domains are correctly specified. Ie, yourcomputer.yourdomain</span></font></p></blockquote>
<blockquote><p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>c.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>If you are running a stand alone web server like I am, ( a test server or a development server) you can either leave the domain and server name blank, or you can enter “localserver”. </span></font></p></blockquote>
<blockquote><p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>d.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>You must specify an email address. I made something up. </span></font></p></blockquote>
<blockquote><p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>e.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>I first tried choosing to run in manual single user mode and specifiying a different port since I knew I was having issues on this port, but found this didn’t work well. So during my reinstall, I chose the default /all user mode on port 80. </span></font></p></blockquote>
<p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>8.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>After the install completes, I did get an error about port 80, and so I had to edit the Apache config file to change the port number due to the problem I listed at the beginning of this post. </span></font></p>
<blockquote><p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>a.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>I did this via Start Menu&gt; All Programs&gt; Apache HTTP Server 2.2&gt; Configure Apache Server&gt;Edit the Apache httpd Conf iguration File</span></font></p></blockquote>
<blockquote><p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>b.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>Change the “Listen 80” to “Listen &lt;portnumber&gt;” I used “Listen 8080”.</span></font></p></blockquote>
<p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>9.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>Reboot. </span></font></p>
<p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>10.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>Browse to http://localhost. It should say “It works!” If it doesn’t, check your httpd.conf file by going to All Programs &gt; Apache HTTP Server 2.2.x &gt; Configure Apache Server &gt; Test Configuration. Follow the directions for fixing the configuration file. </span></font></p>
<p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>11.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>I also wanted to setup the default directory for my webpages to something other than where Apache expects them. Who wants their website under the directory htdocs?! Anyway, I wanted them in my own directory elsewhere on my server so I brought up the configuration file as shown in step 13, and edited it as follows .</span></font></p>
<blockquote><p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>a.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>I changed DocumentRoot “C:/apache/htdocs/” to DocumentRoot “C:/localwebsites/siteXYZ/”<span> </span>where my site XYZ’s files were. (OK that really is not the name – but you get the idea!) </span></font></p></blockquote>
<blockquote><p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>b.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>You also have to change the entry “Directory “C:/apache/htdocs/” to the same new directory: DocumentRoot “C:/localwebsites/siteXYZ/”</span></font></p></blockquote>
<blockquote><p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>c.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>I copied the Apache index.html file from their htdocs directory into my “siteXYZ” directory, but you could use any index.html file you have to test the config file is setup correctly.</span></font></p></blockquote>
<p><font face="Times New Roman"><span></span></font><font face="Times New Roman"><span><span>12.<span style="font:7pt 'Times New Roman';"> </span></span></span><span>You can turn User Account Control back on if you want, via the control panel as before.</span></font></p>
<p><font face="Times New Roman"><span></span></font><span><font face="Times New Roman">I have not addressed installing mySQL and PHP, but don’t want to clutter these instructions at this time.</font></span></p>
<p><span></span><span><font face="Times New Roman">Hope this helps!</font></span></p>
<p><span></span><span><font face="Times New Roman">Smitty</font></span><font face="Times New Roman"> </font></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/smittysblog.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/smittysblog.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/smittysblog.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/smittysblog.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/smittysblog.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/smittysblog.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/smittysblog.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/smittysblog.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/smittysblog.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/smittysblog.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/smittysblog.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/smittysblog.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=smittysblog.wordpress.com&blog=2906432&post=5&subd=smittysblog&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://smittysblog.wordpress.com/2008/02/18/how-to-install-apache-web-server-on-vista-and-avoid-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/20164cbc903a8814d3730b3d80f22236?s=96&#38;d=identicon" medium="image">
			<media:title type="html">smittysblog</media:title>
		</media:content>
	</item>
	</channel>
</rss>