<?xml version="1.0"?>
<rss version="2.0">
  <channel>
    <title>PHPDeveloper.org</title>
    <link>http://www.phpdeveloper.org</link>
    <description>Up-to-the Minute PHP News, views and community</description>
    <language>en-us</language>
    <pubDate>Tue, 21 May 2013 16:43:49 -0500</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[DZone.com: How to Set up Wordpress on EC2 Using Puppet and Git]]></title>
      <guid>http://www.phpdeveloper.org/news/17757</guid>
      <link>http://www.phpdeveloper.org/news/17757</link>
      <description><![CDATA[<p>
On DZone.com there's <a href="http://css.dzone.com/articles/how-set-wordpress-ec2-using>a new article</a> from <i>Daniel Ackerson</i> showing how to set up a <a href="http://wordpress.org">WordPress</a> instance on an Amazon EC2 instance with the help of <a href="http://puppetlabs.com/">Puppet</a> and <a href="http://git-scm.com/>git</a>.
</p>
<blockquote>
Having started out on a <a href="http://www.agileweboperations.com/kent-langley-talks-about-joyent-their-new-accelerators-and-their-use-opensolaris">Joyent appliance</a>, migrating to Linode, and finally, to Amazon with a <a href="http://www.agileweboperations.com/migrate-your-wordpress-blog-to-a-bitnami-ec2-instance">Bitnami stack</a>, we noticed the common pain of manually configuring each of these environments. Bitnami caused us an even bigger headache by being very difficult to update (apt-get doesn't update the bitnami wrapped AMP stack). We decided to get full control of our box by setting up a stock Debian LAMP stack on AWS using Puppet and git to manage our sites. Here's a gentle introduction on how we did it.
</blockquote>
<p>He guides you through the entire process:</p>
<ul>
<li>Setting up a micro instance on EC2
<li>Signing up for <a href="http://unfuddle.com">unfuddle</a> (for git)
<li>Installing Puppet (standalone)
<li>Setting up your git repository to point to unfuddle
<li>The needed Puppet configuration files to get the WordPress instance deployed
</ul>
<p>
Complete code (and commands) are provided in the post.
</p>]]></description>
      <pubDate>Fri, 30 Mar 2012 09:14:52 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[A Cloudy Place: PHP and Git on AWS Elastic Beanstalk]]></title>
      <guid>http://www.phpdeveloper.org/news/17746</guid>
      <link>http://www.phpdeveloper.org/news/17746</link>
      <description><![CDATA[<p>
On the "A Cloudy Place" blog there's a <a href="http://acloudyplace.com/2012/03/php-and-git-on-aws-elastic-beanstalk/">recent post</a> about the steps the author (<i> Shameer</i>)  to to get PHP and Git set up on the Elastic Beanstalk service from Amazon.
</p>
<blockquote>
When Amazon announced Beanstalk's support for PHP I was curious to know what it would look like. So I decided to give it a try. I hadn't used my AWS account for a while, so I had to do some account setup tasks, configuring command line tools, etc. In this article I will explain how to set up a PHP application in Beanstalk from scratch.
</blockquote>
<p>
He walks you through the entire process (complete with some screenshots) of getting the command line tools set up, creating your first PHP application and connecting it to your git repository. There's no database instructions included because the default EC2 instance doesn't include them. You'll need to <a href="http://docs.amazonwebservices.com/elasticbeanstalk/latest/dg/create_deploy_PHP.rds.html">refer to these instructions</a> if you need that for your application.
</p>]]></description>
      <pubDate>Wed, 28 Mar 2012 13:53:08 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Dzone.com: A Free Amazon EC2 Cloud Server Based LAMP]]></title>
      <guid>http://www.phpdeveloper.org/news/17571</guid>
      <link>http://www.phpdeveloper.org/news/17571</link>
      <description><![CDATA[<p>
In <a href="http://java.dzone.com/articles/free-ec2-cloud-server-based-0">this new article</a> on DZone.com, <i>Artur Mkrtchyan</i> shows you how to get an Amazon EC2 instance up and running and get a LAMP server set up and ready to go.
</p>
<blockquote>
In this article I'm going to show you how to create a free Amazon EC2 cloud based LAMP Server and Point your domain to Amazon EC2 Instance. There are 4 simple steps to do.
</blockquote>
<p>
The setup process is pretty easy - getting an Amazon free account, creating a server from an existing image, installing the LAMP stack and pointing your domain at the EC2 instance. He gives a step-by-step guide of the process, including the commands you'll need to execute to get all of the LAMP packages installed.
</p>]]></description>
      <pubDate>Wed, 22 Feb 2012 10:42:17 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Matthew Turland's Blog: Setting up EC2 for Drupal with Puppet]]></title>
      <guid>http://www.phpdeveloper.org/news/17539</guid>
      <link>http://www.phpdeveloper.org/news/17539</link>
      <description><![CDATA[<p>
In <a href="http://matthewturland.com/2012/02/13/setting-up-ec2-for-drupal-with-puppet/">this new post</a> to his blog <i>Matthew Turland</i> shows how to set up a <a href="http://docs.puppetlabs.com/guides/introduction.html">puppet</a> configuration to deploy and set up an EC2 environment for Drupal.
</p>
<blockquote>
I'm currently working on a project that involves running <a href="http://drupal.org/">Drupal</a> on <a href="http://aws.amazon.com/ec2/">Amazon EC2</a>. To save time in setting up future new VM instances, I decided to take the opportunity to learn <a href="http://docs.puppetlabs.com/guides/introduction.html">puppet</a>. For the time being, I'm using a single VM to run the full LAMP stack and running puppet <a href="http://docs.puppetlabs.com/#part-one-serverless-puppet">without a server</a> by copying my puppet manifest to the VM and using <a href="http://docs.puppetlabs.com/guides/tools.html#puppet-apply-or-puppet">puppet's apply command</a> to apply it locally. However, this manifest can easily be adapted for a multi-VM environment.
</blockquote>
<p>
He includes the full configuration in the post that does a few things including setting up the correct PHP timezone, starting up the Apache instance, installing a few PHP modules (like PDO, MySQL and GD) and setting up the MySQL server. He also includes the commands needed to run the configuration and point it at the correct EC2 instance.
</p>]]></description>
      <pubDate>Tue, 14 Feb 2012 11:14:40 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[PHPMaster.com: From Zero to Cloud: Setting up an EC2 Sandbox, Part 3]]></title>
      <guid>http://www.phpdeveloper.org/news/16891</guid>
      <link>http://www.phpdeveloper.org/news/16891</link>
      <description><![CDATA[<p>
SitePoint's PHPMaster has a new post today, the third part of a series helping you get your application from "zero to cloud" on an Amazon EC2 setup. In <a href="http://phpmaster.com/from-zecro-to-cloud-3/">this latest post</a> they wrap things up by showing how to set up the full lamp stack on the remote server. <a href="http://phpmaster.com/from-zero-to-cloud-1/">Here's part one</a> and <a href="http://phpmaster.com/from-zero-to-cloud-2/">two</a> that lead up to this latest part.
</p>
<blockquote>
This is the final article in a three part series focused on setting up EC2 as a sandbox for application developers. I assume you have an AWS account with Amazon; if you don't, please read Part 1 to learn how easy it is to sign up. I also assume you have configured your development environment and installed an AMI; if you haven't, please read Part 2. In this installment, we'll learn how to install Apache, MySQL and PHP in our running AMI, and then clone the AMI to make our own.
</blockquote>
<p>
Included in the post are all the commands you'll need to get the packages installed for PHP, MySQL, Apache 2, PEAR and the PHP command line binary. With all of that installed, they show you how to create an <a href="http://aws.amazon.com/amis">AMI</a> (Amazon Machine Image) to make it easier to scale in the future. 
</p>]]></description>
      <pubDate>Thu, 22 Sep 2011 08:42:22 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[SitePoint.com: WordPress in the Cloud with Amazon EC2 and the Microsoft Web Platform]]></title>
      <guid>http://www.phpdeveloper.org/news/14791</guid>
      <link>http://www.phpdeveloper.org/news/14791</link>
      <description><![CDATA[<p>
On SitePoint.com today there's <a href="http://articles.sitepoint.com/article/wordpress-in-the-cloud-with-ec2-and-wpi">a new guide posted</a> about how to get a WordPress instance up and running on an Amazon EC2 instance and the Microsoft Web Platform.
</p>
<blockquote>
One claim I often hear from web developers, especially those who offer website design and consulting services, is their need to quickly launch websites that run fast and give them total control of the server for maximum flexibility and scalability. This is a quick tutorial on how to do just that, with a guided tour on how to run WordPress on Amazon's EC2 Cloud and the Microsoft Web Platform. [...] WordPress and EC2 come together in a really slick way, giving you a super-fast blog or website in just a few minutes. 
</blockquote>
<p>
For those that don't already have an EC2 instance, he helps you get that set up first complete with an almost one-click install of a WordPress instance. With the help of the Web Platform Installer you can easily install not only WordPress but all of the other technology it needs to get running quickly. Screenshots accompany the tutorial descriptions to help make the whole process even simpler.
</p>]]></description>
      <pubDate>Wed, 14 Jul 2010 11:03:58 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Zend Developer Zone: Get Your Cloud on with Zend Server CE]]></title>
      <guid>http://www.phpdeveloper.org/news/12924</guid>
      <link>http://www.phpdeveloper.org/news/12924</link>
      <description><![CDATA[<p>
New on the Zend Developer Zone today <i>Wil Sinclair</i> has <a href="http://devzone.zend.com/article/4859-Get-Your-Cloud-on-with-Zend-Server-CE">this new article</a> looking at the Zend Server Community Edition and getting it set up on the <a href="http://aws.amazon.com/ec2/">EC2</a> service from Amazon via a <a href="http://developer.amazonwebservices.com/connect/entry.jspa?externalID=2663">special image</a> they've already created.
</p>
<blockquote>
The barrier to entry for <a href="http://aws.amazon.com/ec2/">EC2</a> is relatively low, but there are a few new concepts to get under your belt. The first- and possibly most important- decision you'll face is what AMI to use. Zend has just made this decision a lot easier. We've prepared an AMI with a fully optimized, feature-complete installation of <a href="http://www.zend.com/en/products/server-ce/index">Zend Server CE</a>.
</blockquote>
<p>
<a href="http://devzone.zend.com/article/4859-Get-Your-Cloud-on-with-Zend-Server-CE">The rest of the tutorial</a> walks you through the process of getting the EC2 account up and running, a quick look at the AWS Management Console and how to get the Zend CE image out to the instance and up and running (responding to requests on port 18001).
</p>]]></description>
      <pubDate>Wed, 22 Jul 2009 13:38:13 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Zend Developer Zone: Zend Framework 1.8.0 Released]]></title>
      <guid>http://www.phpdeveloper.org/news/12439</guid>
      <link>http://www.phpdeveloper.org/news/12439</link>
      <description><![CDATA[<p>
The latest version of the <a href="http://framework.zend.com">Zend Framework</a> has officially been released - version 1.8, the first in the 1.8.x series with lots of new features including components encouraging the rapid application development functionality the framework already has and additional features to make it easier to use ZF in "the cloud".
</p>
<blockquote>
I'm pleased to announce the Zend Framework 1.8.0 release, the first in our 1.8 series of releases. This release marks the culmination of several long-standing projects, as well as a formalization of many of our recommended practices. 
</blockquote>
<p>
The new rapid application development features include something that's been a long time coming, Zend_Tool. It gives you a command-line interface to build out ZF project parts and configure/display settings for them. Zend_Application was also released in relation to provide a standardized way for boostraping applications with either default configurations or custom settings.
</p>
<p>
Since cloud computing use has been on the rise, the ZF development team has added in two new components - interfaces for Amazon's Simple Storage Service and the Elastic Compute Cloud.
</p>
<p>
You can read more in <a href="http://www.zend.com/en/company/news/press/new-zend-framework-delivers-rapid-application-development-rad-for-php">the official press release</a> from Zend.
</p>]]></description>
      <pubDate>Fri, 01 May 2009 08:43:54 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Zend Developer Zone: A couple of good Zend Framework articles]]></title>
      <guid>http://www.phpdeveloper.org/news/11110</guid>
      <link>http://www.phpdeveloper.org/news/11110</link>
      <description><![CDATA[<p>
The Zend Developer Zone has <a href="http://devzone.zend.com/article/3912-A-couple-of-good-Zend-Framework-articles">a new post</a> with links to two interesting Zend Framework related articles:
</p>
<blockquote>
Ok, ZendCon is over and I'm back to surfing for things you will find interesting. Two articles posted that I didn't cover but feel they are content rich enough to mention are "Create a productivity package with the Zend Framework V1.5 and Google Apps" and "How We Built a Web Hosting Infrastructure on EC2". Click on in and I'll give you details and links.
</blockquote>
<p>
The <a href="http://www.ibm.com/developerworks/edu/os-dw-os-php-zend-google-pt1.html">productivity package</a> is a series of articles (three) where <i>John Mertic</i> shows how to integrate your ZF application with the many tools Google offers.
</p>
<p>
In the <a href="http://www.mikebrittain.com/blog/2008/07/19/web-hosting-on-ec2/">infrastructure and EC2</a> articles <i>Mike Brittain</i> talks about an EC2-driven Zend Framework application (the "why" not really the "how").
</p>]]></description>
      <pubDate>Mon, 29 Sep 2008 12:22:57 -0500</pubDate>
    </item>
  </channel>
</rss>
