<?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>Sat, 22 Nov 2008 04:16:58 -0600</pubDate>
    <ttl>30</ttl>
    <item>
      <title><![CDATA[Cal Evans' Blog: Upgrading WordPress]]></title>
      <guid>http://www.phpdeveloper.org/news/11104</guid>
      <link>http://www.phpdeveloper.org/news/11104</link>
      <description><![CDATA[<p>
<i>Cal Evans</i> has <a href="http://www.phpdeveloper.org/news/9966">yet again</a> upgraded his WordPress install and has <a href="http://blog.calevans.com/2008/09/28/upgrading-wordpress/">list his quick and dirty process</a> in a new post to his blog.
</p>
<p>
The eleven step process includes making a work directory (so you don't copy over your current install and all of its lovely plugins and templates) and copying over a few key files to update to the latest release:
</p>
<ul>
<li>Copy blog.original/wp-content/plugins to blog/wp-content/plugins
<li>Copy blog.original/wp-content/themes to blog/wp-content/themes
<li>Copy blog.original/wp-content/uploads to blog/wp-content/uploads
<li>Copy blog.original/wp-config.php to blog/wp-config.php
<li>Copy blog.original/.htaccess to blog/.htacces
</ul>
<p>
For more information on upgrading your WordPress installation, check out <a href="http://codex.wordpress.org/Upgrading_WordPress">this entry</a> on their wiki.
</p>]]></description>
      <pubDate>Mon, 29 Sep 2008 07:58:36 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Community News: Fav.or.it Launch (Built on the Zend Framework)]]></title>
      <guid>http://www.phpdeveloper.org/news/10431</guid>
      <link>http://www.phpdeveloper.org/news/10431</link>
      <description><![CDATA[<p>
<i>Nick Halstead</i> and crew have launched <a href="http://fav.or.it/">fav.or.it</a> (yesterday), a social site that seeks to "bring blogging to the masses" and runs on top of the <a href="http://framework.zend.com">Zend Framework</a>.
</p>
<p>
From <a href="http://blog.fav.or.it/">their blog</a>:
</p>
<blockquote>
We have long talked about 'bringing blogging to the masses' and today we have released a new version of fav.or.it which we think moves a quite a few steps towards that goal. We hope that we have firstly simplified the interaction with blogosphere and in turn made it accessible to a whole new audience. And for the more tech aware users we hope we have a raft of features that will also appeal.
</blockquote>
<p>
Some of the more important things the site can do include conversation tracking, identity management, simple and easy to use searching, integrated commenting and much more. Check out <a href="http://blog.fav.or.it/2008/06/bringing-blogging-to-the-masses/">Nick's list</a> for more great features or just <a href="http://fav.or.it/auth/login">make a login</a> and check it out for yourself.
</p>]]></description>
      <pubDate>Wed, 18 Jun 2008 08:47:36 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[PHP-GTK Community Site: Blogging about PHP-GTK]]></title>
      <guid>http://www.phpdeveloper.org/news/7303</guid>
      <link>http://www.phpdeveloper.org/news/7303</link>
      <description><![CDATA[<p>
The <a href="http://www.php-gtk.eu/">PHP-GTK Community site</a> has introduced a new feature for members of the site - the ability to create and write to their own blog right there on the site.
</p>
<blockquote>
These are the most visible sign of a new feature on the site: registered members now have their own blog on the site, and blogging about a manual update, community story or recent page is just one click away.
</blockquote>
<p>
Clicking on the "small, dark, lowercase 'b' marks" on their site (when logged in, of course) will allow users to blog about a specific item or piece of content on the site. You can still create free-form posts, but this is a shortcut to prepopulating some of the details about the content without having to cut and paste or type it in yourself.
</p>
<p>
Check out <a href="http://www.php-gtk.eu/">the PHP-GTK Community site</a> and check out <a href="http://www.php-gtk.eu/php-gtk-blogging">this post</a> for more information on how you can get started.
</p>]]></description>
      <pubDate>Mon, 19 Feb 2007 10:57:00 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[DevShed: Creating the Admin Script for a PHP/MySQL Blogging System (Part 3)]]></title>
      <guid>http://www.phpdeveloper.org/news/6516</guid>
      <link>http://www.phpdeveloper.org/news/6516</link>
      <description><![CDATA[<p>
DevShed continues their look at the creation of a simple blogging script with <a href="http://www.devshed.com/c/a/MySQL/Creating-the-Admin-Script-for-a-PHP-MySQL-Blogging-System/">part three</a> of the series (<a href="http://www.phpdeveloper.org/news/6410">part 1</a>, <a href="http://www.phpdeveloper.org/news/6468">part 2</a>) - the creation of an admin utility to work with the contents of the blog.
</p>
<blockquote>
The idea is to give the owner of the blog the ability to manage the blog by being able to remove users and articles as required, or to alter the status of users by upgrading them to admin status or banning them. It is also a place where the administrator can start new topics that will then garner their own replies.
</blockquote>
<p>
They <a href="http://www.devshed.com/c/a/MySQL/Creating-the-Admin-Script-for-a-PHP-MySQL-Blogging-System/">go through</a> the creation of the main admin script (functionality managed with a switch statement, including other external PHP files) and the functions that go in each of those individual files to make things work - managing messages, managing users, and managing categories.
</p>]]></description>
      <pubDate>Tue, 17 Oct 2006 11:23:00 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[DevShed: Creating a Login Script for a PHP/MySQL Blogging System (Part 1)]]></title>
      <guid>http://www.phpdeveloper.org/news/6410</guid>
      <link>http://www.phpdeveloper.org/news/6410</link>
      <description><![CDATA[<p>
DevShed is starting up a new series this morning with <a href="http://www.devshed.com/c/a/MySQL/Creating-a-Login-Script-for-a-PHPMySQL-Blogging-System/">this new tutorial</a>, part one in the creation of a simple blogging system using PHP and MySQL.
</p>
<blockquote>
In this three-part tutorial we are going to be creating an open blogging system. We are also going to provide scripts that will make it possible to switch to a closed blogging system. This article, which is the first part, will cover the creation of the login scripts for a closed system.
</blockquote>
<p>
They <a href="http://www.devshed.com/c/a/MySQL/Creating-a-Login-Script-for-a-PHPMySQL-Blogging-System/">start with a definition</a>, the difference between an open blogging system and a closed one (if users have to register or not). They start with the creation of the database to store the users in followed by the PHP code for the simple login page. It uses sessions to keep track of which user is logged in. Of course, where there's a log in, there needs to be a log out and they give the simple code for that. Finally, they include a "forgot your password" script to help users when they can't remember the info they'd signed up with.
</p>]]></description>
      <pubDate>Tue, 03 Oct 2006 10:00:31 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Zend Developer Zone: Live Blogging From php/db|works 2006]]></title>
      <guid>http://www.phpdeveloper.org/news/6253</guid>
      <link>http://www.phpdeveloper.org/news/6253</link>
      <description><![CDATA[<p>
This week, <i>Cal Evans</i> is <a href="http://devzone.zend.com/node/view/id/908">reporting live</a> from this year's <a href="http://www.phparch.com/works">php/db|works conference</a> in Toronto. Since today is "Tutorial Day", the schedule is a little lighter, and he makes to time to catch <a href="http://devzone.zend.com/node/view/id/909">Rob Richards' talk</a> on PHP and Advanced XML and Web Services.
</p>
<blockquote>
<p>
<a href="http://www.cdatazone.org/index.php">Rob Richards</a> is the author of <a href="http://www.apress.com/book/bookDisplay.html?bID=10092">Pro PHP XML and Web Services</a>. He literally wrote the book on using PHP and XML together. At php|works, he is leading a tutorial on using XML in web services using the DOM extension. 
</p>
<p>
If you ever get a chance to hear Rob do a presentation, let me warn you, it is not for the faint of heart. As I learned last night when I sat down with Rob to record an interview, Rob likes to speak on leading edge and advanced topics. This tutorial is an excellent example of that philosophy.
</p>
</blockquote>
<p>
<i>Cal</i> <a href="http://devzone.zend.com/node/view/id/909">talks more</a> about the content of the talk - its simplicity despite the complex topic, how much info is jammed in, and the fact that it's not just one giant pitch for <i>Rob</i>'s book.
</p>]]></description>
      <pubDate>Tue, 12 Sep 2006 15:49:47 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Community News: Serendipity Reaches Milestone - Version 1.0 Released]]></title>
      <guid>http://www.phpdeveloper.org/news/5600</guid>
      <link>http://www.phpdeveloper.org/news/5600</link>
      <description><![CDATA[<p>
As noted by both <a href="http://schlitt.info/applications/blog/index.php?/archives/466-Welcome-Serendipity-1.0!.html">Tobias Schlitt</a> and <a href="http://www.sebastian-bergmann.de/blog/archives/605-Serendipity-1.0.html">Sebastian Bergmann</a>, the popular blogging software, <a href="http://www.s9y.org/">Serendipity</a> has reached a huge milestone in its development - the release of version 1.0.
</p>
<blockquote>
The Serendipity Team is proud to announce the final release version of Serendipity 1.0, an advanced and flexible blogging/cms web application. With its comprehensive feature set, including multiple authors, internationalization, templated output, and an open plugin architecture, Serendipity's stable 1.0 release is ready to become the most popular Web application in the world!
</blockquote>
<p>
You can get the full story in <a href="http://blog.s9y.org/archives/129-Serendipity-1.0-released!.html">their latest blog post</a> today, including the latest bugfixes, how to upgrade your current installation, the future of the project, and, of course, the "thank you"s going out to all those that helped.
</p>
<p>
You can download this latest release <a href="http://www.s9y.org/12.html">directly from their site</a>.
</p>]]></description>
      <pubDate>Thu, 15 Jun 2006 12:51:11 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[Tim Priebe's Blog: Content Management Systems Demystified]]></title>
      <guid>http://www.phpdeveloper.org/news/5496</guid>
      <link>http://www.phpdeveloper.org/news/5496</link>
      <description><![CDATA[<p>
In <a href="http://www.getasiteonline.com/?postid=21">this new post</a> on <i>Tim Priebe</i>'s blog, he looks at a variety of the content manage ment system offerings out there on the web today, including several PHP-based options.
</p>
<p>
The list includes:
<ul>
<li>PHPNuke (general)
<li>Drupal (general)
<li>Coppermine (images)
<li>WordPress (blogging)
<li>phpBB (forums)
</ul>
</p>
<p>
<i>Tim</i> <a href="http://www.getasiteonline.com/?postid=21">includes links</a> to all of the resources and screenshots of each package in action. It's interesting to have a summary of some of the more major offerings lined up like this - a good starting place to branch from for other CMS research.
</p>]]></description>
      <pubDate>Fri, 02 Jun 2006 06:07:11 -0500</pubDate>
    </item>
    <item>
      <title><![CDATA[PHPBuilder.com: b2evolution - a comprehensive blogging engine]]></title>
      <guid>http://www.phpdeveloper.org/news/4841</guid>
      <link>http://www.phpdeveloper.org/news/4841</link>
      <description><![CDATA[On PHPBuilder.com today, there's <a href="http://www.phpbuilder.com/columns/ian_gilfillan200610213.php3">a new article</a> by <i>Ian Gilfillan</i> that takes a look at one of the more comprehensive blogging tools offered - <a href="http://b2evolution.net">b2evolution</a>.
<p>
<quote>
<i>
After <a href="http://www.phpbuilder.com/columns/ian_gilfillan20060103.php3?aid=1062">looking at Gregarius</a> last month, this time it's b2evolution's turn to be in the spotlight. b2evolution is blogging software (and more), written in PHP and MySQL, released under the <a href="http://en.wikipedia.org/wiki/GNU_GPL">GNU GPL</a>, and it's what I use for my <a href="http://www.greenman.co.za/b2evolution/blogs/">personal blog</a>. 
<p>
The <a href="http://b2evolution.net/man/index.html">online documentation</a> is pretty poor for an Open Source project, with somewhat outdated information, nor does it have the friendliest of forums, but the application itself is good, so hopefully this tutorial will be helpful to some.
</i>
</quote>
<p>
He <a href="http://www.phpbuilder.com/columns/ian_gilfillan200610213.php3">starts off</a> with a bit of history about the software, followed by the requirements and installation instructions to help you get started. From there, it's all internal components like the administration of the posts, how to post a new item, the "extended text" option, trackbacks, antispam, etc. He looks at each, explaining what they are and how b2evolution implements them.]]></description>
      <pubDate>Tue, 14 Feb 2006 07:00:58 -0600</pubDate>
    </item>
    <item>
      <title><![CDATA[SitePoint PHP Blog: PHP Conf Lon Live [1]]]></title>
      <guid>http://www.phpdeveloper.org/news/4826</guid>
      <link>http://www.phpdeveloper.org/news/4826</link>
      <description><![CDATA[<i>Harry Fuecks</i> is attending the <a href="http://www.phpconference.co.uk/">PHP Conference UK</a> and has posted <a href="http://www.sitepoint.com/blogs/2006/02/10/php-conf-lon-live-1/">this  new item</a> on the SitePoint PHP Blog with his thoughts so far.
<p>
<quote>
<i>
So made it back to Britain and met up with the PHP London group last night as the warm up to todays conference.
<p>
All I can say is if you're in London and not getting to the PHP London meetups, you're missing out. Attendance varies but usually ten regulars on a low turn out up to 30 on a good night (like when Rasmus drops by).
</i>
</quote>
<p>
He's also included a "live" blogging session, noting that the crowd bumped up to around 160 visitors and a mention of the talk that <i>Derick Rethans</i> is giving on the eZ components. There's some pictures included as well, including a shot of the (rather large) crowd.]]></description>
      <pubDate>Fri, 10 Feb 2006 07:04:48 -0600</pubDate>
    </item>
  </channel>
</rss>
