> When the OP asked the question, these changes weren't in the repository
> yet. He'ssince updated me that everything was working for him.

Right. After SVN rev 3004 everything worked fine for me and there's even a nice 
documentation:
http://framework.zend.com/wiki/display/ZFDOCDEV/5.6.+Using+a+Conventional+Modular+Directory+Structure

GREAT THANKS, Matthew!

Cheers,
Philip


P.S. nope, not every every everything is working fine. this won't:

$front->setControllerDirectory(array( 
      'default' => array('/path/to/application/controllers'), 
      'blog'    => '/path/to/application/blog/controllers' 
));

Fatal error: Uncaught exception 'Zend_Controller_Dispatcher_Exception' with 
message 'Directory "Array" not found or not readable' in 
/zf/library/Zend/Controller/ModuleDispatcher.php:81

This does:

$front->setControllerDirectory(array( 
      'default' => '/path/to/application/controllers',
      'blog'    => '/path/to/application/blog/controllers'
));

Thanks for fixing.

Reply via email to