Zend Framework Tutorial 1.0.3
Another minor update with some more bugs fixed. Thanks Holger and Develucas!
I've also added an explicit note that the tutorial only works with version 0.1.5 of the Zend Framework. Supporting the development trunk from subversion would be too much work for me!
I intend to have a good look at the whole rewrite base thing and see if I can work out what does and doesn't work.

September 14th, 2006 at 12:22 #
Hi :) exactly the same bug as before, on pages 15,16,18, change the path into 'zf-tutorial/application/controllers/IndexController.php'. I didn't notice that earlier :)
September 14th, 2006 at 13:50 #
aargh!
Version 1.0.4 now out!
Thanks develucas :)
September 27th, 2006 at 13:26 #
I'm having a problem with PDO. I load all the extensions, but I still get the error.
I have mysql 5.0.22.
PDO doesn't work with mysql 5?
September 27th, 2006 at 13:42 #
PDO works just fine with my MySQL 5.0.22. Have you also enabled the php_pdo.dll extension?
October 6th, 2006 at 04:07 #
Great tutorial! I was wondering if you had any tips, though, on major changes that've since been going on with ZF's developer builds. I can't even get my front controller to work. Otherwise, do you know of where there might be more documentation on the latest svn releases?
October 6th, 2006 at 07:20 #
Hi delsvr,
Lots of changes to the MVC part of the ZF are in progress at the moment, so I'd recommend sticking with 0.1.5 until 0.2 comes out.
When I get some time, I intend to go through the changes and write some notes.
October 29th, 2006 at 17:25 #
"Note that we do not put in the ?> at the end of the file as it is not needed and leaving it out ca
prevent some hard-to-debug errors."
Can you explain what type of errors I'll prevent leaving ?> out?
October 29th, 2006 at 20:59 #
Hi Denix,
The most common problem is putting whitespace after the ?> which results in the "headers not sent" problem.
Regards,
Rob...