Upgrading the Zend Framework
At time of publication, the current version of the Zend Framework was 1.0.2. Upgrading to the latest version is relatively straightforward: simply replace the ./include/Zend directory with the latest version.
Firstly, you will need to download the latest version from http://framework.zend.com/download.
As an example, to upgrade to Zend Framework 1.0.3, you could use the following commands:
$ cd /var/www/phpweb20/include $ rm -r Zend $ wget http://framework.zend.com/releases/ZendFramework-1.0.3/ZendFramework-1.0.3.tar.gz $ tar -zxf ZendFramework-1.0.3.tar.gz $ mv ZendFramework-1.0.3/library/Zend . $ rm -r ZendFramework-1.0.3 $ rm ZendFramework-1.0.3.tar.gz
Note: Please refer to the Errata Page for changes that should be made to the URL generation methods.