View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update | 
|---|---|---|---|---|---|
| 14682 | Bug reports | Survey editing | public | 2019-03-23 18:07 | 2019-04-02 16:41 | 
| Reporter | DenisChenu | Assigned To | DenisChenu | ||
| Priority | none | Severity | partial_block | ||
| Status | closed | Resolution | fixed | ||
| Product Version | 3.16.x | ||||
| Fixed in Version | 3.17.x | ||||
| Summary | 14682: When deactivation survey with debug 1 : receive a CDbException | ||||
| Description | There are situation where when admin user can receive a CDbException when deactivate survey  | ||||
| Steps To Reproduce | I try to reproduce but after have it 3 times … i can't find the complete way to reproduce (set debug to 0, reset to 1)… When i get back with browser : i see the alert «survey can not be dectaviated because it's not activated) : survey seems deactivate OK.  | ||||
| Tags | No tags attached. | ||||
| Attached Files |  CDbException.html (31,704 bytes)   
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>CDbException</title>
<style type="text/css">
/*<![CDATA[*/
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;margin:0;padding:0;}
body{line-height:1;}
ol,ul{list-style:none;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:none;}
:focus{outline:0;}
ins{text-decoration:none;}
del{text-decoration:line-through;}
table{border-collapse:collapse;border-spacing:0;}
body {
	font: normal 9pt "Verdana";
	color: #000;
	background: #fff;
}
h1 {
	font: normal 18pt "Verdana";
	color: #f00;
	margin-bottom: .5em;
}
h2 {
	font: normal 14pt "Verdana";
	color: #800000;
	margin-bottom: .5em;
}
h3 {
	font: bold 11pt "Verdana";
}
pre {
	font: normal 11pt Menlo, Consolas, "Lucida Console", Monospace;
}
pre span.error {
	display: block;
	background: #fce3e3;
}
pre span.ln {
	color: #999;
	padding-right: 0.5em;
	border-right: 1px solid #ccc;
}
pre span.error-ln {
	font-weight: bold;
}
.container {
	margin: 1em 4em;
}
.version {
	color: gray;
	font-size: 8pt;
	border-top: 1px solid #aaa;
	padding-top: 1em;
	margin-bottom: 1em;
}
.message {
	color: #000;
	padding: 1em;
	font-size: 11pt;
	background: #f3f3f3;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	margin-bottom: 1em;
	line-height: 160%;
}
.source {
	margin-bottom: 1em;
}
.code pre {
	background-color: #ffe;
	margin: 0.5em 0;
	padding: 0.5em;
	line-height: 125%;
	border: 1px solid #eee;
}
.source .file {
	margin-bottom: 1em;
	font-weight: bold;
}
.traces {
	margin: 2em 0;
}
.trace {
	margin: 0.5em 0;
	padding: 0.5em;
}
.trace.app {
	border: 1px dashed #c00;
}
.trace .number {
	text-align: right;
	width: 2em;
	padding: 0.5em;
}
.trace .content {
	padding: 0.5em;
}
.trace .plus,
.trace .minus {
	display:inline;
	vertical-align:middle;
	text-align:center;
	border:1px solid #000;
	color:#000;
	font-size:10px;
	line-height:10px;
	margin:0;
	padding:0 1px;
	width:10px;
	height:10px;
}
.trace.collapsed .minus,
.trace.expanded .plus,
.trace.collapsed pre {
	display: none;
}
.trace-file {
	cursor: pointer;
	padding: 0.2em;
}
.trace-file:hover {
	background: #f0ffff;
}
/*]]>*/
</style>
</head>
<body>
<div class="container">
	<h1>CDbException</h1>
	<p class="message">
		La table « {{survey_777735}} » associée à la classe Active record « SurveyDynamic » est introuvable dans la base de données.	</p>
	<div class="source">
		<p class="file">/mnt/data/shnoulle/nginx/www/master/framework/db/ar/CActiveRecord.php(2390)</p>
		<div class="code"><pre><span class="ln">2378</span> 
