<?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: How to Install PHP on Windows</title>
	<atom:link href="http://www.sitepoint.com/blogs/2009/04/13/how-to-install-php-on-windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sitepoint.com/blogs/2009/04/13/how-to-install-php-on-windows/</link>
	<description>News, opinion, and fresh thinking for web developers and designers. The official podcast of sitepoint.com.</description>
	<lastBuildDate>Mon, 23 Nov 2009 12:09:39 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Robert K</title>
		<link>http://www.sitepoint.com/blogs/2009/04/13/how-to-install-php-on-windows/comment-page-1/#comment-924940</link>
		<dc:creator>Robert K</dc:creator>
		<pubDate>Thu, 30 Apr 2009 07:48:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=7958#comment-924940</guid>
		<description>Thanks for this, Xampp is especially easy to get running and comes with phpmyadmin for mysql too. Very useful tool! I remember the old days of php &lt;4 when I had to manually configure it - a good guide is needed and this fits the bill :)</description>
		<content:encoded><![CDATA[<p>Thanks for this, Xampp is especially easy to get running and comes with phpmyadmin for mysql too. Very useful tool! I remember the old days of php &lt;4 when I had to manually configure it &#8211; a good guide is needed and this fits the bill :)</p>]]></content:encoded>
	</item>
	<item>
		<title>By: ben332211</title>
		<link>http://www.sitepoint.com/blogs/2009/04/13/how-to-install-php-on-windows/comment-page-1/#comment-922570</link>
		<dc:creator>ben332211</dc:creator>
		<pubDate>Thu, 23 Apr 2009 21:59:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=7958#comment-922570</guid>
		<description>One option for getting Apache, PHP &amp; MySQL up and running very quickly is EasyPHP: http://www.easyphp.org/

I often recommend this to newbies&#039;s looking at learning PHP or just wanting to easily test code locally.

It&#039;s obviously not a good option for power users or for running a production server, but is a useful tool that does exactly what it claims, :)

Best Wishes,
-Ben</description>
		<content:encoded><![CDATA[<p>One option for getting Apache, PHP &amp; MySQL up and running very quickly is EasyPHP: <a href="http://www.easyphp.org/" rel="nofollow">http://www.easyphp.org/</a></p>
<p>I often recommend this to newbies&#8217;s looking at learning PHP or just wanting to easily test code locally.</p>
<p>It&#8217;s obviously not a good option for power users or for running a production server, but is a useful tool that does exactly what it claims, :)</p>
<p>Best Wishes,<br />
-Ben</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Craig Buckler</title>
		<link>http://www.sitepoint.com/blogs/2009/04/13/how-to-install-php-on-windows/comment-page-1/#comment-922325</link>
		<dc:creator>Craig Buckler</dc:creator>
		<pubDate>Thu, 23 Apr 2009 08:20:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=7958#comment-922325</guid>
		<description>@Gaitors
&lt;blockquote&gt;I’ve read that it must be secured, both php, and apache, if not secured, anyone may have access to your computer.&lt;/blockquote&gt;

No - that&#039;s not true. Apache listens for requests on HTTP port 80 and sends back a response. The only way someone could access it is if you configured your modem/router to forward outside requests to port 80 to your PC. 

Therefore, you&#039;d have to explicitly configure your system to allow outside access. Even if you did, Apache is a highly secure web server and hackers would have extremely limited access.</description>
		<content:encoded><![CDATA[<p>@Gaitors</p>
<blockquote><p>I’ve read that it must be secured, both php, and apache, if not secured, anyone may have access to your computer.</p></blockquote>
<p>No &#8211; that&#8217;s not true. Apache listens for requests on HTTP port 80 and sends back a response. The only way someone could access it is if you configured your modem/router to forward outside requests to port 80 to your PC. </p>
<p>Therefore, you&#8217;d have to explicitly configure your system to allow outside access. Even if you did, Apache is a highly secure web server and hackers would have extremely limited access.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Borozdin</title>
		<link>http://www.sitepoint.com/blogs/2009/04/13/how-to-install-php-on-windows/comment-page-1/#comment-922048</link>
		<dc:creator>Mike Borozdin</dc:creator>
		<pubDate>Wed, 22 Apr 2009 19:22:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=7958#comment-922048</guid>
		<description>Just forbid any incoming connections to Apache and MySQL (80 and 3306 ports). May only localhost be able to connect to itself.</description>
		<content:encoded><![CDATA[<p>Just forbid any incoming connections to Apache and MySQL (80 and 3306 ports). May only localhost be able to connect to itself.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Gaitors</title>
		<link>http://www.sitepoint.com/blogs/2009/04/13/how-to-install-php-on-windows/comment-page-1/#comment-921985</link>
		<dc:creator>Gaitors</dc:creator>
		<pubDate>Wed, 22 Apr 2009 16:32:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=7958#comment-921985</guid>
		<description>I&#039;ve never had the courage to install php/apache. I&#039;ve read that it must be secured, both php, and apache, if not secured, anyone may have access to your computer. I&#039;ve purchased books to learn how to program php, and mysql. The instructions don&#039;t/have never made sense on how to password secure the information. No one seems able to clarify that information. Does anyone here have the ability to explain how to secure this information to someone who has never done this, and is a rank newbie at it? &lt;em&gt;(And incredibly paranoid about security.. my computer has been hacked in the past)&lt;/em&gt;</description>
		<content:encoded><![CDATA[<p>I&#8217;ve never had the courage to install php/apache. I&#8217;ve read that it must be secured, both php, and apache, if not secured, anyone may have access to your computer. I&#8217;ve purchased books to learn how to program php, and mysql. The instructions don&#8217;t/have never made sense on how to password secure the information. No one seems able to clarify that information. Does anyone here have the ability to explain how to secure this information to someone who has never done this, and is a rank newbie at it? <em>(And incredibly paranoid about security.. my computer has been hacked in the past)</em></p>]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Borozdin</title>
		<link>http://www.sitepoint.com/blogs/2009/04/13/how-to-install-php-on-windows/comment-page-1/#comment-918197</link>
		<dc:creator>Mike Borozdin</dc:creator>
		<pubDate>Thu, 16 Apr 2009 07:53:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=7958#comment-918197</guid>
		<description>I prefer installing it a separate package, I mean I can download any version of PHP I want, any version of Apache and any version of MySQL, although I can use any other database I want.

By the way, PHP works nicely with IIS 7 built-in Vista and Windows Server 2008.</description>
		<content:encoded><![CDATA[<p>I prefer installing it a separate package, I mean I can download any version of PHP I want, any version of Apache and any version of MySQL, although I can use any other database I want.</p>
<p>By the way, PHP works nicely with IIS 7 built-in Vista and Windows Server 2008.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Tybe-O</title>
		<link>http://www.sitepoint.com/blogs/2009/04/13/how-to-install-php-on-windows/comment-page-1/#comment-916302</link>
		<dc:creator>Tybe-O</dc:creator>
		<pubDate>Tue, 14 Apr 2009 07:24:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=7958#comment-916302</guid>
		<description>In several small companies I&#039;ve deployed similar setups on Windows office servers. Usually those machines are also running IIS, for instance for Exchange web access. If the purpose of the Apache server is to host a development environment one might consider changing the default port to, say, 8080. Look for the &#039;&lt;em&gt;Listen&lt;/em&gt;&#039; directive in the top section of httpd.conf</description>
		<content:encoded><![CDATA[<p>In several small companies I&#8217;ve deployed similar setups on Windows office servers. Usually those machines are also running IIS, for instance for Exchange web access. If the purpose of the Apache server is to host a development environment one might consider changing the default port to, say, 8080. Look for the &#8216;<em>Listen</em>&#8216; directive in the top section of httpd.conf</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Keith</title>
		<link>http://www.sitepoint.com/blogs/2009/04/13/how-to-install-php-on-windows/comment-page-1/#comment-915888</link>
		<dc:creator>Keith</dc:creator>
		<pubDate>Mon, 13 Apr 2009 19:48:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=7958#comment-915888</guid>
		<description>I love that the article is about installing PHP on windows and the image is of an Apple Macbook.  I know you can use bootcamp or any number of other methods for putting Windows on Apple hardware, but it just struck me as funny.</description>
		<content:encoded><![CDATA[<p>I love that the article is about installing PHP on windows and the image is of an Apple Macbook.  I know you can use bootcamp or any number of other methods for putting Windows on Apple hardware, but it just struck me as funny.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: alex.w747</title>
		<link>http://www.sitepoint.com/blogs/2009/04/13/how-to-install-php-on-windows/comment-page-1/#comment-915752</link>
		<dc:creator>alex.w747</dc:creator>
		<pubDate>Mon, 13 Apr 2009 14:56:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=7958#comment-915752</guid>
		<description>BTW, with PHP CGI you can use different PHP version in different folders or sites and do not change extension.
For example you can create PHP4, PHP51, PHP52, PHP53 folders or virtual sites and publish quickly test your application by executing unit tests with different base URLs.</description>
		<content:encoded><![CDATA[<p>BTW, with PHP CGI you can use different PHP version in different folders or sites and do not change extension.<br />
For example you can create PHP4, PHP51, PHP52, PHP53 folders or virtual sites and publish quickly test your application by executing unit tests with different base URLs.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Craig Buckler</title>
		<link>http://www.sitepoint.com/blogs/2009/04/13/how-to-install-php-on-windows/comment-page-1/#comment-915617</link>
		<dc:creator>Craig Buckler</dc:creator>
		<pubDate>Mon, 13 Apr 2009 11:17:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.sitepoint.com/blogs/?p=7958#comment-915617</guid>
		<description>Thanks for the tip, alex.w747. I&#039;ve never noticed any significant performance differences between installing as a CGI or module - especially within a development system. Either should be fine.

I actually use both: PHP5 as a module and PHP4 as CGI. You can then configure your environment to test the same code in both PHP versions (the subject of another article...)</description>
		<content:encoded><![CDATA[<p>Thanks for the tip, alex.w747. I&#8217;ve never noticed any significant performance differences between installing as a CGI or module &#8211; especially within a development system. Either should be fine.</p>
<p>I actually use both: PHP5 as a module and PHP4 as CGI. You can then configure your environment to test the same code in both PHP versions (the subject of another article&#8230;)</p>]]></content:encoded>
	</item>
</channel>
</rss>
