PHP 5.3 is released!

It’s happened! PHP 5.3 has been released. This version was a long time coming and as such has lots of new features and bug fixes.

The key new features for me are:

There is a migration guide available, but you should also check out Cal Evans’ migration notes over at TechPortal too.

You can download it directly now, or wait for your favourite distribution to package it for you soon!

Posted by Rob on 30th June 2009 under Around the web & News | No Comments »

Registering front controller plugins in Zend Framework 1.8

Wenbert Del Rosario has posted an article on how to register a front controller plugin using Zend Framework 1.8.

With ZF 1.8, we can now use the application.ini file and he shows the format of the lines required, along with setting it up so that you use your own name space.

Posted by Rob on 20th June 2009 under Around the web | No Comments »

Zend Framework Modular applications

Jeroen-Keppens has written a good article on how to create a modular application with Zend Framework:

I like my code nicely seperated in manageable blocks, that I can reuse whenever I want. Needless to say, I’m a big fan of the modules in Zend Framework. It isn’t always very easy to set it up though.

He covers how to set up modules using the zf command line tool along with a module bootstrap, before covering views and models. Reading this article will certainly help you understand how to use modules in your apps.

Posted by Rob on 18th June 2009 under Around the web | No Comments »

Todo list worked tutorial in Zend Framework

Greg, over at threadaffinity has written the first in a series of articles about creating a todo list application using Zend Framework:

A while back we posted a blog entry on a simple Zend Framework example using Zend_Auth. The example consisted of a basic website that re-directed the user to a login page when they tried to access a restricted area of the site (eg. their Account page). Well some time passed and we got a little older and wiser in terms of using Zend Framework so we decided to try again – this time with a little more ambitious goals.

There’s already a demo site up, where you can download the source code.

Posted by Rob on 18th June 2009 under Around the web | 1 Comment »

Simple Zend Framework tutorial

Ryan Mauger has produced a simple tutorial showing how to implement the basic CRUD operations using Zend Framwork.

Creating a nice, easy to maintain form, starts with a form class. Creating your forms procedurally in your controller/actions is horrid. please don’t do it.

Read the article.

Posted by Rob on 18th June 2009 under Around the web | No Comments »

All about Zend_Tool in ZF 1.8

Ralph Schindler has written and article on Zend_Tool and ZF 1.8 on devzone. In it he explains what Zend_Tool is and how to use it.

Instead of whipping together a system that was targeted specifically for creating ZF based applications, specifically on the command line, and strictly generating code and not modifying existing code, we set out to build a system extensible in every regard that should concern a developer. Zend_Tool was designed to facilitate abstraction at all the necessary points where we felt that developers would want to extend the system.

He then goes on to show what Zend_Tool can currently do using a series of screenshots.

Posted by Rob on 4th May 2009 under Around the web | Comments Off

Zend Framework 1.8 released!

Zend Framework 1.8, has been released!

From the read me, new features include:

  • Zend_Tool, contributed by Ralph Schindler
  • Zend_Application, contributed by Ben Scholzen and Matthew Weier O’Phinney
  • Zend_Navigation, contributed by Robin Skoglund
  • Zend_CodeGenerator, by Ralph Schindler
  • Zend_Reflection, Ralph Schindler and Matthew Weier O’Phinney
  • Zend Server backend for Zend_Cache, contributed by Alexander Veremyev
  • Zend_Service_Amazon_Ec2, contributed by Jon Whitcraft
  • Zend_Service_Amazon_S3, Justin Plock and Stas Malyshev
  • Zend_Filter_Encrypt, contributed by Thomas Weidner
  • Zend_Filter_Decrypt, contributed by Thomas Weidner
  • Support for file upload progress support in Zend_File_Transfer, contributed by Thomas Weidner
  • Translation-aware routes, contributed by Ben Scholzen
  • Zend_Json expression support, contributed by Benjamin Eberlei and Oscar Reales
  • Zend_Http_Client_Adapter_Curl, contributed by Benjamin Eberlei
  • SOAP input and output header support, contributed by Alexander Veremyev
  • Support for keyword field search using query strings, contributed by Alexander Veremyev
  • Support for searching across multiple indexes in Zend_Search_Lucene, contributed by Alexander Veremyev
  • Support for page scaling, shifting and skewing in Zend_Pdf, contributed by Alexander Veremyev
  • Locale support in Zend_Validate_Int and Zend_Validate_Float, contributed by Thomas Weidner
  • Phonecode support in Zend_Locale, contributed by Thomas Weidner
  • Zend_Validate_Iban, contributed by Thomas Weidner
  • Zend_Validate_File_WordCount, contributed by Thomas Weidner

Download it here.

I have also completely revised and updated my Zend Framework tutorial over at akrabat.com to support the new Zend_Tool command line tool and Zend_Application for bootstrapping.

Posted by Rob on 1st May 2009 under News | 6 Comments »

Zend_Tag_Cloud screencast

Ben Scholzen has posted a screencast showing how to use the new Zend_Tag_Cloud component that will be in Zend Framework version 1.8.

The video goes though how to create a tag cloud where each tag has a title, weight and optional URL. Zend_Tag_Cloud will automatically render the tags as unsigned lists with appropriate font sizes to show the relative weights of each tag.

He then shows how to style the list so that it looks like a traditional tag cloud that you see around the web.

Posted by Rob on 29th April 2009 under Around the web | Comments Off

Zend Framework 1.8 beta 1

The march towards the release of version 1.8 of Zend Framework continues with the first beta release. From the announcement:

Please download and test this release thoroughly over the next few days so that we can fix any urgent issues or documentation problems before the final release next week. Please remember to provide feedback on our issue tracker and ask any questions on the appropriate mailing list. Again, the Zend Framework community does NOT recommend this release for production use. We do, however, recommend evaluating new features in this release with existing and new applications.

Download and test your sites now!

Posted by Rob on 23rd April 2009 under News | Comments Off

Some notes about uploading files with Zend_File_Element_File

Thomas Weidner has written up how to receive files with Zend_Form_Element_File. If you are having problems trying to get a file uploaded properly, then have a read and it should all become clear.

Posted by Rob on 17th April 2009 under Around the web | Comments Off

Next »