CHttpException

Le système ne peut trouver l'action « 4FQ.FUHUF@PNnS02Bv2m:FKRGS4@ » demandée.

/home/clients/c05aa288f92035b3458b22182e5695f2/web/yii-1.1.22/framework/web/CController.php(486)

474         return $this->createActionFromMap($map,$actionID,$requestActionID,$config);
475     }
476 
477     /**
478      * Handles the request whose action is not recognized.
479      * This method is invoked when the controller cannot find the requested action.
480      * The default implementation simply throws an exception.
481      * @param string $actionID the missing action name
482      * @throws CHttpException whenever this method is invoked
483      */
484     public function missingAction($actionID)
485     {
486         throw new CHttpException(404,Yii::t('yii','The system is unable to find the requested action "{action}".',
487             array('{action}'=>$actionID==''?$this->defaultAction:$actionID)));
488     }
489 
490     /**
491      * @return CAction the action currently being executed, null if no active action.
492      */
493     public function getAction()
494     {
495         return $this->_action;
496     }
497 
498     /**

Stack Trace

#4
+
 /home/clients/c05aa288f92035b3458b22182e5695f2/web/index.php(14): CApplication->run()
09 defined('YII_DEBUG') or define('YII_DEBUG',true);
10 // specify how many levels of call stack should be shown in each log message
11 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
12 
13 require_once($yii);
14 Yii::createWebApplication($config)->run();
2024-03-19 09:36:21 Apache Yii Framework/1.1.22