<?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>Thu, 23 May 2013 09:48:21 -0500</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[PHPMaster.com: Integrating Amazon S3 using PEAR]]></title>
      <guid>http://www.phpdeveloper.org/news/16997</guid>
      <link>http://www.phpdeveloper.org/news/16997</link>
      <description><![CDATA[<p>
On PHPMaster.com today there's a new tutorial showing you how to <a href="http://phpmaster.com/integrating-amazon-s3-using-pear/">integrate Amazon's S3 service</a> with your application via the <a href="http://pear.php.net/package/Services_Amazon_S3">Services_Amazon_S3</a> PEAR package.
</p>
<blockquote>
 In the process of reviewing documentation for Orchestra.io, I found that it <a href="http://docs.orchestra.io/kb/system-constraints/system-constraints#file-uploads-hosting">doesn't allow file uploads</a>. Instead, it's recommended that <a href="http://aws.amazon.com/s3/">Amazon S3</a> be used for file hosting. If you aren't familiar with it, S3 is an online storage web service that is part of Amazon Web Services (AWS). It provides access to fairly cheap storage through a variety of web service interfaces. This article will demonstrate how to sign up for an Amazon S3 account and use PEAR's Services_Amazon_S3 package to interact with S3 in your own application.
</blockquote>
<p>
They walk you through the whole process - getting signed up at <a href="http://aws.amazon.com/s3/">the AWS site</a>, creating credentials, installing the <a href="http://pear.php.net/package/Services_Amazon_S3">Services_Amazon_S3</a> package (via the PEAR installer) and using it in some sample scripts.
</p>]]></description>
      <pubDate>Mon, 17 Oct 2011 08:34:01 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[IBM developerWorks: Cloud computing with PHP, Part 1: Using Amazon S3 with the Zend Framework]]></title>
      <guid>http://www.phpdeveloper.org/news/13280</guid>
      <link>http://www.phpdeveloper.org/news/13280</link>
      <description><![CDATA[<p>
<i>Doug Tidwell</i> has <a href="http://www.ibm.com/developerworks/web/library/os-php-cloud1/index.html">posted the first part</a> of a series of tutorials looking at connecting your Zend Framework applications with "the cloud" to the IBM developerWorks site. This initial article focuses on integrating an application with the Amazon S3 technology.
</p>
<blockquote>
Cloud computing promises unlimited disk space for users and applications. In an ideal world, accessing that storage would be as easy as accessing a local hard drive. Unfortunately, the basic APIs of most cloud storage services force programmers to think about protocols and configuration details instead of simply working with their data. This article looks at classes in the Zend Framework that make it easy to use Amazon's S3 cloud storage service as a boundless hard drive.
</blockquote>
<p>
Their sample application will show you how to grab the list of your buckets and objects as well as work with current items and create new ones. The interface is made much simpler by the <a href="http://framework.zend.com/wiki/display/ZFPROP/Zend_Service_Amazon_S3+-+Justin+Plock">Zend_Service_Amazon_S3</a> component.
</p>]]></description>
      <pubDate>Thu, 24 Sep 2009 11:43:22 -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[NETTUTS.com: 9 Extremely Useful and Free PHP Libraries]]></title>
      <guid>http://www.phpdeveloper.org/news/12309</guid>
      <link>http://www.phpdeveloper.org/news/12309</link>
      <description><![CDATA[<p>
NETTUTS.com has posted <a href="http://net.tutsplus.com/articles/web-roundups/9-extremely-useful-and-free-php-libraries/">a list of nine libraries</a> you can use to quickly and easily add functionality to your web application.
</p>
<blockquote>
A lot of functionality is shared among applications - like sending emails or preventing spam. In the spirit of reusing the wheel instead of reinventing it, here are nine free web libraries that you can use in your next program which will dramatically increase your efficiency. 
</blockquote>
<p>Here's their list:</p>
<ul>
<li><a href="http://recaptcha.net/plugins/php/">ReCAPTCHA</a>
<li><a href="http://akismet.com/">Akismet</a>
<li><a href="http://pear.php.net/package/Services_JSON">Services_JSON</a>
<li><a href="http://smarty.net/">Smarty</a>
<li><a href="http://pchart.sourceforge.net/download.php">pChart</a>
<li><a href="http://simplepie.org/">SimplePie</a>
<li><a href="http://phpxmlrpc.sourceforge.net/#download">XML-RPC PHP Library</a>
<li><a href="http://undesigned.org.za/2007/10/22/amazon-s3-php-class">Amazon S3</a>
<li><a href="http://phpmailer.codeworxtech.com/index.php?pg=sf&p=dl">PHPMailer</a>
</ul>
<p>
Screenshots (and code examples) are provided for several of the items as well as links to their website and documentation pages.
</p>]]></description>
      <pubDate>Thu, 09 Apr 2009 07:51:16 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[techPortal: PHP and the Cloud]]></title>
      <guid>http://www.phpdeveloper.org/news/12248</guid>
      <link>http://www.phpdeveloper.org/news/12248</link>
      <description><![CDATA[<p>
On the Ibuildings techPortal today <i>Vito Chin</i> has <a href="http://techportal.ibuildings.com/2009/03/31/php-and-the-cloud/">posted a new article</a> dealing with PHP and "the Cloud" - where the popular web language fits into the move towards cloud computing.
</p>
<blockquote>
Cloud computing refers to the utilization of shared, elastic resources and processing power accessed via the Internet. In some ways, it hails the reversion to the golden age of time-sharing but with significant improvements to the distribution philosophies underlying the delivery infrastructure. [...] Cloud-based development involves in some sense, the outsourcing, of various parts of the application out of the server and into the cloud.
</blockquote>
<p>
Included is <a href="http://techportal.ibuildings.com/wp-content/uploads/2009/03/image1.jpg">an illustration</a> of how an application would interact with the cloud and an example of working with the <a href="https://aws-portal.amazon.com/gp/aws/developer/registration/index.html">S3 service</a> that Amazon offers. The example mentions both the normal services and something called the "elastic compute cloud" that lets you use remote services to run virtual instances of other operating systems.
</p>]]></description>
      <pubDate>Tue, 31 Mar 2009 14:47:10 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Jim Wynia's Blog:  WebDAV, PHP and You]]></title>
      <guid>http://www.phpdeveloper.org/news/9246</guid>
      <link>http://www.phpdeveloper.org/news/9246</link>
      <description><![CDATA[<p>
<i>Jim Wynia</i> has <a href="http://www.phpgeek.com/wordpress/webdav-php-and-you/123/">posted some thoughts</a> about a <a href="http://www.phpdeveloper.org/news/9238">recent announcement</a> of the development of a WebDAV library for PHP to his blog today:
</p>
<blockquote>
However, over the past few years, WebDAV has started gaining traction as the underlying protocol for Subversion repositories over the web and in several other places. That makes <a href="http://www.rooftopsolutions.nl/article/168">this story about a new PHP library</a> for working with WebDAV interesting.
</blockquote>
<p>
He notes that he's moved a lot of his file storage to Amazon's s3 service and having this new PHP library would make it even easier for him to get at his content directly from his applications.
</p>]]></description>
      <pubDate>Fri, 14 Dec 2007 11:13:00 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[AnyExample.com: Downloading files from Amazon S3]]></title>
      <guid>http://www.phpdeveloper.org/news/8871</guid>
      <link>http://www.phpdeveloper.org/news/8871</link>
      <description><![CDATA[<p>
The AnyExample.com website has a <a href="http://www.anyexample.com/programming/php/downloading_files_from_amazon_s3.xml">new tutorial</a> today showing how to download files from the Amazon S3 service through PHP:
</p>
<blockquote>
This is an example of non-interactive PHP script which downloads file from Amazon S3 (Simple Storage Service). Additional libraries like HMAC-SHA1 are not required.
</blockquote>
<p>
You'll need at least PHP 4.1.0 or higher to <a href="http://www.anyexample.com/programming/php/downloading_files_from_amazon_s3.xml">follow along</a> but the entire code block is there and ready for use. It makes the GET request to the bucket for your object with the correct authentication and opens a socket to pull the file down.
</p>]]></description>
      <pubDate>Fri, 19 Oct 2007 13:07:00 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Davey Shafik's Blog: PHP Streams Rock my World!]]></title>
      <guid>http://www.phpdeveloper.org/news/8641</guid>
      <link>http://www.phpdeveloper.org/news/8641</link>
      <description><![CDATA[<p>
<i>Davey Shafik</i> has gotten <a href="http://pixelated-dreams.com/archives/319-PHP-Streams-Rock-my-World!.html">more than a little excited</a> by the streams functionality in his latest blog post:
</p>
<blockquote>
PHP streams are absolutely amazing. As mentioned by Elizabeth Smith (a great read if you don't know how to use streams) PHP streams are super powerful. Streams is something that is (to my knowledge) unique to PHP. The closest thing I've seen to it, is Linux's FUSE "user space" (i.e. not kernel module) file systems.
</blockquote>
<p>
He <a href="http://pixelated-dreams.com/archives/319-PHP-Streams-Rock-my-World!.html">shows an example</a> of a stream in action and suggests an interface he'd like to see - an automatic connection to the Amazon S3 storage.
</p>]]></description>
      <pubDate>Wed, 12 Sep 2007 14:14:12 -0500</pubDate>
    </item>
  </channel>
</rss>
