CHttpException Impossible de résoudre la requête « /158192 ». /data/webdev/3LTS/framework/web/CWebApplication.php(286) 274 public function runController($route) 275 { 276 if(($ca=$this->createController($route))!==null) 277 { 278 list($controller,$actionID)=$ca; 279 $oldController=$this->_controller; 280 $this->_controller=$controller; 281 $controller->init(); 282 $controller->run($actionID); 283 $this->_controller=$oldController; 284 } 285 else 286 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 287 array('{route}'=>$route===''?$this->defaultController:$route))); 288 } 289 290 /** 291 * Creates a controller instance based on a route. 292 * The route should contain the controller ID and the action ID. 293 * It may also contain additional GET variables. All these must be concatenated together with slashes. 294 * 295 * This method will attempt to create a controller in the following order: 296 *
    297 *
  1. If the first segment is found in {@link controllerMap}, the corresponding 298 * controller configuration will be used to create the controller;
  2. Stack Trace #0 + – /data/webdev/3LTS/framework/web/CWebApplication.php(141): *CWebApplication*->*runController*() 136 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 137 $_GET[$name]=$value; 138 } 139 else 140 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 141 $this->runController($route); 142 } 143 144 /** 145 * Registers the core application components. 146 * This method overrides the parent implementation by registering additional core components. #1 + – /data/webdev/3LTS/framework/base/CApplication.php(185): *CWebApplication*->*processRequest*() 180 public function run() 181 { 182 if($this->hasEventHandler('onBeginRequest')) 183 $this->onBeginRequest(new CEvent($this)); 184 register_shutdown_function(array($this,'end'),0,false); 185 $this->processRequest(); 186 if($this->hasEventHandler('onEndRequest')) 187 $this->onEndRequest(new CEvent($this)); 188 } 189 190 /** #2 + – /data/webdev/3LTS/index.php(194): *CApplication*->*run*() 189 require_once APPPATH . 'core/LSYii_Application' . EXT; 190 191 $config = require_once(APPPATH . 'config/internal' . EXT); 192 193 Yii::$enableIncludePath = false; 194 Yii::createApplication('LSYii_Application', $config)->run(); 195 196 /* End of file index.php */ 197 /* Location: ./index.php */ 2022-09-28 19:58:14 nginx/1.18.0 Yii Framework /1.1.24-dev