<span class="ln">2379</span>     /**
<span class="ln">2380</span>      * Constructor.
<span class="ln">2381</span>      * @param CActiveRecord $model the model instance
<span class="ln">2382</span>      * @throws CDbException if specified table for active record class cannot be found in the database
<span class="ln">2383</span>      */
<span class="ln">2384</span>     public function __construct($model)
<span class="ln">2385</span>     {
<span class="ln">2386</span>         $this->_modelClassName=get_class($model);
<span class="ln">2387</span> 
<span class="ln">2388</span>         $tableName=$model->tableName();
<span class="ln">2389</span>         if(($table=$model->getDbConnection()->getSchema()->getTable($tableName))===null)
<span class="error"><span class="ln error-ln">2390</span>             throw new CDbException(Yii::t('yii','The table "{table}" for active record class "{class}" cannot be found in the database.',
</span><span class="ln">2391</span>                 array('{class}'=>$this->_modelClassName,'{table}'=>$tableName)));
<span class="ln">2392</span>                 
<span class="ln">2393</span>         if(($modelPk=$model->primaryKey())!==null || $table->primaryKey===null)
<span class="ln">2394</span>         {
<span class="ln">2395</span>             $table->primaryKey=$modelPk;
<span class="ln">2396</span>             if(is_string($table->primaryKey) && isset($table->columns[$table->primaryKey]))
<span class="ln">2397</span>                 $table->columns[$table->primaryKey]->isPrimaryKey=true;
<span class="ln">2398</span>             elseif(is_array($table->primaryKey))
<span class="ln">2399</span>             {
<span class="ln">2400</span>                 foreach($table->primaryKey as $name)
<span class="ln">2401</span>                 {
<span class="ln">2402</span>                     if(isset($table->columns[$name]))
</pre></div>	</div>
	<div class="traces">
		<h2>Stack Trace</h2>
				<table style="width:100%;">
						<tbody><tr class="trace core collapsed">
			<td class="number">
				#0			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/master/framework/db/ar/CActiveRecord.php(413): <strong>CActiveRecordMetaData</strong>-><strong>__construct</strong>(SurveyDynamic)				</div>
				<div class="code"><pre><span class="ln">408</span>     {
<span class="ln">409</span>         $className=get_class($this);
<span class="ln">410</span>         if(!array_key_exists($className,self::$_md))
<span class="ln">411</span>         {
<span class="ln">412</span>             self::$_md[$className]=null; // preventing recursive invokes of {@link getMetaData()} via {@link __get()}
<span class="error"><span class="ln error-ln">413</span>             self::$_md[$className]=new CActiveRecordMetaData($this);
</span><span class="ln">414</span>         }
<span class="ln">415</span>         return self::$_md[$className];
<span class="ln">416</span>     }
<span class="ln">417</span> 
<span class="ln">418</span>     /**
</pre></div>			</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#1			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/master/framework/db/ar/CActiveRecord.php(682): <strong>CActiveRecord</strong>-><strong>getMetaData</strong>()				</div>
				<div class="code"><pre><span class="ln">677</span>      * @param string $name attribute name
<span class="ln">678</span>      * @return boolean whether this AR has the named attribute (table column).
<span class="ln">679</span>      */
<span class="ln">680</span>     public function hasAttribute($name)
<span class="ln">681</span>     {
<span class="error"><span class="ln error-ln">682</span>         return isset($this->getMetaData()->columns[$name]);
</span><span class="ln">683</span>     }
<span class="ln">684</span> 
<span class="ln">685</span>     /**
<span class="ln">686</span>      * Returns the named attribute value.
<span class="ln">687</span>      * If this is a new record and the attribute is not set before,
</pre></div>			</td>
		</tr>
						<tr class="trace app expanded">
			<td class="number">
				#2			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/master/application/models/LSActiveRecord.php(34): <strong>CActiveRecord</strong>-><strong>hasAttribute</strong>("created")				</div>
				<div class="code"><pre><span class="ln">29</span>      * @return array
<span class="ln">30</span>      */
<span class="ln">31</span>     public function behaviors()
<span class="ln">32</span>     {
<span class="ln">33</span>         $aBehaviors = array();
<span class="error"><span class="ln error-ln">34</span>         $sCreateFieldName = ($this->hasAttribute('created') ? 'created' : null);
</span><span class="ln">35</span>         $sUpdateFieldName = ($this->hasAttribute('modified') ? 'modified' : null);
<span class="ln">36</span>         $sDriverName = Yii::app()->db->getDriverName();
<span class="ln">37</span>         if ($sDriverName == 'sqlsrv' || $sDriverName == 'dblib') {
<span class="ln">38</span>             $sTimestampExpression = new CDbExpression('GETDATE()');
<span class="ln">39</span>         } else {
</pre></div>			</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#3			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/master/framework/db/ar/CActiveRecord.php(398): <strong>LSActiveRecord</strong>-><strong>behaviors</strong>()				</div>
				<div class="code"><pre><span class="ln">393</span>         if(isset(self::$_models[$className]))
<span class="ln">394</span>             return self::$_models[$className];
<span class="ln">395</span>         else
<span class="ln">396</span>         {
<span class="ln">397</span>             $model=self::$_models[$className]=new $className(null);
<span class="error"><span class="ln error-ln">398</span>             $model->attachBehaviors($model->behaviors());
</span><span class="ln">399</span>             return $model;
<span class="ln">400</span>         }
<span class="ln">401</span>     }
<span class="ln">402</span> 
<span class="ln">403</span>     /**
</pre></div>			</td>
		</tr>
						<tr class="trace app expanded">
			<td class="number">
				#4			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/master/application/models/SurveyDynamic.php(54): <strong>CActiveRecord</strong>::<strong>model</strong>("SurveyDynamic")				</div>
				<div class="code"><pre><span class="ln">49</span>             self::$survey = $survey;
<span class="ln">50</span>             $refresh = true;
<span class="ln">51</span>         }
<span class="ln">52</span> 
<span class="ln">53</span>         /** @var self $model */
<span class="error"><span class="ln error-ln">54</span>         $model = parent::model(__CLASS__);
</span><span class="ln">55</span> 
<span class="ln">56</span>         //We need to refresh if we changed sid
<span class="ln">57</span>         if ($refresh === true) {
<span class="ln">58</span>             $model->refreshMetaData();
<span class="ln">59</span>         }
</pre></div>			</td>
		</tr>
						<tr class="trace app expanded">
			<td class="number">
				#5			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/master/application/helpers/replacements_helper.php(225): <strong>SurveyDynamic</strong>::<strong>model</strong>("777735")				</div>
				<div class="code"><pre><span class="ln">220</span>     }
<span class="ln">221</span> 
<span class="ln">222</span>     $_linkreplace = '';
<span class="ln">223</span> 
<span class="ln">224</span>     if (isset($thissurvey['sid']) && isset($_SESSION['survey_'.$thissurvey['sid']]['srid']) && $thissurvey['active'] == 'Y') {
<span class="error"><span class="ln error-ln">225</span>         $iscompleted = $thissurvey['iscompleted'] = SurveyDynamic::model($surveyid)->isCompleted($_SESSION['survey_'.$thissurvey['sid']]['srid']);
</span><span class="ln">226</span>     } else {
<span class="ln">227</span>         $iscompleted = $thissurvey['iscompleted'] = false;
<span class="ln">228</span>     }
<span class="ln">229</span> 
<span class="ln">230</span>     if (isset($surveyid) && isset($_SESSION['survey_'.$surveyid]['srid'])) {
</pre></div>			</td>
		</tr>
						<tr class="trace app collapsed">
			<td class="number">
				#6			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/master/application/helpers/expressions/em_manager_helper.php(3685): <strong>templatereplace</strong>("{SID}")				</div>
				<div class="code"><pre><span class="ln">3680</span>                     'jsName'=>'',
<span class="ln">3681</span>                     'readWrite'=>'N',
<span class="ln">3682</span>                 );
<span class="ln">3683</span>             }
<span class="ln">3684</span>             /* Add the core replacement before question code : needed if use it in equation , use SID to never send error */
<span class="error"><span class="ln error-ln">3685</span>             templatereplace("{SID}");
</span><span class="ln">3686</span> 
<span class="ln">3687</span>             // Since building array of allowable answers, need to know preset values for certain question types
<span class="ln">3688</span>             $presets = array();
<span class="ln">3689</span>             $presets['G'] = array(  //GENDER drop-down list
<span class="ln">3690</span>             'M' => $this->gT("Male"),
</pre></div>			</td>
		</tr>
						<tr class="trace app collapsed">
			<td class="number">
				#7			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/master/application/helpers/expressions/em_manager_helper.php(4921): <strong>LimeExpressionManager</strong>-><strong>setVariableAndTokenMappingsForExpressionManager</strong>("777735")				</div>
				<div class="code"><pre><span class="ln">4916</span>                 $LEM->em->StartProcessingGroup(
<span class="ln">4917</span>                     isset($_SESSION['LEMsid']) ? $_SESSION['LEMsid'] : NULL,
<span class="ln">4918</span>                     '',
<span class="ln">4919</span>                     true
<span class="ln">4920</span>                 );
<span class="error"><span class="ln error-ln">4921</span>                 $LEM->setVariableAndTokenMappingsForExpressionManager($_SESSION['LEMsid']);
</span><span class="ln">4922</span>             }
<span class="ln">4923</span> 
<span class="ln">4924</span>         }
<span class="ln">4925</span> 
<span class="ln">4926</span>         /**
</pre></div>			</td>
		</tr>
						<tr class="trace app collapsed">
			<td class="number">
				#8			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/master/application/core/Survey_Common_Action.php(335): <strong>LimeExpressionManager</strong>::<strong>StartProcessingPage</strong>(false, true)				</div>
				<div class="code"><pre><span class="ln">330</span>                 $aData['oSurvey'] = Survey::model()->findByPk($aData['surveyid']);
<span class="ln">331</span> 
<span class="ln">332</span>                 // Needed to evaluate EM expressions in question summary
<span class="ln">333</span>                 // See bug #11845
<span class="ln">334</span>                 LimeExpressionManager::SetSurveyId($aData['surveyid']);
<span class="error"><span class="ln error-ln">335</span>                 LimeExpressionManager::StartProcessingPage(false,true);
</span><span class="ln">336</span> 
<span class="ln">337</span>                 $renderFile = $basePath.'/layout_insurvey.php';
<span class="ln">338</span>             } else {
<span class="ln">339</span>                 $renderFile = $basePath.'/layout_main.php';
<span class="ln">340</span>             }
</pre></div>			</td>
		</tr>
						<tr class="trace app collapsed">
			<td class="number">
				#9			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/master/application/controllers/admin/surveyadmin.php(2273): <strong>Survey_Common_Action</strong>-><strong>_renderWrappedTemplate</strong>("survey",
 "deactivateSurvey_view", array("aSurveysettings" => 
array("htmlemail" => "Y", "format" => "G", "template" => 
"skelvanilla", "language" => "en", ...), "surveyid" => "777735", 
"title_bar" => array("title" => "Test random with Expression 
Manager (Identifiant (ID) :777735)"), "surveybar" => 
array("closebutton" => false), ...), false)				</div>
				<div class="code"><pre><span class="ln">2268</span>      * @param string|array $aViewUrls View url(s)
<span class="ln">2269</span>      * @param array $aData Data to be passed on. Optional.
<span class="ln">2270</span>      */
<span class="ln">2271</span>     protected function _renderWrappedTemplate($sAction = 'survey', $aViewUrls = array(), $aData = array(), $sRenderFile = false)
<span class="ln">2272</span>     {
<span class="error"><span class="ln error-ln">2273</span>         parent::_renderWrappedTemplate($sAction, $aViewUrls, $aData, $sRenderFile);
</span><span class="ln">2274</span>     }
<span class="ln">2275</span> 
<span class="ln">2276</span>     /**
<span class="ln">2277</span>      * Apply current theme options for imported survey theme
<span class="ln">2278</span>      *
</pre></div>			</td>
		</tr>
						<tr class="trace app collapsed">
			<td class="number">
				#10			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/master/application/controllers/admin/surveyadmin.php(826): <strong>SurveyAdmin</strong>-><strong>_renderWrappedTemplate</strong>("survey",
 "deactivateSurvey_view", array("aSurveysettings" => 
array("htmlemail" => "Y", "format" => "G", "template" => 
"skelvanilla", "language" => "en", ...), "surveyid" => "777735", 
"title_bar" => array("title" => "Test random with Expression 
Manager (Identifiant (ID) :777735)"), "surveybar" => 
array("closebutton" => false), ...))				</div>
				<div class="code"><pre><span class="ln">821</span>             Yii::app()->db->schema->refresh();
<span class="ln">822</span>         }
<span class="ln">823</span> 
<span class="ln">824</span>         $aData['sidemenu']['state'] = false;
<span class="ln">825</span>         $aData['surveybar']['closebutton'] = false;
<span class="error"><span class="ln error-ln">826</span>         $this->_renderWrappedTemplate('survey', 'deactivateSurvey_view', $aData);
</span><span class="ln">827</span>     }
<span class="ln">828</span> 
<span class="ln">829</span>     /**
<span class="ln">830</span>      * Function responsible to activate survey.
<span class="ln">831</span>      *
</pre></div>			</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#11			</td>
			<td class="content">
				<div class="trace-file">
										 unknown(0): <strong>SurveyAdmin</strong>-><strong>deactivate</strong>("777735")				</div>
							</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#12			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/master/framework/web/actions/CAction.php(109): <strong>ReflectionMethod</strong>-><strong>invokeArgs</strong>(SurveyAdmin, array("777735"))				</div>
				<div class="code"><pre><span class="ln">104</span>             elseif($param->isDefaultValueAvailable())
<span class="ln">105</span>                 $ps[]=$param->getDefaultValue();
<span class="ln">106</span>             else
<span class="ln">107</span>                 return false;
<span class="ln">108</span>         }
<span class="error"><span class="ln error-ln">109</span>         $method->invokeArgs($object,$ps);
</span><span class="ln">110</span>         return true;
<span class="ln">111</span>     }
<span class="ln">112</span> }
</pre></div>			</td>
		</tr>
						<tr class="trace app collapsed">
			<td class="number">
				#13			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/master/application/core/Survey_Common_Action.php(83): <strong>CAction</strong>-><strong>runWithParamsInternal</strong>(SurveyAdmin,
 ReflectionMethod, array("r" => 
"admin/survey/sa/deactivate/surveyid/777735", "sa" => "deactivate", 
"surveyid" => "777735", "iSurveyId" => "777735", ...))				</div>
				<div class="code"><pre><span class="ln">78</span>             $oMethod = new ReflectionMethod($this, $sDefault);
<span class="ln">79</span>         }
<span class="ln">80</span> 
<span class="ln">81</span>         // We're all good to go, let's execute it
<span class="ln">82</span>         // runWithParamsInternal would automatically get the parameters of the method and populate them as required with the params
<span class="error"><span class="ln error-ln">83</span>         return parent::runWithParamsInternal($this, $oMethod, $params);
</span><span class="ln">84</span>     }
<span class="ln">85</span> 
<span class="ln">86</span>     /**
<span class="ln">87</span>      * Some functions have different parameters, which are just an alias of the
<span class="ln">88</span>      * usual parameters we're getting in the url. This function just populates
</pre></div>			</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#14			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/master/framework/web/CController.php(308): <strong>Survey_Common_Action</strong>-><strong>runWithParams</strong>(array("r"
 => "admin/survey/sa/deactivate/surveyid/777735", "sa" => 
"deactivate", "surveyid" => "777735", "iSurveyId" => "777735", 
...))				</div>
				<div class="code"><pre><span class="ln">303</span>     {
<span class="ln">304</span>         $priorAction=$this->_action;
<span class="ln">305</span>         $this->_action=$action;
<span class="ln">306</span>         if($this->beforeAction($action))
<span class="ln">307</span>         {
<span class="error"><span class="ln error-ln">308</span>             if($action->runWithParams($this->getActionParams())===false)
</span><span class="ln">309</span>                 $this->invalidActionParams($action);
<span class="ln">310</span>             else
<span class="ln">311</span>                 $this->afterAction($action);
<span class="ln">312</span>         }
<span class="ln">313</span>         $this->_action=$priorAction;
</pre></div>			</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#15			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/master/framework/web/CController.php(286): <strong>CController</strong>-><strong>runAction</strong>(SurveyAdmin)				</div>
				<div class="code"><pre><span class="ln">281</span>      * @see runAction
<span class="ln">282</span>      */
<span class="ln">283</span>     public function runActionWithFilters($action,$filters)
<span class="ln">284</span>     {
<span class="ln">285</span>         if(empty($filters))
<span class="error"><span class="ln error-ln">286</span>             $this->runAction($action);
</span><span class="ln">287</span>         else
<span class="ln">288</span>         {
<span class="ln">289</span>             $priorAction=$this->_action;
<span class="ln">290</span>             $this->_action=$action;
<span class="ln">291</span>             CFilterChain::create($this,$action,$filters)->run();
</pre></div>			</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#16			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/master/framework/web/CController.php(265): <strong>CController</strong>-><strong>runActionWithFilters</strong>(SurveyAdmin, array())				</div>
				<div class="code"><pre><span class="ln">260</span>         {
<span class="ln">261</span>             if(($parent=$this->getModule())===null)
<span class="ln">262</span>                 $parent=Yii::app();
<span class="ln">263</span>             if($parent->beforeControllerAction($this,$action))
<span class="ln">264</span>             {
<span class="error"><span class="ln error-ln">265</span>                 $this->runActionWithFilters($action,$this->filters());
</span><span class="ln">266</span>                 $parent->afterControllerAction($this,$action);
<span class="ln">267</span>             }
<span class="ln">268</span>         }
<span class="ln">269</span>         else
<span class="ln">270</span>             $this->missingAction($actionID);
</pre></div>			</td>
		</tr>
						<tr class="trace app collapsed">
			<td class="number">
				#17			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/master/application/controllers/AdminController.php(158): <strong>CController</strong>-><strong>run</strong>("survey")				</div>
				<div class="code"><pre><span class="ln">153</span>                     $this->redirect(array('/admin/authentication/sa/login'));
<span class="ln">154</span>                 }
<span class="ln">155</span>             }
<span class="ln">156</span>         }
<span class="ln">157</span> 
<span class="error"><span class="ln error-ln">158</span>         return parent::run($action);
</span><span class="ln">159</span>     }
<span class="ln">160</span> 
<span class="ln">161</span>     /**
<span class="ln">162</span>      * Routes all the actions to their respective places
<span class="ln">163</span>      *
</pre></div>			</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#18			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/master/framework/web/CWebApplication.php(282): <strong>AdminController</strong>-><strong>run</strong>("survey")				</div>
				<div class="code"><pre><span class="ln">277</span>         {
<span class="ln">278</span>             list($controller,$actionID)=$ca;
<span class="ln">279</span>             $oldController=$this->_controller;
<span class="ln">280</span>             $this->_controller=$controller;
<span class="ln">281</span>             $controller->init();
<span class="error"><span class="ln error-ln">282</span>             $controller->run($actionID);
</span><span class="ln">283</span>             $this->_controller=$oldController;
<span class="ln">284</span>         }
<span class="ln">285</span>         else
<span class="ln">286</span>             throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".',
<span class="ln">287</span>                 array('{route}'=>$route===''?$this->defaultController:$route)));
</pre></div>			</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#19			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/master/framework/web/CWebApplication.php(141): <strong>CWebApplication</strong>-><strong>runController</strong>("admin/survey/sa/deactivate/surveyid/777735")				</div>
				<div class="code"><pre><span class="ln">136</span>             foreach(array_splice($this->catchAllRequest,1) as $name=>$value)
<span class="ln">137</span>                 $_GET[$name]=$value;
<span class="ln">138</span>         }
<span class="ln">139</span>         else
<span class="ln">140</span>             $route=$this->getUrlManager()->parseUrl($this->getRequest());
<span class="error"><span class="ln error-ln">141</span>         $this->runController($route);
</span><span class="ln">142</span>     }
<span class="ln">143</span> 
<span class="ln">144</span>     /**
<span class="ln">145</span>      * Registers the core application components.
<span class="ln">146</span>      * This method overrides the parent implementation by registering additional core components.
</pre></div>			</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#20			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/master/framework/base/CApplication.php(185): <strong>CWebApplication</strong>-><strong>processRequest</strong>()				</div>
				<div class="code"><pre><span class="ln">180</span>     public function run()
<span class="ln">181</span>     {
<span class="ln">182</span>         if($this->hasEventHandler('onBeginRequest'))
<span class="ln">183</span>             $this->onBeginRequest(new CEvent($this));
<span class="ln">184</span>         register_shutdown_function(array($this,'end'),0,false);
<span class="error"><span class="ln error-ln">185</span>         $this->processRequest();
</span><span class="ln">186</span>         if($this->hasEventHandler('onEndRequest'))
<span class="ln">187</span>             $this->onEndRequest(new CEvent($this));
<span class="ln">188</span>     }
<span class="ln">189</span> 
<span class="ln">190</span>     /**
</pre></div>			</td>
		</tr>
						<tr class="trace app collapsed">
			<td class="number">
				#21			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										 /mnt/data/shnoulle/nginx/www/master/index.php(194): <strong>CApplication</strong>-><strong>run</strong>()				</div>
				<div class="code"><pre><span class="ln">189</span> require_once APPPATH . 'core/LSYii_Application' . EXT;
<span class="ln">190</span> 
<span class="ln">191</span> $config = require_once(APPPATH . 'config/internal' . EXT);
<span class="ln">192</span> 
<span class="ln">193</span> Yii::$enableIncludePath = false;
<span class="error"><span class="ln error-ln">194</span> Yii::createApplication('LSYii_Application', $config)->run();
</span><span class="ln">195</span> 
<span class="ln">196</span> /* End of file index.php */
<span class="ln">197</span> /* Location: ./index.php */
</pre></div>			</td>
		</tr>
				</tbody></table>
	</div>
	<div class="version">
		2019-03-23 16:59:23 nginx/1.14.2 <a href="http://www.yiiframework.com/">Yii Framework</a>/1.1.20	</div>
