I installed ZFCUser successfully. Now I wonder if there is a way to globally check for authentication.
ZFCUser
As outlined in the wiki there ar
Another option might be to create your own abstract controller superclass and implement the onDispatch() method like this:
public function onDispatch(MvcEvent $e) { // check authentication here return parent::onDispatch($e); }
You can implement a whitelist there too :).