Now i have similar(or not) issue.
Fatal error: Uncaught exception 'Zend_Loader_PluginLoader_Exception' with
message 'Plugin by name LoggedInUser was not found in the registry.

I have in application/views/helpers/ file LoggedInUser.php

<?php
class Zend_View_Helper_LoggedInUser
{
protected $_view;
function setView($view) 
{ 
$this->_view = $view; 
} 
function loggedInUser()
{
$auth = Zend_Auth::getInstance();
if($auth->hasIdentity()) 
{
$logoutUrl = $this->_view->linkTo('login/logout');
$user = $auth->getIdentity(); 

$username = $this->_view->escape(ucfirst($user));
$string = 'Welcome ' . $username . ' |  ' .
$logoutUrl . ' Log out ';
} else {
//$loginUrl = $this->_view->linkTo('auth/identify'); #4
//$string = ' '. $loginUrl . ' Log in '; #5
}if (isset($user)) {
return $string;}
}
}

In my layout i am trying to do next:
<?php if (!$this->loggedInUser()):?>
<div id="header">.........

In bootstrap file i have:
$base  = realpath(dirname(__FILE__) . '/../');
$paths = array(
    '.', 
    $base . '/library',
    $base . '/application',
    $base . '/application/forms',
    $base . '/application/models',
);
ini_set('include_path', implode(PATH_SEPARATOR, $paths));

I would like to say that i already read similar topic here, but didnt helped
me.

Thank you very much,
Vladimir

-- 
View this message in context: 
http://www.nabble.com/One-simple-problem-tooks-me-2-hour--hope-it-will-help-someone..-tp19445706p19460458.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to