CHttpException

Es tut uns leid, aber Ihre Sitzung ist abgelaufen.

/home/survey/public_html/application/controllers/UploaderController.php(28)

16  */
17 
18 class UploaderController extends SurveyController
19 {
20     /**
21      * @param int $actionID
22      * @return void
23      */
24     public function run($actionID)
25     {
26         $surveyid = Yii::app()->session['LEMsid'];
27         if (empty($surveyid)) {
28             throw new CHttpException(401, gT("We are sorry but your session has expired."));
29         }
30         $oSurvey = Survey::model()->findByPk($surveyid);
31         if (!$oSurvey) {
32             throw new CHttpException(400);
33         }
34 
35         $sLanguage = Yii::app()->session['survey_' . $surveyid]['s_lang'] ?? "";
36         Yii::app()->setLanguage($sLanguage);
37         $uploaddir = Yii::app()->getConfig("uploaddir");
38         $tempdir = Yii::app()->getConfig("tempdir");
39         Yii::app()->loadHelper("database");
40 

Stack Trace

#3
+
 /home/survey/public_html/index.php(161): CApplication->run()
156 require_once APPPATH . 'core/LSYii_Application' . EXT;
157 
158 $config = require_once(APPPATH . 'config/internal' . EXT);
159 
160 Yii::$enableIncludePath = false;
161 Yii::createApplication('LSYii_Application', $config)->run();
162 
163 /* End of file index.php */
164 /* Location: ./index.php */
2024-03-29 08:05:31 Apache/2.4.56 (Debian) Yii Framework/1.1.28