Zend Technologies Releases Zend Framework 1.5
Developers interested in skipping the pree-release and getting down to buisiness should visit the Zend Framework QuickStart
Zend Technologies, Inc., the PHP Company, today announced the availability of version 1.5 of Zend Framework, the popular open source PHP framework. Zend Framework is an open source project best known for its support for fast, efficient creation of PHP applications. It has developed a strong community and has attracted contributions from over 400 individual and corporate-sponsored developers, including Microsoft, Fox Interactive Media, IBM and Google. Since its debut, Zend Framework has been downloaded over four million times. It can be downloaded from http://framework.zend.com.
Also available is a new Zend Framework subscription support service. It includes consulting time for inquiries related to methodology, and a guaranteed per-incident response time for addressing issues related to Zend Framework project code. For more information visit: http://www.zend.com/en/services/support/zend-framework-support.
Google and Zend continue to deliver significant enhancements to Zend Framework. Support has been added for the new YouTube APIs, making it easy to upload, watch, search, and comment on YouTube videos on PHP websites.
“With the Google Data APIs, we want to make it easy for developers to build innovative web apps that integrate with Google products. Zend and the open-sourced Zend Framework have made these APIs easily accessible to a wide range of PHP programmers,” said Tom Stocky, senior product manager for developer products at Google. “Today’s release of Zend Framework 1.5 brings new capabilities such as YouTube’s new upload and write APIs to millions of PHP programmers worldwide.”
Zend Framework is also being made available in Ubuntu, a highly regarded Linux distribution with millions of users around the world. Ubuntu 8.04 LTS, will include Zend Framework in its Universe repository and is slated for release in April of this year.
Malcolm Yates, ISV alliances manager for Ubuntu’s corporate sponsor, Canonical Ltd. expressed: “Having an open source project of the scale of Zend Framework participating as a member of the Ubuntu community is very significant – Zend and Canonical both see strong traction for Ubuntu & PHP as a preferred way to develop and deploy modern web applications.”
“We’re really pleased that Zend Framework has reached a critical mass of acceptance from the community which can be seen in the caliber of our contributors: Google, IBM, StrikeIron, and now with version 1.5, Microsoft, Fox Interactive Media, and Nirvanix,” said Andi Gutmans, CTO and co-founder at Zend Technologies. “With this latest release, Zend continues to deliver on the promise of making PHP an accessible language for building modern web applications and web services of any scope, from startup Web 2.0 sites to major business critical enterprise web applications.”
IGN Entertainment, a division of Fox Interactive Media, is using Zend Framework to create a wide variety of content across its network of gaming, entertainment, and lifestyle Web properties.
“Zend Framework is incredibly effective for IGN because it does not impose its structure, and allows us to make our own architectural decisions,” said Tony Ford, engineering manager of community sites for IGN Entertainment. “By choosing Zend Framework, we have been able to easily pick, integrate and extend components – including the excellent MVC support – into other code that is helping to drive our new IGN Community Sites platform.”
Zend Framework 1.5 now supports OpenID. and Microsoft’s InfoCard, two emerging user-centric technologies behind “Identity 2.0,” a movement from the community to simplify and fortify identity management online. It also now supports LDAP authentication and the media content storage and delivery network from Nirvanix.
Additional features in Zend Framework 1.5 include support for several new services and enhancements to already popular features that make building modern web sites easier and faster than ever:
- Forms – Zend Framework now supports forms, including Ajax usage patterns that make building and using web-based forms much easier.
- Layout and view – Layout support and view enhancements make it easier than ever to implement a consistent look and feel throughout PHP applications and save developers time by keeping web application views componentized.
- LDAP authentication – Zend Framework now comes with enterprise-ready authentication through support for LDAP technology.
- Lucene search engine – Now it is possible to implement advanced queries using wildcards, date ranges, and fuzzy searches from within a Zend Framework application.
- Extended Ajax support – Zend Framework’s server-side support for Ajax with action helpers to automate Ajax detection and responses now make programming using JavaScript & PHP much easier.
- UTF-8 character sets in Adobe PDF creation – Zend Framework’s PDF support has been enhanced to enable non-Latin character sets such as Kanji, Cyrillic, and many others.
- Google GData web services – Significant enhancements to Google Data services now make it easier than ever to build web applications that leverage the Google application network. New in Zend Framework 1.5 is support for upload and write capabilities to Google YouTube.

Comments
Thanks in advance for keeping in mind during future works people who prefer to read printed versions of such documents.
Anyway, thanks for all the work.
But why the stable version was released with bug ZF-2739 ???
Stable version of framework (1.5) should included correct file.
Maybe this is 1.5RC4? ;-)
(sorry for my english ;-))
Your English is fine, by the way.
Has anyone seen a comprehensive change list that folks can reference before blindly upgrading? ZF is still quite young and backwards compatibility breaks have been common in previous releases.
At work it's useful for me to use a PEAR channel to manage ZF installations (rather than including ZF in our own svn repository).
In the past I've used a couple of unofficial channels (pear.phpmafia.net or zend.googlecode.com/svn) to manage this, but I found them slow to upgrade to 1.5 (I'm extremely impatient).
What I'm wondering is whether Zend mind their framework being redistributed unofficially?
I have plopped ZF 1.5 on my personal server (using the "chiaraquartet" PEAR server) as one package, and here it is ...
pear channel-discover http://pear.pecanz.net/
pear install pecanz/Zend
Is this cool with you guys?
Ta
Amir
The "channel-discover" line should not include 'http://'
pear channel-discover pear.pecanz.net
pear install pecanz/Zend
(apologies)
http://svnbook.red-bean.com/en/1.0/ch07s03.html
You'd link the project into your own as:
export SVN_EDITOR=vim
svn propedit svn:externals /path/to/your/project
in the editor, add:
library/Zend http://framework.zend.com/svn/framework/tag/release-1.5.1/library/Zend
now when you checkout/update your own project, svn will checkout/update that location as well.
svn externals is a great idea, thankyou.
I guess the only drawback is having 2MB of framework in each copy of a project. This is far outweighed by the convenience factor, in my case.
Thanks
In our case at my work, I didn't want this (as we have many projects), so I had created our own shared include location. A php prepended script (specified in php.ini) is used to construct the include path from a per project config, so each project can share libraries, yet still be able to pick out a specific version, unlike PEAR.
But for most purposes svn externals are fine.
The url I posted seems to have broken, here's the new one:
http://svnbook.red-bean.com/en/1.4/svn.advanced.externals.html