CHttpException

The system is unable to find the requested action "Booking".

/var/www/html/yii/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
+
 /var/www/html/index.php(16): CApplication->run()
11 defined('YII_DEBUG') or define('YII_DEBUG',true);
12 // specify how many levels of call stack should be shown in each log message
13 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
14 
15 require_once($yii);
16 Yii::createWebApplication($config)->run();
2024-03-19 15:44:26 Apache/2.4.6 (CentOS) OpenSSL/1.0.1e-fips Yii Framework/1.1.17