Zend Framework in Ubuntu 8.04
With the release of Hardy, the Ubuntu repositories now include a package for the Zend Framework, so you can have just one copy of the library on your server that is automatically updated. To install and use this:
sudo apt-get install zend-framework
then add it to the include_path for your app, in a .htaccess file:
php_value include_path '.:/usr/share/php/libzend-framework-php'
you can then require in Zend Framework classes as you need them, or use the Zend autoloader to pull them in automatically when instantiated.
Please login to post a comment.