CHttpException

The system is unable to find the requested action "help.html".

/home/bpc1/public_html/new/yii/framework/web/CController.php(532)

520         return $this->createActionFromMap($map,$actionID,$requestActionID,$config);
521     }
522 
523     /**
524      * Handles the request whose action is not recognized.
525      * This method is invoked when the controller cannot find the requested action.
526      * The default implementation simply throws an exception.
527      * @param string $actionID the missing action name
528      * @throws CHttpException whenever this method is invoked
529      */
530     public function missingAction($actionID)
531     {
532         throw new CHttpException(404,Yii::t('yii','The system is unable to find the requested action "{action}".',
533             array('{action}'=>$actionID==''?$this->defaultAction:$actionID)));
534     }
535 
536     /**
537      * @return CAction the action currently being executed, null if no active action.
538      */
539     public function getAction()
540     {
541         return $this->_action;
542     }
543 
544     /**

Stack Trace

#4
+
 /home/bpc1/public_html/new/index.php(12): CApplication->run()
07 defined('YII_DEBUG') or define('YII_DEBUG',true);
08 // specify how many levels of call stack should be shown in each log message
09 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
10 
11 require_once($yii);
12 Yii::createWebApplication($config)->run();
2024-03-28 03:36:23 Apache Yii Framework/1.1.19