http://framework.zend.com/manual/en/zend.controller.front.html#zend.controller.front.methods.primary (7.3.2.4.):
Zend_Controller_Front::run($path) is a static method taking simply a path to a directory containing controllers. It fetches a front controller instance (via getInstance(), registers the path provided via setControllerDirectory(), and finally dispatches. I haven't tested it but it seems very logical that you can't access registers in your controllers that are not defined before the dispatch process is started. Define your registers before calling Zend_Controller_Front::run($path) or take a closer look at how the front controller works: http://framework.zend.com/manual/en/zend.controller.html -- View this message in context: http://www.nabble.com/unclear-example-of-using-of-zend-registry-tf3425165s16154.html#a11863442 Sent from the Zend Framework mailing list archive at Nabble.com.
