<?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, 15 May 2008 22:23:02 -0500</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[Zend Developer Zone: Synchronizing Drupal Modules with Adobe AIR]]></title>
      <guid>http://www.phpdeveloper.org/news/10167</guid>
      <link>http://www.phpdeveloper.org/news/10167</link>
      <description><![CDATA[<p>
On the Zend Developer Zone, there's a <a href="http://devzone.zend.com/article/3447-Synchronizing-Drupal-Modules-with-Adobe-AIR">new article/tutorial showing how to keep things in sync on your Drupal installation with the help of <a href="http://www.adobe.com/products/air/">Adobe AIR</a>.
</p>
<blockquote>
Whether you're an enterprise developer working in a large shop or setting up a blog for yourself, you've almost certainly been tasked with keeping your development code in sync with some type of stable release. Whether a project is big or small, you still need to ensure that the core code you work with remains consistent.
</blockquote>
<p>
<a href="http://devzone.zend.com/article/3447-Synchronizing-Drupal-Modules-with-Adobe-AIR">The tutorial</a> walks you through the setup of a basic AIR application, how to pull the configuration XML into it and parsing it to use in the interface. The next step is the sync, grabbing your config and pushing it out to other multiple configs across your sites (via a REST service).
</p>]]></description>
      <pubDate>Tue, 13 May 2008 07:58:10 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Padraic Brady's Blog: An Example Zend Framework Blog - Part 5: Models w/Zend_Db & an Admin Module]]></title>
      <guid>http://www.phpdeveloper.org/news/10087</guid>
      <link>http://www.phpdeveloper.org/news/10087</link>
      <description><![CDATA[<p>
<i>Padraic Brady</i> is on <a href="http://blog.astrumfutura.com/archives/358-An-Example-Zend-Framework-Blog-Application-Part-5-Creating-Models-with-Zend_Db-and-adding-an-Administration-Module.html">part five</a> of his series looking at making a blogging tool with the Zend Framework today. This time he focuses on the database side of things, working with models and making an admin module.
</p>
<blockquote>
First of all I decided to add an Entries Model and Authors Model to the mix, primarily to get ready for when we can add new entries to our blog. This leads to where we can create new Entries; we add an Administration Module to the application with it's own distinct Layout.
</blockquote>
<p>
He starts by making the database schema, an entries and authors table, before starting in on the models. They're made based off of the Zend_Db component's structure and they let the application interact with the data in the tables easily. His code for the modules is included as well as the controller and view for the admin module.
</p>]]></description>
      <pubDate>Thu, 01 May 2008 10:25:06 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[DevShed: Creating an Error Handling Module for a PHP 5 File Uploader]]></title>
      <guid>http://www.phpdeveloper.org/news/9895</guid>
      <link>http://www.phpdeveloper.org/news/9895</link>
      <description><![CDATA[<p>
On DevShed today, they <a href="http://www.devshed.com/c/a/PHP/Creating-an-Error-Handling-Module-for-a-PHP-5-File-Uploader/">continue their look</a> at uploading files in PHP with the addition of some error handling features for their current script.
</p>
<blockquote>
In this third tutorial of the series, I'm going to show you how to incorporate a brand new error checking module into the file uploading PHP script created in the last article.
</blockquote>
<p>
They show the basic method - uploading with <a href="http://www.devshed.com/c/a/PHP/Creating-an-Error-Handling-Module-for-a-PHP-5-File-Uploader/1/">no error checking</a> - before showing how much help adding in an error checking component to watch for things like files that are too large, invalid file choices and problems writing the file on the server side.
</p>]]></description>
      <pubDate>Wed, 02 Apr 2008 16:38:58 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[NorthClick Blog: PECL spread module resurrected!]]></title>
      <guid>http://www.phpdeveloper.org/news/9749</guid>
      <link>http://www.phpdeveloper.org/news/9749</link>
      <description><![CDATA[<p>
In a <a href="http://blog.northclick.de/archives/39">quick new blog post</a> to the NorthClick blog, <i>Soenke Ruempler</i> points out that, due to some updates made by <i>Rob Richards</i>, the <a href="http://pecl.php.net/package/spread">Spread extension</a> for PECL is back in working order again.
</p>
<blockquote>
Yesterday I got an e-mail that two of my <a href="http://pecl.php.net/bugs/search.php?cmd=display&package_name[]=spread&status=All">PECL bug reports for the spread module have been fixed</a>. It seems that it gets some recent love from <a href="http://www.cdatazone.org/">Rob Richards</a> who commited some fixes and cleanups.
</blockquote>
<p>
The <a href="http://www.spread.org/">Spread</a> functionality allows developers to create messaging services by acting as a message bus between the clients and between the client/servers.
</p>]]></description>
      <pubDate>Thu, 06 Mar 2008 12:05:00 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Hasin Hayder's Blog: Installing Imagick extension for PHP in Ubuntu 7.10]]></title>
      <guid>http://www.phpdeveloper.org/news/9583</guid>
      <link>http://www.phpdeveloper.org/news/9583</link>
      <description><![CDATA[<p>
<i>Hasin Hayder</i> has <a href="http://hasin.wordpress.com/2008/02/06/installing-imagick-extension-for-php-in-ubuntu-710/">provided some instructions</a> he's created to install the Imagick extension for PHP on a Ubuntu linux system (7.10) in a new blog entry.
</p>
<blockquote>
I already have ImageMagick installed in my machine and I tried to install the Imagick extension for PHP but I was stuck with strange errors. I have spent couple of hours today to figure out what I did wrong and Why I cant build that extension. Finally I've figured out that I must install ImageMagick from source first to build that extension. Heres how to.
</blockquote>
<p>
He walks through the install, talking about where to get the package from, where to get the PECL extension for PHP and the compile process (with the result of a .so file PHP's extension can use).
</p>]]></description>
      <pubDate>Thu, 07 Feb 2008 09:30:00 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[Tobias Schlitt's Blog: At IPC2k7: WebDAV will come over you...]]></title>
      <guid>http://www.phpdeveloper.org/news/8868</guid>
      <link>http://www.phpdeveloper.org/news/8868</link>
      <description><![CDATA[<p>
<i>Tobias Schlitt</i> has <a href="http://schlitt.info/applications/blog/index.php?/archives/567-At-IPC2k7-WebDAV-will-come-over-you....html">posted about</a> a new component for the eZ components (PHP based) system he develops for - a WebDAV module.
</p>
<blockquote>
Starting by the end of August we spent almost whole September full-time on designing and implementing this component. The goal was to design a flexible <a href="http://schlitt.info/applications/blog/exit.php?url_id=4353&entry_id=567">WebDAV server component</a>, which can be used to edit whatever data source on an HTTP server through the WebDAV extension of the protocol, with the full lot of concerns in mind.
</blockquote>
<p>
Included in <a href="http://schlitt.info/applications/blog/index.php?/archives/567-At-IPC2k7-WebDAV-will-come-over-you....html">the post</a> is an image showing the architecture of the component and a mention that, if you're attending this year's International PHP Conference (2007), you'll be able to see it in action.
</p>]]></description>
      <pubDate>Fri, 19 Oct 2007 10:37:00 -0500</pubDate>
    </item>
  </channel>
</rss>
