Note that a leading slash in the path variable can also trigger this error:

$this->view->addHelperPath('/My/Helper/', 'My_Helper'); //error
$this->view->addHelperPath('My/Helper/', 'My_Helper'); //valid

This can get confusing as the 
http://framework.zend.com/manual/en/zend.view.helpers.html documentation 
provides examples with the leading slash:

// Add /path/to/some/helpers with class prefix 'My_View_Helper'
$view->addHelperPath('/path/to/some/helpers', 'My_View_Helper');

-- 
View this message in context: 
http://www.nabble.com/Zend_Loader_PluginLoader_Exception%27-with-message-%27Plugin-by-name-%27PluginName%27-was-not-found-in-the-registry-tp20911986p21880768.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to