<?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>Fri, 16 May 2008 06:37:49 -0500</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[Derick Rethans' Blog: Xdebug finally in Debian]]></title>
      <guid>http://www.phpdeveloper.org/news/10154</guid>
      <link>http://www.phpdeveloper.org/news/10154</link>
      <description><![CDATA[<p>
PHP developers working on Debian have one more reason to be happy with their choice of linux distributions - as <i>Derick Reathans</i> <a href="http://derickrethans.nl/xdebug_finally_in_debian.php">notes</a>, XDebug has been added as an apt-getable package to the Debian systems.
</p>
<blockquote>
Since a few days, there is a new package in Debian: <a href="http://lists.debian.org/debian-devel-changes/2008/05/msg00361.html">php5-xdebug</a>. After a few years of talking licenses, due to the help of Martin Meredith and <a href="http://feeding.cloud.geek.nz/">Francois Marier</a> Xdebug can finally be installed with apt-get.
</blockquote>
<p>
<a href="http://xdebug.org/">XDebug</a> is a debugging and profiling tool that adds additional information (more than just the usual "error on line..." sort of thing) to the output of your PHP scripts. It also adds more complex functionality like profiling and code coverage reports run on your applications.
</p>]]></description>
      <pubDate>Fri, 09 May 2008 12:03:24 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[DevShed: Setting Up a Web-Based Image Gallery]]></title>
      <guid>http://www.phpdeveloper.org/news/10130</guid>
      <link>http://www.phpdeveloper.org/news/10130</link>
      <description><![CDATA[<p>
DevShed has started a new series off today with <a href="http://www.devshed.com/c/a/PHP/Setting-Up-a-WebBased-Image-Gallery/">this new tutorial</a>, a look at a few image galleries written in PHP and how to get them up and working on your site.
</p>
<blockquote>
In this article, we are going to tackle this subject and present some real-world applicable solutions.First of all, this article presumes that you either have a web server of your own or one that you pay for (as a web space) with the necessary server-side services already running and configured appropriately (PHP, MySQL, Apache, etc.). Second, we are going to consider free options for the applications we'll present throughout this article.
</blockquote>
<p>
The two pieces of software they look at are <a href="http://www.4homepages.de/">4images Gallery</a> and the <a href="http://coppermine-gallery.net/">Coppermine Gallery</a>. Simple installation instructions are included (more can be found in the project's documentation, though) and screenshots show some of the end results.
</p>]]></description>
      <pubDate>Wed, 07 May 2008 09:31:45 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[DevShed: Setting Up a Web-Based File Manager: PHPfileNavigator2]]></title>
      <guid>http://www.phpdeveloper.org/news/10015</guid>
      <link>http://www.phpdeveloper.org/news/10015</link>
      <description><![CDATA[<p>
DevShed has posted <a href="http://www.devshed.com/c/a/PHP/Setting-Up-a-WebBased-File-Manager-PHPfileNavigator2/">the second part</a> of their series looking at installing and using web-based file managers written in PHP. This time they look at <a href="http://pfn.sourceforge.net/">PHPfileNavigator2</a>.
</p>
<blockquote>
We are going to continue with the installation and configuration of web-based file managers. We'll present another freeware, open-source PHP-based file manipulation utility in the same way we explained bfExplorer in the previous part. This time, it's going to be the PHPfileNavigator2 (pfn2).
</blockquote>
<p>
They cover the basics - <a href="http://www.devshed.com/c/a/PHP/Setting-Up-a-WebBased-File-Manager-PHPfileNavigator2/1/">installation</a> (on a pre-existing Apache/PHP server), <a href="http://www.devshed.com/c/a/PHP/Setting-Up-a-WebBased-File-Manager-PHPfileNavigator2/2/">configuuration</a> and some example screenshots of it in action when correctly set up.
</p>]]></description>
      <pubDate>Tue, 22 Apr 2008 12:35:47 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Hasin Hayder's Blog: Installing PECL subversion extension for PHP in Ubuntu 7.10]]></title>
      <guid>http://www.phpdeveloper.org/news/10012</guid>
      <link>http://www.phpdeveloper.org/news/10012</link>
      <description><![CDATA[<p>
<i>Hasin Hayder</i> has a <a href="http://hasin.wordpress.com/2008/04/21/installing-pecl-subversion-extension-for-php-in-ubuntu-710/">new post</a> to his blog today about trying to set up the PHP extension for interaction between his scripts and the subversion version control libraries on his Ubuntu linux system.
</p>
<blockquote>
I was trying to interact with my subversion repositories using PHP yesterday and I knew that PECL has a extension named "SVN" for PHP users. So I tried to install in in my machine by when I tried to install it with the [following] command it always failed.
</blockquote>
<p>
The trick to his hint is to install the libsvn-dev package (found via a search with apt-get) and installed and compiled in to the PHP installation with <a href="http://pecl.php.net/package/svn">the extension</a>. Sample code is included.
</p>]]></description>
      <pubDate>Tue, 22 Apr 2008 09:48:13 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[New Earth Online: Caching PHP pages]]></title>
      <guid>http://www.phpdeveloper.org/news/10006</guid>
      <link>http://www.phpdeveloper.org/news/10006</link>
      <description><![CDATA[<p>
The New Earth Online has <a href="http://www.newearthonline.co.uk/index.php?page=article&article=424">a quick look</a> at one easy method for speeding up your site in a few different ways - caching pages and information with things like Cache_Lite and APC.
</p>
<blockquote>
As your site traffic grows it takes longer and longer to generate a dynamic page from sending multiple queries to a database. One possible solution to limit queries is to cache the result of each query that is needed, or to have a complete full page cache for your site.
</blockquote>
<p>
They look at the two ways I mentioned - the <a href="http://pear.php.net/package/Cache_Lite">Cache_Lite</a> PEAR package and the <a href="http://pecl.php.net/package/APC">APC</a> extension (that will soon be included by default in the stable PHP releases). Bits of code are provided for each showing how to get them set up and get them working inside of your application.
</p>]]></description>
      <pubDate>Mon, 21 Apr 2008 09:31:40 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[PHP-GTK Community Site: Install PHP-GTK 2 on MacOS X]]></title>
      <guid>http://www.phpdeveloper.org/news/9938</guid>
      <link>http://www.phpdeveloper.org/news/9938</link>
      <description><![CDATA[<p>
On the PHP-GTK Community site, there's a <a href="http://php-gtk.eu/install-phpgtk-2-on-macos-x">new tutorial</a> showing how to install the PHP-GTK platform to a Mac OS X machine:
</p>
<blockquote>
Installation of PHP-GTK 2 on MacOS X 10.4 and 10.5 is actually pretty simple, as it can use the latest PHP-GTK installer, which works just like any other Mac installer.
</blockquote>
<p>
They <a href="http://php-gtk.eu/install-phpgtk-2-on-macos-x">include screenshots</a> as a guide to the step-by-step (extremely simple) process of getting the software installed.
</p>
<blockquote>
For those interested in technical details, a complete list of the prerequisites is given at step 2 of the installation. Download the installer at <a href="http://www.kix.in/php-gtk2/PHP-GTK-2.0.0.dmg">http://www.kix.in/php-gtk2/PHP-GTK-2.0.0.dmg</a>
</blockquote>]]></description>
      <pubDate>Wed, 09 Apr 2008 10:31:12 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[DeveloperTutorials: CubeCart 3.0 Installation and Configuration]]></title>
      <guid>http://www.phpdeveloper.org/news/9927</guid>
      <link>http://www.phpdeveloper.org/news/9927</link>
      <description><![CDATA[<p>
On the Developer Tutorials website, there's <a href="http://www.developertutorials.com/tutorials/php/cubecart-3-0-installation-and-configuration-8-04-07/page2.html">a new guide</a> that steps you through the installation of a simple e-commerce platform available for free from <a href="http://www.devellion.com/">Devellion Limited</a>.
</p>
<blockquote>
In this tutorial, we will get an introduction to <a href="http://www.cubecart.com/">CubeCart</a>, created and distributed by Devellion Limited. Their flagship product is one of the easiest low-cost e-commerce solutions available, and is growing in popularity. Note that CubeCart is not technically open source, since the code cannot be freely redistributed. On the other hand, most of the code is not protected using encoding, and can thus be read and understood.
</blockquote>
<p>
They go through the selection process - picking which version of their software is right for you - and the installation, configuration and how to verify that everything's up and running smoothly. Screenshots are included to help along the way.
</p>]]></description>
      <pubDate>Tue, 08 Apr 2008 08:58:17 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Developer Tutorials Blog: Digg Clone: Start your own Digg in five minutes flat with PHP]]></title>
      <guid>http://www.phpdeveloper.org/news/9922</guid>
      <link>http://www.phpdeveloper.org/news/9922</link>
      <description><![CDATA[<p>
Ever through about starting up your own custom version of a <a href="http://www.digg.com">Digg</a>-sort of site? Well, check out <a href="http://www.developertutorials.com/blog/php/digg-clone-php-mysql-digg-quickly-108/">this new tutorial</a> from the Developer Tutorials blog showing how to start it in "five minutes flat".
</p>
<blockquote>
So, you want to start your own Digg or Reddit? Look no further. With PHP and MySQL, you can create your own Digg site in just five minutes. All you need is a PHP web server and MySQL database server; follow these instructions and you'll be up and running in time.
</blockquote>
<p>
They use the <a href="http://www.developertutorials.com/blog/wp-content/uploads/2008/04/pligg_beta_990.zip">Pligg</a> software to do all of the hard work and describe its installation, configuration and use - simple and easy. You can find out more about Pligg on <a href="http://pligg.com/">its website</a>.
</p>]]></description>
      <pubDate>Mon, 07 Apr 2008 10:25:55 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[DeveloperTutorials.com: Installing and Configuring Drupal 6.1]]></title>
      <guid>http://www.phpdeveloper.org/news/9850</guid>
      <link>http://www.phpdeveloper.org/news/9850</link>
      <description><![CDATA[<p>
The Developer Tutorials blog has posted <a href="http://www.developertutorials.com/tutorials/php/installing-and-configuring-drupal-6-1-8-03-22/page1.html">this new guide</a> on how to install one of the more popular PHP content management systems out there - <a href="http://www.drupal.org">Drupal</a>.
</p>
<blockquote>
<p>
One of the most popular CMSs is Drupal, partly because it offers all of the aforesaid features, and partly because developers familiar with PHP (the language used by Drupal) can modify the functioning and appearance of almost every aspect of Drupal.
</p>
<p>
In this tutorial, we will discuss how to install and configure a brand-new Drupal Web site from scratch. We will also touch upon the basics of adding content to a Drupal installation.
</p>
</blockquote>
<p>
They include useful screenshots along the way as well, helping to guide you through the process a bit better than with just words. There's tons of configuration options that you could mess with in a Drupal installation, but they do well to give you the essential ones that you'll need to get it up and running smoothly.
</p>]]></description>
      <pubDate>Tue, 25 Mar 2008 08:46:36 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Vinu Thomas' Blog: PHP Apps on Mobile using PAMP]]></title>
      <guid>http://www.phpdeveloper.org/news/9797</guid>
      <link>http://www.phpdeveloper.org/news/9797</link>
      <description><![CDATA[<p>
<i>Vinu Thomas</i> <a href="http://blogs.vinuthomas.com/2008/03/14/php-apps-on-mobile-using-pamp/">talks about</a> a platform on his blog today that can be used to create PHP applications to live on a <a href="http://www.s60.com">S60 phone</a>.
</p>
<blockquote>
If you'd like to work on your favorite PHP apps on your S60 phones, here's PAMP - Personal Apache, MySQL and PHP. This is implemented on the Symbian OS using Open C, which is a set of industry-standard POSIX and middleware C libraries for S60.
</blockquote>
<p>
The <a href="http://wiki.opensource.nokia.com/projects/PAMP">PAMP system</a> is pretty easy to install and guides can be found over on <a href="http://dev.mobi/node/817">the dev.mobi website</a> to help get you started. You can download the latest version of the project from <a href="http://sourceforge.net/project/showfiles.php?group_id=212597&package_id=255753">its SourceForge website</a>.
</p>]]></description>
      <pubDate>Fri, 14 Mar 2008 10:25:57 -0500</pubDate>
    </item>
  </channel>
</rss>
