CHttpException

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

/data/webdev/master/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

#1
+
 /data/webdev/master/application/controllers/AdminController.php(202): CController->run()
197         }
198 
199         $this->runModuleController($action);
200 
201 
202         return parent::run($action);
203     }
204 
205     /**
206      * Starting with LS4, 3rd party developper can extends any of the LimeSurve controllers.
207      *
#5
+
 /data/webdev/master/index.php(192): CApplication->run()
187 require_once APPPATH . 'core/LSYii_Application' . EXT;
188 
189 $config = require_once(APPPATH . 'config/internal' . EXT);
190 
191 Yii::$enableIncludePath = false;
192 Yii::createApplication('LSYii_Application', $config)->run();
193 
194 /* End of file index.php */
195 /* Location: ./index.php */
2022-03-07 11:18:47 nginx/1.18.0 Yii Framework/1.1.24-dev