Search code examples
zend-frameworkzend-server

Action Helper by name EntityManger not found


Just started building an app with the zend framework. I've working on a zend server 5.5. When I try to open the first controller I created, I get the following error message:

Application Error
Message: Action Helper by name EntityManager not found

Stack trace:
#0 c:\Program Files (x86)\Zend\ZendServer\share\ZendFramework\library\Zend\Controller\Action\HelperBroker.php(293): Zend_Controller_Action_HelperBroker::_loadHelper('EntityManager')
...

My guess is that I'm missing a library, but I'm not sure which one. Anyone know?


Solution

  • Where do you register the Helper? Do you register the helper in the Boostrap or in the application.ini?

    Where is the helper located? Please try to give more information concering that.

    Anyways, it looks like you are using a standard setup, so you have to register the /path/to/your/helper with the Action Helper Broker.

    For indepth information check the documentation