</div>
<script type="text/javascript">
/*<![CDATA[*/
var traceReg = new RegExp("(^|\\s)trace-file(\\s|$)");
var collapsedReg = new RegExp("(^|\\s)collapsed(\\s|$)");
var e = document.getElementsByTagName("div");
for(var j=0,len=e.length;j<len;j++){
	if(traceReg.test(e[j].className)){
		e[j].onclick = function(){
			var trace = this.parentNode.parentNode;
			if(collapsedReg.test(trace.className))
				trace.className = trace.className.replace("collapsed", "expanded");
			else
				trace.className = trace.className.replace("expanded", "collapsed");
		}
	}
}
/*]]>*/
</script>
</body></html> | ||||
| Bug heat | 2 | ||||
| Complete LimeSurvey version number (& build) | 3.16.1 github | ||||
| I will donate to the project if issue is resolved | No | ||||
| Browser | not relevant (FF) | ||||
| Database type & version | mariadb | ||||
| Server OS (if known) | fedora/linux and debian/linux | ||||
| Webserver software & version (if known) | nginx and apache2 | ||||
| PHP Version | php7.2 | ||||
| Date Modified | Username | Field | Change | 
|---|---|---|---|
| 2019-03-23 18:07 | DenisChenu | New Issue | |
| 2019-03-23 18:07 | DenisChenu | File Added: CDbException.html | |
| 2019-03-23 18:10 | DenisChenu | Steps to Reproduce Updated | |
| 2019-03-30 19:46 | DenisChenu | Assigned To | => DenisChenu | 
| 2019-03-30 19:46 | DenisChenu | Status | new => assigned | 
| 2019-03-30 20:05 | DenisChenu | Status | assigned => resolved | 
| 2019-03-30 20:05 | DenisChenu | Resolution | open => fixed | 
| 2019-03-30 20:05 | DenisChenu | Fixed in Version | => 3.16.x | 
| 2019-03-30 20:05 | DenisChenu | Note Added: 51224 | |
| 2019-04-02 16:41 | ollehar | Status | resolved => closed | 
| 2019-04-02 16:41 | ollehar | Fixed in Version | 3.16.x => 3.17.x | 
| 2019-11-01 17:25 | c_schmitz | Category | Survey design => Survey editing |