CHttpException

系统无法找到请求的 "purifier" 动作.

E:\www\utpure\framework\web\CController.php(483)

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

Stack Trace

#4
+
 E:\www\utpure\index.php(94): CApplication->run()
89 // constant varchar import
90 require_once (dirname(__FILE__)).'/protected/config/constant.php';
91 
92 
93 require_once($yii);
94 Yii::createWebApplication($config)->run();
95 
96 
2024-03-19 11:41:11 Apache/2.4.39 (Win64) OpenSSL/1.1.1b mod_fcgid/2.3.9a mod_log_rotate/1.02 Yii Framework/1.1.17