Zend Framework Tutorial: Version 1.1
It turns out that there are hardly any changes required to make the tutorial code compatible with version 0.2 of the Zend Framework! The only changes I had to make were to the index.php file. The two changes needed were: Zend_Config construction You now create a Zend_Config_Ini directly: $config = new Zend_Config_Ini('./application/config.ini', 'general'); is all that's needed now! Front Controller instantiation For the original tutorial, I needed a special route for compatibility. This is now… continue reading.