-- Rob Allen <[email protected]> wrote (on Sunday, 26 April 2009, 08:54 AM +0100): > Using svn trunk (revision 15159) Anyone else seeing this problem with zf > create action: > > > $ zf create project zftest > Creating project at /www/tmp/zftest > > $ cd zftest/ > $ zf create action test > > Fatal error: Class 'Zend_Controller_Action' not found in /www/tmp/ > zftest/application/controllers/IndexController.php on line 3
Ralph confirmed this on Friday, and if he doesn't have a fix in yet, he should have one in sometime today. Basically, with the advent of Zend_Application, we don't need to use require_once statement within our controllers (since autoloading is on by default). The trick, then, is getting autoloading setup correctly per your application when doing class reflection -- which is what Ralph is working on. -- Matthew Weier O'Phinney Project Lead | [email protected] Zend Framework | http://framework.zend.com/
