Stack Trace
1.
In /var/www/www.nutrimenthe.com/www/library/Bao/Registry.php, line 24
public static function get($index)
{
$instance = self::getInstance();
if (!$instance->offsetExists($index)) {
throw new Exception("Pas d'entrée enregistré pour la clé '$index'");
}
return $instance->offsetGet($index);
}
2.
In /var/www/www.nutrimenthe.com/www/library/Bao/Helper/Acl.php, line 17
{
if (!Bao_Util::isLoadedModule('acl')) {
return false;
}
Bao_Registry::get('acl')->addResource($resource);
}
/**
* Permet de définir les permissions d'un contrôleur
*
3.
In /var/www/www.nutrimenthe.com/www/library/Bao/Controller/Action.php, line 17
public function __construct(Bao_Controller_Request $request, Bao_Controller_Response $response)
{
$this->request = $request;
$this->response = $response;
Bao_Helper_Acl
::addResource(get_class($this));
$this->init();
$this->initAcl();
}
4.
In /var/www/www.nutrimenthe.com/www/library/Bao/Controller/Dispatcher.php, line 60
// Action method
$action_method_name = $this->getActionMethodName($request);
// Instance du controller
$controller_instance = new $controller_class_name($request, $response);
$reflection_class = new ReflectionClass($controller_class_name);
if (!$reflection_class->hasMethod($action_method_name)) {
throw new Bao_Exception_ActionNotFound("Action '$action_method_name' de '$controller_class_name' introuvable.");
5.
In /var/www/www.nutrimenthe.com/www/library/Bao/Controller/Front.php, line 194
->addParam('controller', $controller)
->addParam('action', $action);
$dispatcher = $this->getDispatcher();
$dispatcher->dispatch($this->request, $this->response);
$this->response->setDisableAutoRenderView();
}
public function action
($module, $controller, $action, array $params = array())
{
6.
In /var/www/www.nutrimenthe.com/www/library/Bao/Controller/Front.php, line 163
$this
->response
->setStatusHeader($status_header)
->setDisableAutoRenderView(false);
$this->forward('default', 'error', $action, $params);
$data = Bao_Layout::getInstance()->getContext();
$body = $this->response->getBody();
$layout = new Bao_Layout();
$layout_name = (($this->request->getParam('admin', false)) ? 'admin' : 'index');
7.
In /var/www/www.nutrimenthe.com/www/public/index.php, line 177
$geshi = new GeSHi();
$exceptionHandler = new ExceptionHandler($libraryPath, $geshi);
$errorHandler = new ErrorHandler($libraryPath, $geshi);
$front->dispatch();