Zend FR

Consultez la FAQ sur le ZF avant de poster une question

Vous n'êtes pas identifié.

#1 22-09-2013 17:49:11

vroum
Nouveau membre
Date d'inscription: 22-09-2013
Messages: 3

Socialengine erreur : exception 'Zend_Controller_Dispatcher_Exception'

Bonjour
J'utilise social engine 4.5 mais je ne peux pas installer de module
J'ai ce message d'erreur dans les fichiers log :

Code:

2013-09-22T01:28:02+00:00 CRIT (2): exception 'Zend_Controller_Dispatcher_Exception' with message 'Invalid controller specified (externals)' in /var/www/vhosts/mysite/httpdocs/application/libraries/Zend/Controller/Dispatcher/Standard.php:242
Stack trace:
#0 /var/www/vhosts/mysite/httpdocs/application/libraries/Zend/Controller/Front.php(946): Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http), Object(Zend_Controller_Response_Http))
#1 /var/www/vhosts/mysite/httpdocs/application/libraries/Zend/Application/Bootstrap/Bootstrap.php(77): Zend_Controller_Front->dispatch()
#2 /var/www/vhosts/mysite/httpdocs/application/libraries/Zend/Application.php(358): Zend_Application_Bootstrap_Bootstrap->run()
#3 /var/www/vhosts/mysite/httpdocs/install/index.php(87): Zend_Application->run()
#4 {main}

Standard.php line :

Code:

/**
         * Get controller class
         */
        if (!$this->isDispatchable($request)) {
            $controller = $request->getControllerName();
            if (!$this->getParam('useDefaultControllerAlways') && !empty($controller)) {
                // require_once 'Zend/Controller/Dispatcher/Exception.php';
                throw new Zend_Controller_Dispatcher_Exception('Invalid controller specified (' . $request->getControllerName() . ')');
            }

            $className = $this->getDefaultControllerClass($request);
        } else {
            $className = $this->getControllerClass($request);
            if (!$className) {
                $className = $this->getDefaultControllerClass($request);
            }
        }

Application.php line :

Code:

public function run()
    {
        $this->getBootstrap()->run();
    }

Bootstrap.php line :

   

Code:

 public function run()
    {
        $front   = $this->getResource('FrontController');
        $default = $front->getDefaultModule();
        if (null === $front->getControllerDirectory($default)) {
            throw new Zend_Application_Bootstrap_Exception(
                'No default controller directory registered with front controller'
            );
        }

        $front->setParam('bootstrap', $this);
        $front->dispatch();
    }
}

Front.php line :

Code:

try {
                    $dispatcher->dispatch($this->_request, $this->_response);
                } catch (Exception $e) {
                    if ($this->throwExceptions()) {
                        throw $e;
                    }
                    $this->_response->setException($e);
                }

Index.php line :

Code:

// Run
try {
  $application->bootstrap();
  $application->run();
} catch( Exception $e ) {

Vous pouvez m'aider ?
Merci

Hors ligne

 

Pied de page des forums

Propulsé par PunBB
© Copyright 2002–2005 Rickard Andersson
Traduction par punbb.fr

Graphisme réalisé par l'agence Rodolphe Eveilleau
Développement par Kitpages