<?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 for VPS.NET Cloud Server Blog | VPS.NET</title>
	<atom:link href="http://www.vps.net/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vps.net/blog</link>
	<description>News out of the VPS.NET Cloud Server Community</description>
	<lastBuildDate>Tue, 14 May 2013 08:07:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on PHP Built In Web Server [Developer Tips] by Sajan Parikh</title>
		<link>http://www.vps.net/blog/2013/05/13/php-web-server-developer-tips/#comment-141914</link>
		<dc:creator>Sajan Parikh</dc:creator>
		<pubDate>Tue, 14 May 2013 08:07:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.vps.net/blog/?p=2373#comment-141914</guid>
		<description><![CDATA[I guess if you&#039;re talking about a public API with users that sign up for a service.  Most APIs we use and deal with are just for data sharing between internal systems.  Things we set up for ourselves, in which case scale really is not a factor.

Also, regarding the rewrites, you can achieve http://foo/api/call using the PHP server just fine.  In fact, Laravel does this out of the box and works just fine.]]></description>
		<content:encoded><![CDATA[<p>I guess if you&#8217;re talking about a public API with users that sign up for a service.  Most APIs we use and deal with are just for data sharing between internal systems.  Things we set up for ourselves, in which case scale really is not a factor.</p>
<p>Also, regarding the rewrites, you can achieve <a href="http://foo/api/call" rel="nofollow">http://foo/api/call</a> using the PHP server just fine.  In fact, Laravel does this out of the box and works just fine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP Built In Web Server [Developer Tips] by Anthony Somerset</title>
		<link>http://www.vps.net/blog/2013/05/13/php-web-server-developer-tips/#comment-141913</link>
		<dc:creator>Anthony Somerset</dc:creator>
		<pubDate>Tue, 14 May 2013 07:51:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.vps.net/blog/?p=2373#comment-141913</guid>
		<description><![CDATA[Sure you made my point for me - its fine for very small scale but not for API&#039;s as the poster suggested which by there nature probably need to be very scalable. I also want to contest that API&#039;s don&#039;t need rewrites being only half true, they don&#039;t if you plan to use an explicit .php in the file url - eg http://foo/bar.php/api/call However 95% of the API&#039;s I have seen and used don&#039;t do that, they just do http://foo/api/call and guess what.... handle the rewrite at the webserver level - also web servers allow for caching of some API results which to my knowledge the php web server can&#039;t do on its own]]></description>
		<content:encoded><![CDATA[<p>Sure you made my point for me &#8211; its fine for very small scale but not for API&#8217;s as the poster suggested which by there nature probably need to be very scalable. I also want to contest that API&#8217;s don&#8217;t need rewrites being only half true, they don&#8217;t if you plan to use an explicit .php in the file url &#8211; eg <a href="http://foo/bar.php/api/call" rel="nofollow">http://foo/bar.php/api/call</a> However 95% of the API&#8217;s I have seen and used don&#8217;t do that, they just do <a href="http://foo/api/call" rel="nofollow">http://foo/api/call</a> and guess what&#8230;. handle the rewrite at the webserver level &#8211; also web servers allow for caching of some API results which to my knowledge the php web server can&#8217;t do on its own</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP Built In Web Server [Developer Tips] by Sajan Parikh</title>
		<link>http://www.vps.net/blog/2013/05/13/php-web-server-developer-tips/#comment-141911</link>
		<dc:creator>Sajan Parikh</dc:creator>
		<pubDate>Tue, 14 May 2013 07:29:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.vps.net/blog/?p=2373#comment-141911</guid>
		<description><![CDATA[Yes, the manual does explicitly state not to use it in production.  However, that&#039;s not exactly a law.  I&#039;ve got a couple of publically accessible scripts on a small server that I send &#039;webhook&#039; requests to from various services to send POST requests to with notifications.

I promise you, in very small scale uses like that which everyone can benefit from, it&#039;s much easier to cut Apache, NGINX, or whatever web server out of the loop.

Other than stuff like that, sure.  You shouldn&#039;t use it in production nor is anyone advocating it.]]></description>
		<content:encoded><![CDATA[<p>Yes, the manual does explicitly state not to use it in production.  However, that&#8217;s not exactly a law.  I&#8217;ve got a couple of publically accessible scripts on a small server that I send &#8216;webhook&#8217; requests to from various services to send POST requests to with notifications.</p>
<p>I promise you, in very small scale uses like that which everyone can benefit from, it&#8217;s much easier to cut Apache, NGINX, or whatever web server out of the loop.</p>
<p>Other than stuff like that, sure.  You shouldn&#8217;t use it in production nor is anyone advocating it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP Built In Web Server [Developer Tips] by Anthony Somerset</title>
		<link>http://www.vps.net/blog/2013/05/13/php-web-server-developer-tips/#comment-141910</link>
		<dc:creator>Anthony Somerset</dc:creator>
		<pubDate>Tue, 14 May 2013 07:01:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.vps.net/blog/?p=2373#comment-141910</guid>
		<description><![CDATA[Recommending the built in php http server is a bad idea, as per the PHP manual: php.net/manual/en/features.commandline.webserver.php the developers explicitly state that its not recommended for production use.

It scales nowhere near as well as PHP-FPM or mod_PHP]]></description>
		<content:encoded><![CDATA[<p>Recommending the built in php http server is a bad idea, as per the PHP manual: php.net/manual/en/features.commandline.webserver.php the developers explicitly state that its not recommended for production use.</p>
<p>It scales nowhere near as well as PHP-FPM or mod_PHP</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Are You Using A PHP Framework Yet?  You Should! by Abby</title>
		<link>http://www.vps.net/blog/2013/04/19/are-you-using-a-php-framework-yet-you-should/#comment-141221</link>
		<dc:creator>Abby</dc:creator>
		<pubDate>Wed, 24 Apr 2013 02:49:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.vps.net/blog/?p=2285#comment-141221</guid>
		<description><![CDATA[Really a nice blog. I want to start my carrier in Php, but I am really confused fro where to start as I do not have any knowledge of php. Is it necessary to learn php with My SQL? I really need some books and other stuff to learn php apart from training. For classes I am starting my course at http://www.wiziq.com/course/5871-php-mysql-with-basic-javascript-integrated-course but I am still confused with which books to follow. I will really appreciate if you can guide me with some good books

Cheers

Abby]]></description>
		<content:encoded><![CDATA[<p>Really a nice blog. I want to start my carrier in Php, but I am really confused fro where to start as I do not have any knowledge of php. Is it necessary to learn php with My SQL? I really need some books and other stuff to learn php apart from training. For classes I am starting my course at <a href="http://www.wiziq.com/course/5871-php-mysql-with-basic-javascript-integrated-course" rel="nofollow">http://www.wiziq.com/course/5871-php-mysql-with-basic-javascript-integrated-course</a> but I am still confused with which books to follow. I will really appreciate if you can guide me with some good books</p>
<p>Cheers</p>
<p>Abby</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Are You Using A PHP Framework Yet?  You Should! by Chris</title>
		<link>http://www.vps.net/blog/2013/04/19/are-you-using-a-php-framework-yet-you-should/#comment-141207</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Tue, 23 Apr 2013 04:29:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.vps.net/blog/?p=2285#comment-141207</guid>
		<description><![CDATA[Yep, frameworks make development a lot easier. In fact, we often use a framework for even basic multi-page websites where wordpress would be too much work to customise. This makes creating different views and adding more functionality later easier.]]></description>
		<content:encoded><![CDATA[<p>Yep, frameworks make development a lot easier. In fact, we often use a framework for even basic multi-page websites where wordpress would be too much work to customise. This makes creating different views and adding more functionality later easier.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Apache MPMs &#8211; Prefork, Worker, and Event by David</title>
		<link>http://www.vps.net/blog/2013/04/08/apache-mpms-prefork-worker-and-event/#comment-141194</link>
		<dc:creator>David</dc:creator>
		<pubDate>Mon, 22 Apr 2013 13:27:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.vps.net/blog/?p=2270#comment-141194</guid>
		<description><![CDATA[mod_php works just fine with Worker, we&#039;ve been using it in production environments for many many years.

PHP-FPM is nicer in many ways, but is a much more complicated setup and you lose access to a few things such as apache_note() or the ability to use HTTP Authentication via PHP.]]></description>
		<content:encoded><![CDATA[<p>mod_php works just fine with Worker, we&#8217;ve been using it in production environments for many many years.</p>
<p>PHP-FPM is nicer in many ways, but is a much more complicated setup and you lose access to a few things such as apache_note() or the ability to use HTTP Authentication via PHP.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on [Important] Secure Your WordPress Password Immediately – Global WordPress Brute Force Attack by Maak jouw WordPress site en blog in 5 stappen veilig tegen brute kracht aanvallen &#124; Webmaster Resources</title>
		<link>http://www.vps.net/blog/2013/04/12/important-secure-your-wordpress-password-immediately-global-wordpress-brute-force-attack/#comment-141128</link>
		<dc:creator>Maak jouw WordPress site en blog in 5 stappen veilig tegen brute kracht aanvallen &#124; Webmaster Resources</dc:creator>
		<pubDate>Mon, 15 Apr 2013 14:52:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.vps.net/blog/?p=2321#comment-141128</guid>
		<description><![CDATA[[...] codex: Brute Force Attacks Post Matt Mullenweg Passwords and brute force VPS.net (hosting) [Important] Secure Your WordPress Password Immediately – Global WordPress Brute Force Attack Venture Beat WordPress admin accounts target of botnet attacks [...]]]></description>
		<content:encoded><![CDATA[<p>[...] codex: Brute Force Attacks Post Matt Mullenweg Passwords and brute force VPS.net (hosting) [Important] Secure Your WordPress Password Immediately – Global WordPress Brute Force Attack Venture Beat WordPress admin accounts target of botnet attacks [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on [Important] Secure Your WordPress Password Immediately – Global WordPress Brute Force Attack by Maak jouw WordPress veilig in 5 stappen tegen brutte kracht aanvallen</title>
		<link>http://www.vps.net/blog/2013/04/12/important-secure-your-wordpress-password-immediately-global-wordpress-brute-force-attack/#comment-141123</link>
		<dc:creator>Maak jouw WordPress veilig in 5 stappen tegen brutte kracht aanvallen</dc:creator>
		<pubDate>Mon, 15 Apr 2013 04:32:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.vps.net/blog/?p=2321#comment-141123</guid>
		<description><![CDATA[[...] codex: Brute Force Attacks Post Matt Mullenweg Passwords and brute force VPS.net (hosting) [Important] Secure Your WordPress Password Immediately – Global WordPress Brute Force Attack Venture Beat WordPress admin accounts target of botnet attacks [...]]]></description>
		<content:encoded><![CDATA[<p>[...] codex: Brute Force Attacks Post Matt Mullenweg Passwords and brute force VPS.net (hosting) [Important] Secure Your WordPress Password Immediately – Global WordPress Brute Force Attack Venture Beat WordPress admin accounts target of botnet attacks [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Apache Worker, I Command Thee! by Madalin Ignisca</title>
		<link>http://www.vps.net/blog/2013/04/02/apache-worker-i-command-thee/#comment-141076</link>
		<dc:creator>Madalin Ignisca</dc:creator>
		<pubDate>Thu, 11 Apr 2013 11:44:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.vps.net/blog/?p=2265#comment-141076</guid>
		<description><![CDATA[Hello,

I haven&#039;t documented before on MPM&#039;s for apache. I&#039;ve switched to worker after reading this one and saw some little improvements, based on my team feedback when they are working on sites we are building and test on our server.

I&#039;m a happy customer on vps.net :)]]></description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I haven&#8217;t documented before on MPM&#8217;s for apache. I&#8217;ve switched to worker after reading this one and saw some little improvements, based on my team feedback when they are working on sites we are building and test on our server.</p>
<p>I&#8217;m a happy customer on vps.net <img src='http://www.vps.net/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using apc

 Served from: vps.net @ 2013-06-18 18:10:37 by W3 Total Cache -->