/mnt/data/shnoulle/nginx/www/master/application/helpers/expressions/em_core_helper.php(1300)
1288 $errs = $this->RDP_errs; 1289 $tokens = $this->RDP_tokens; 1290 $errCount = count($errs); 1291 $errIndex = 0; 1292 if ($errCount > 0) { 1293 usort($errs, "cmpErrorTokens"); 1294 } 1295 $stringParts = array(); 1296 $numTokens = count($tokens); 1297 $globalErrs = array(); 1298 $bHaveError = false; 1299 while ($errIndex < $errCount) { 1300 if ($errs[$errIndex++][1][1] == 0) { 1301 // General message, associated with position 0 1302 $globalErrs[] = $errs[$errIndex - 1][0]; 1303 $bHaveError = true; 1304 } else { 1305 --$errIndex; 1306 break; 1307 } 1308 } 1309 for ($i = 0; $i < $numTokens; ++$i) { 1310 $token = $tokens[$i]; 1311 $messages = array(); 1312 $thisTokenHasError = false;
#0 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/helpers/expressions/em_manager_helper.php(6938): ExpressionManager->GetPrettyPrintString() 6933 $updatedValues[$sgqa] = $_update; 6934 $LEM->updatedValues[$sgqa] = $_update; 6935 6936 if (($LEM->debugLevel & LEM_DEBUG_VALIDATION_DETAIL) == LEM_DEBUG_VALIDATION_DETAIL) 6937 { 6938 $prettyPrintEqn = $LEM->em->GetPrettyPrintString(); 6939 $debug_qmessage .= '** Process Hidden but Relevant Equation [' . $sgqa . '](' . $prettyPrintEqn . ') => ' . $result . "<br />\n"; 6940 } 6941 } 6942 6943 // Process Default : 1st part : update in DB if actually relevant and not already set |
#1 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/helpers/expressions/em_manager_helper.php(5907): LimeExpressionManager->_ValidateQuestion(3, true) 5902 $LEM->maxGroupSeq = $LEM->currentGroupSeq; 5903 } 5904 5905 $LEM->ProcessAllNeededRelevance($LEM->currentQuestionSeq); 5906 $LEM->_CreateSubQLevelRelevanceAndValidationEqns($LEM->currentQuestionSeq); 5907 $result = $LEM->_ValidateQuestion($LEM->currentQuestionSeq,$force); 5908 $message .= $result['message']; 5909 $updatedValues = array_merge($updatedValues,$result['updatedValues']); 5910 $gRelInfo = $LEM->gRelInfo[$LEM->currentGroupSeq]; 5911 $grel = $gRelInfo['result']; 5912 |
#2 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/helpers/expressions/em_manager_helper.php(9425): LimeExpressionManager::JumpTo(3, true, false, true) 9420 if (!is_null($qid)) 9421 { 9422 $surveyMode='question'; 9423 LimeExpressionManager::StartSurvey($sid, 'question', $surveyOptions, false,$LEMdebugLevel); 9424 $qseq = LimeExpressionManager::GetQuestionSeq($qid); 9425 $moveResult = LimeExpressionManager::JumpTo($qseq+1,true,false,true); 9426 } 9427 else if (!is_null($gid)) 9428 { 9429 $surveyMode='group'; 9430 LimeExpressionManager::StartSurvey($sid, 'group', $surveyOptions, false,$LEMdebugLevel); |
#3 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/controllers/admin/expressions.php(141): LimeExpressionManager::ShowSurveyLogicFile("377324", "128", "1506", 39, ...) 136 137 LimeExpressionManager::SetDirtyFlag(); 138 139 Yii::app()->setLanguage(Yii::app()->session['adminlang']); 140 141 $aData['result'] = LimeExpressionManager::ShowSurveyLogicFile($sid, $gid, $qid, $LEMdebugLevel, $assessments); 142 143 if (Yii::app()->request->getParam('printable', 0) == 1) { 144 $html = "<html><body>"; 145 $html .= "<style> 146 @page { |
#4 |
unknown(0): Expressions->survey_logic_file()
|
#5 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/actions/CAction.php(109): ReflectionMethod->invokeArgs(Expressions, array()) 104 elseif($param->isDefaultValueAvailable()) 105 $ps[]=$param->getDefaultValue(); 106 else 107 return false; 108 } 109 $method->invokeArgs($object,$ps); 110 return true; 111 } 112 } |
#6 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/core/Survey_Common_Action.php(83): CAction->runWithParamsInternal(Expressions,
ReflectionMethod, array("r" =>
"admin/expressions/sa/survey_logic_file/sid/377324/gid/128/qid/15...",
1542907573092 => "", "sa" => "survey_logic_file", "sid" =>
"377324", ...)) 78 $oMethod = new ReflectionMethod($this, $sDefault); 79 } 80 81 // We're all good to go, let's execute it 82 // runWithParamsInternal would automatically get the parameters of the method and populate them as required with the params 83 return parent::runWithParamsInternal($this, $oMethod, $params); 84 } 85 86 /** 87 * Some functions have different parameters, which are just an alias of the 88 * usual parameters we're getting in the url. This function just populates |
#7 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CController.php(308): Survey_Common_Action->runWithParams(array("r"
=>
"admin/expressions/sa/survey_logic_file/sid/377324/gid/128/qid/15...",
1542907573092 => "", "sa" => "survey_logic_file", "sid" =>
"377324", ...)) 303 { 304 $priorAction=$this->_action; 305 $this->_action=$action; 306 if($this->beforeAction($action)) 307 { 308 if($action->runWithParams($this->getActionParams())===false) 309 $this->invalidActionParams($action); 310 else 311 $this->afterAction($action); 312 } 313 $this->_action=$priorAction; |
#8 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CController.php(286): CController->runAction(Expressions) 281 * @see runAction 282 */ 283 public function runActionWithFilters($action,$filters) 284 { 285 if(empty($filters)) 286 $this->runAction($action); 287 else 288 { 289 $priorAction=$this->_action; 290 $this->_action=$action; 291 CFilterChain::create($this,$action,$filters)->run(); |
#9 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CController.php(265): CController->runActionWithFilters(Expressions, array()) 260 { 261 if(($parent=$this->getModule())===null) 262 $parent=Yii::app(); 263 if($parent->beforeControllerAction($this,$action)) 264 { 265 $this->runActionWithFilters($action,$this->filters()); 266 $parent->afterControllerAction($this,$action); 267 } 268 } 269 else 270 $this->missingAction($actionID); |
#10 |
+
–
/mnt/data/shnoulle/nginx/www/master/application/controllers/AdminController.php(158): CController->run("expressions") 153 $this->redirect(array('/admin/authentication/sa/login')); 154 } 155 } 156 } 157 158 return parent::run($action); 159 } 160 161 /** 162 * Routes all the actions to their respective places 163 * |
#11 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CWebApplication.php(282): AdminController->run("expressions") 277 { 278 list($controller,$actionID)=$ca; 279 $oldController=$this->_controller; 280 $this->_controller=$controller; 281 $controller->init(); 282 $controller->run($actionID); 283 $this->_controller=$oldController; 284 } 285 else 286 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 287 array('{route}'=>$route===''?$this->defaultController:$route))); |
#12 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/web/CWebApplication.php(141): CWebApplication->runController("admin/expressions/sa/survey_logic_file/sid/377324/gid/128/qid/15...") 136 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 137 $_GET[$name]=$value; 138 } 139 else 140 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 141 $this->runController($route); 142 } 143 144 /** 145 * Registers the core application components. 146 * This method overrides the parent implementation by registering additional core components. |
#13 |
+
–
/mnt/data/shnoulle/nginx/www/master/framework/base/CApplication.php(185): CWebApplication->processRequest() 180 public function run() 181 { 182 if($this->hasEventHandler('onBeginRequest')) 183 $this->onBeginRequest(new CEvent($this)); 184 register_shutdown_function(array($this,'end'),0,false); 185 $this->processRequest(); 186 if($this->hasEventHandler('onEndRequest')) 187 $this->onEndRequest(new CEvent($this)); 188 } 189 190 /** |
#14 |
+
–
/mnt/data/shnoulle/nginx/www/master/index.php(194): CApplication->run() 189 require_once APPPATH . 'core/LSYii_Application' . EXT; 190 191 $config = require_once(APPPATH . 'config/internal' . EXT); 192 193 Yii::$enableIncludePath = false; 194 Yii::createApplication('LSYii_Application', $config)->run(); 195 196 /* End of file index.php */ 197 /* Location: ./index.php */ |
Application Log | ||||
---|---|---|---|---|
Timestamp | Level | Category | Message | |
17:26:40.127675 | error | php | Undefined offset: 1 (/mnt/data/shnoulle/nginx/www/master/application/helpers/expressions/em_core_helper.php:1300) Stack trace: #0 /mnt/data/shnoulle/nginx/www/master/application/helpers/expressions/em_manager_helper.php(9425): JumpTo() #1 /mnt/data/shnoulle/nginx/www/master/application/controllers/admin/expressions.php(141): ShowSurveyLogicFile() #2 unknown(0): Expressions->survey_logic_file() #3 /mnt/data/shnoulle/nginx/www/master/framework/web/actions/CAction.php(109): ReflectionMethod->invokeArgs() #4 /mnt/data/shnoulle/nginx/www/master/application/core/Survey_Common_Action.php(83): Expressions->runWithParamsInternal() #5 /mnt/data/shnoulle/nginx/www/master/framework/web/CController.php(308): Expressions->runWithParams() #6 /mnt/data/shnoulle/nginx/www/master/framework/web/CController.php(286): AdminController->runAction() #7 /mnt/data/shnoulle/nginx/www/master/framework/web/CController.php(265): AdminController->runActionWithFilters() #8 /mnt/data/shnoulle/nginx/www/master/application/controllers/AdminController.php(158): AdminController->run() #9 /mnt/data/shnoulle/nginx/www/master/framework/web/CWebApplication.php(282): AdminController->run() #10 /mnt/data/shnoulle/nginx/www/master/framework/web/CWebApplication.php(141): LSYii_Application->runController() #11 /mnt/data/shnoulle/nginx/www/master/framework/base/CApplication.php(185): LSYii_Application->processRequest() #12 /mnt/data/shnoulle/nginx/www/master/index.php(194): LSYii_Application->run() REQUEST_URI=/master/index.php?r=admin/expressions/sa/survey_logic_file/sid/377324/gid/128/qid/1506&1542907573092 |