Found the solution. I have this at the start of my boostrap

        $moduleLoader = new Zend_Application_Module_Autoloader(array(
            'namespace' => '', 
            'basePath'  => APPLICATION_PATH));
        return $moduleLoader; 

the return $moduleLoader basicaly doesnt allow the rest of the boostrap to
be executed! Moved the
Zend_Controller_Action_HelperBroker::addPrefix('Helper'); in its own init
method and everything works!




asagala wrote:
> 
> Hi,
> 
> Cant seem to get my Action Helpers to be discovered by Zend. I have read a
> couple of articles but still cant seem to get them to work.
> 
> i have this line in the Bootstrap.php
> 
> Zend_Controller_Action_HelperBroker::addPrefix('Helper');
> 
> My file structure is like this
> App\
>  --library\
>  ----Helper\ 
>    ------Helper_DateTimezone.php
> 
> Class definition is like this
> class Helper_DateTimezone extends Zend_Controller_Action_Helper_Abstract
> 
> Also checked that the library folder was in my path with this function
> get_include_path(); 
> 
> Anyone have a clue. 
> 

-- 
View this message in context: 
http://old.nabble.com/Action-Helpers-not-found-tp26047888p26154274.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to