 | News Feed |
Sections
Community Events
|
| feed this: |  |
PHP.net: PHP 5.2.6 Released
posted Friday May 02, 2008 @ 07:51:13
voice your opinion now!
BY CHRIS CORNUTT
The PHP development team has released the latest version in the PHP 5.2.x series today - version 5.2.6:
This release focuses on improving the stability ofthe PHP 5.2.x branch with over 120 bug fixes, several of which are security related.All users of PHP are encouraged to upgrade to this release. Further details about the PHP 5.2.6 release can be found in the release announcement for 5.2.6, the full list of changes is available in the ChangeLog for PHP 5.
Security updates include prevention of a buffer overflow in FastCGI mode, an integer overflow in printf, correction for a safe_mode bypass method in cURL and the bundling of PCRE 7.6 to update the regular expression functionality of the language.
You can grab this latest release from the downloads page on PHP.net (or your favorite mirror) - both the source and the Windows binaries.
tagged with: release php5 series security overflow pcre safemode download
Developer Tutorials Blog: Designing and Coding a Wordpress Theme From Scratch
posted Tuesday April 29, 2008 @ 11:17:18
voice your opinion now!
BY CHRIS CORNUTT
The Developer Tutorials blog has posted a series they've worked up to show bloggers out there running WordPress how to create a custom theme from scratch:
In this multi-part series I'll detail how to create and design a Wordpress theme from nothing more than your imagination using Photoshop, CSS, XHTML and PHP.
Here's the list so far:
- Part 1 - getting the tools and an overall layout idea
- Part 2 - splitting it up to make the layout parts
- Part 3 - converting the Photoshop template to XHTML
- Part 4 - cleaning up the XHTML and doing some styling with CSS
- Part 5 - how to preload some images with Javascript to make the page load faster
- Part 6 - creating the WordPress-specific markup
- Part 7 - working up the PHP functionality
- Part 8 - integrating PHP into the template
- Part 9 - marking up the "framework" of the site (header/footer/sidebar)
- Part 10 - adding additional files like a links page and changing the posting template
- Part 11 (?) - deploying the theme out to the public view
tagged with: series tutorial wordpress photoshop xhtml convert layout theme custom
PHPBuilder.com: Developing a Ajax-driven Shopping Cart with PHP and Prototype
posted Tuesday April 29, 2008 @ 08:48:31
voice your opinion now!
BY CHRIS CORNUTT
On PHPBuilder.com today there's a new tutorial posted showing how to combine the Javascript power of Prototype along side PHP's adaptability to create a simple, ajax-driven shopping cart for your site.
In the latest installment of this ongoing PHP series, I'll show you how to build a shopping cart using PHP, session handling, and the Prototype JavaScript library. The cart allows users to add and delete products from the cart, as well as change cart quantities. And of course, the interaction is seemingly instantaneous, allowing for the user to continue shopping without waiting for the page to reload.
They start from the ground up - making the database tables, inserting some data - before writing up the simple PHP class with methods like deleteFromCart and getCart. This lays the foundation for the next article in the series where they add in a splash of ajax to make it a bit more user-friendly.
tagged with: shoppingcart ajax prototype tutorial series
Tiger Heron Blog: First steps with PHP - booting a script, Part 2
posted Monday April 28, 2008 @ 12:57:33
voice your opinion now!
BY CHRIS CORNUTT
Tony Freixas continues his introductory look at "booting" a PHP script with part two of his series (here's part one) looking at using libraries.
In the good old days, if you wanted to create re-usable code, you would create a library of related functions or objects. Now, the excitement is all around frameworks. Everyone has one. What is the difference between the two?
He compares a library and a framework, pointing out key differences like how they fit with the application (controlled by or controlling) and dependencies they require. He rounds out his boot sequence, adding a few new parts to the structure of his example application.
tagged with: series boot script introduction library framework
Padraic Brady's Blog: An Example Zend Framework Blog Application - Part 1 Introductory Planning
posted Tuesday April 22, 2008 @ 13:28:44
voice your opinion now!
BY CHRIS CORNUTT
Padraic Brady has kicked off a new series of blog posts with part one posted today - a look at the creation of a sample Zend Framework blogging application.
Starting any new application is like walking into a shop and being dazzled by the displays. You want everything but finally realise you only have so much resources to spend. So you isolate the specifics you must have, and focus on those.
This first part focuses on the planning stages of the application. He works through the features he wants the blog to have and some of the external libraries he's going to rely on (things like PHPUnit and jQuery). His goal for the series and the application is to have something he can replace his current blog with and to provide readers a step by step detail of the progress along the way.
tagged with: zendframework blog application series example planning
IBM developerWorks: Setting up your own on-demand video site with PHP, Part 1
posted Wednesday April 02, 2008 @ 17:48:03
voice your opinion now!
BY CHRIS CORNUTT
In this first article of a new series on the IBM developerWorks site introduces you to their method for creating your own "on-demand video website" with PHP:
In Part 1 of a three-part series on creating an on-demand video site with PHP, we begin by looking at the different flavors of digital video and their particular nuances. When creating video for the Web, the overarching issue you need to keep in mind is whether you want your video to be small and easy to download or whether you want it to be the best quality possible.
They'll also show you how to convert the video into the Flash Video format to make it easy to pull into an in-page Flash player. You'll need to register or log in to get to the article.
tagged with: ondemand video tutorial series flash
Tiger Heron Blog: First steps with PHP - booting a script, Part 1
posted Wednesday March 19, 2008 @ 08:48:48
voice your opinion now!
BY CHRIS CORNUTT
On the Tiger Heron blog, there's a continuation of the series that Tony Freixas has been writing to following the beginning steps of working with PHP. First there was the download/install, then setting up a development environment. This time, he actually gets around to writing a bit of basic code.
Specifically, I will describe how I boot my PHP scripts and why I boot them the way I do. Part 1 shows how my requirements for code portability and maintainability influence the boot process. Part 2 will go into more detail about the specific steps executed by the boot code.
His basic task for the first example is to make a templating sort of system, calling a Navigation class to output links in list items. He outlines the goals of the project, what he's found for his current solution and some alternatives he's discovered along the way.
tagged with: development tutorial series environment task navigation
|