First I am relatively new to Zend (I'm just in a process of migrating to it). Two questions...
1) Where do I have to put "$front->registerPlugin()" - in the BootStrap file or somerhwere else?
2) Do I have the Application_* classes ready to be used with the internal autoloader?
PS: Sorry to be lazy I've read some articles but they are not the "quick start" I've expected them to be.
There are 10 types of people in this world, those who understand binary and those who don't
Put it in a path Application/Plugin/ relative to a path on your include path. The other option is to simply use a require_once() Make sure your application's namespace is either added to the auto loader, or you've enabled 'fallback auto loading' (fallback auto loading just loads anywhere on the include_path regardless of class prefix, that's what I currently use)