View Issue Details

This bug affects 1 person(s).
 4
IDProjectCategoryView StatusLast Update
09890Bug reportsSurvey editingpublic2016-02-12 10:55
ReporterDenisChenu Assigned ToDenisChenu  
PrioritynormalSeverityminor 
Status closedResolutionfixed 
Product Version2.06+ 
Fixed in Version2.50.x 
Summary09890: Bad survey + debug at 2 : unable to see something at admin part
Description

I have a bad survey (don't know how i had this one ...) : 'language' => null

Then if i set debug at 2 : unable to go at admin page. Due to survey list

Steps To Reproduce

set one of your survey language to null (Maybe an old language removed when removing language: at a time : we have a bug here where defult langage can be removed with old survey and imported language

Additional Information

I have it on another installation.

TagsNo tags attached.
Attached Files
PHP notice.html (18,500 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>PHP notice</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>PHP notice</h1>

	<p class="message">
		Trying to get property of non-object	</p>

	<div class="source">
		<p class="file">/home/sondages.pro/htdocs/demonstrations/demonstration/application/helpers/common_helper.php(203)</p>
		<div class="code"><pre><span class="ln">191</span>     $timeadjust = getGlobalSetting('timeadjust');
<span class="ln">192</span>     App()-&gt;setLanguage((isset(Yii::app()-&gt;session['adminlang']) ? Yii::app()-&gt;session['adminlang'] : 'en'));
<span class="ln">193</span> 
<span class="ln">194</span>     if(is_null($cached)) {
<span class="ln">195</span>         $surveyidresult = Survey::model()
<span class="ln">196</span>             -&gt;permission(Yii::app()-&gt;user-&gt;getId())
<span class="ln">197</span>             -&gt;with('defaultlanguage')
<span class="ln">198</span>             -&gt;findAll(array('order'=&gt;'surveyls_title'));
<span class="ln">199</span> 
<span class="ln">200</span>         $surveynames = array();
<span class="ln">201</span>         foreach ($surveyidresult as $result)
<span class="ln">202</span>         {
<span class="error"><span class="ln error-ln">203</span>             $surveynames[] = array_merge($result-&gt;attributes, $result-&gt;defaultlanguage-&gt;attributes);
</span><span class="ln">204</span>         }
<span class="ln">205</span> 
<span class="ln">206</span>         $cached = $surveynames;
<span class="ln">207</span>     } else {
<span class="ln">208</span>         $surveynames = $cached;
<span class="ln">209</span>     }
<span class="ln">210</span>     $surveyselecter = "";
<span class="ln">211</span>     if ($returnarray===true) return $surveynames;
<span class="ln">212</span>     $activesurveys='';
<span class="ln">213</span>     $inactivesurveys='';
<span class="ln">214</span>     $expiredsurveys='';
<span class="ln">215</span>     if ($surveynames)
</pre></div>	</div>

	<div class="traces">
		<h2>Stack Trace</h2>
				<table style="width:100%;">
						<tbody><tr class="trace app expanded">
			<td class="number">
				#0			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/application/controllers/admin/surveyadmin.php(50): <strong>getSurveyList</strong>(true)				</div>

				<div class="code"><pre><span class="ln">45</span>     * @return void
<span class="ln">46</span>     */
<span class="ln">47</span>     public function index()
<span class="ln">48</span>     {
<span class="ln">49</span>         App()-&gt;getClientScript()-&gt;registerPackage('jqgrid');
<span class="error"><span class="ln error-ln">50</span>         if (count(getSurveyList(true)) == 0)
</span><span class="ln">51</span>         {
<span class="ln">52</span>             $this-&gt;_renderWrappedTemplate('super', 'firststeps');
<span class="ln">53</span>         } else {
<span class="ln">54</span>             App()-&gt;getClientScript()-&gt;registerScriptFile(Yii::app()-&gt;getConfig('adminscripts') . "listsurvey.js");
<span class="ln">55</span>             Yii::app()-&gt;loadHelper('surveytranslator');
</pre></div>			</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#1			</td>
			<td class="content">
				<div class="trace-file">
										&nbsp;unknown(0): <strong>SurveyAdmin</strong>-&gt;<strong>index</strong>()				</div>

							</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#2			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/framework/web/actions/CAction.php(108): <strong>ReflectionMethod</strong>-&gt;<strong>invokeArgs</strong>(SurveyAdmin, array())				</div>

				<div class="code"><pre><span class="ln">103</span>             elseif($param-&gt;isDefaultValueAvailable())
<span class="ln">104</span>                 $ps[]=$param-&gt;getDefaultValue();
<span class="ln">105</span>             else
<span class="ln">106</span>                 return false;
<span class="ln">107</span>         }
<span class="error"><span class="ln error-ln">108</span>         $method-&gt;invokeArgs($object,$ps);
</span><span class="ln">109</span>         return true;
<span class="ln">110</span>     }
<span class="ln">111</span> }
</pre></div>			</td>
		</tr>
						<tr class="trace app expanded">
			<td class="number">
				#3			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/application/core/Survey_Common_Action.php(99): <strong>CAction</strong>-&gt;<strong>runWithParamsInternal</strong>(SurveyAdmin, ReflectionMethod, array())				</div>

				<div class="code"><pre><span class="ln">094</span>             $oMethod = new ReflectionMethod($this, $sDefault);
<span class="ln">095</span>         }
<span class="ln">096</span> 
<span class="ln">097</span>         // We're all good to go, let's execute it
<span class="ln">098</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">099</span>         return parent::runWithParamsInternal($this, $oMethod, $params);
</span><span class="ln">100</span>     }
<span class="ln">101</span> 
<span class="ln">102</span>     /**
<span class="ln">103</span>     * Some functions have different parameters, which are just an alias of the
<span class="ln">104</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">
				#4			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/framework/web/CController.php(308): <strong>Survey_Common_Action</strong>-&gt;<strong>runWithParams</strong>(array())				</div>

				<div class="code"><pre><span class="ln">303</span>     {
<span class="ln">304</span>         $priorAction=$this-&gt;_action;
<span class="ln">305</span>         $this-&gt;_action=$action;
<span class="ln">306</span>         if($this-&gt;beforeAction($action))
<span class="ln">307</span>         {
<span class="error"><span class="ln error-ln">308</span>             if($action-&gt;runWithParams($this-&gt;getActionParams())===false)
</span><span class="ln">309</span>                 $this-&gt;invalidActionParams($action);
<span class="ln">310</span>             else
<span class="ln">311</span>                 $this-&gt;afterAction($action);
<span class="ln">312</span>         }
<span class="ln">313</span>         $this-&gt;_action=$priorAction;
</pre></div>			</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#5			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/framework/web/CController.php(286): <strong>CController</strong>-&gt;<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-&gt;runAction($action);
</span><span class="ln">287</span>         else
<span class="ln">288</span>         {
<span class="ln">289</span>             $priorAction=$this-&gt;_action;
<span class="ln">290</span>             $this-&gt;_action=$action;
<span class="ln">291</span>             CFilterChain::create($this,$action,$filters)-&gt;run();
</pre></div>			</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#6			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/framework/web/CController.php(265): <strong>CController</strong>-&gt;<strong>runActionWithFilters</strong>(SurveyAdmin, array())				</div>

				<div class="code"><pre><span class="ln">260</span>         {
<span class="ln">261</span>             if(($parent=$this-&gt;getModule())===null)
<span class="ln">262</span>                 $parent=Yii::app();
<span class="ln">263</span>             if($parent-&gt;beforeControllerAction($this,$action))
<span class="ln">264</span>             {
<span class="error"><span class="ln error-ln">265</span>                 $this-&gt;runActionWithFilters($action,$this-&gt;filters());
</span><span class="ln">266</span>                 $parent-&gt;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-&gt;missingAction($actionID);
</pre></div>			</td>
		</tr>
						<tr class="trace app expanded">
			<td class="number">
				#7			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/application/controllers/AdminController.php(164): <strong>CController</strong>-&gt;<strong>run</strong>("survey")				</div>

				<div class="code"><pre><span class="ln">159</span>                     $this-&gt;redirect(array('/admin/authentication/sa/login'));
<span class="ln">160</span>                 }
<span class="ln">161</span> 
<span class="ln">162</span>             }
<span class="ln">163</span> 
<span class="error"><span class="ln error-ln">164</span>             return parent::run($action);
</span><span class="ln">165</span>     }
<span class="ln">166</span> 
<span class="ln">167</span>     /**
<span class="ln">168</span>     * Routes all the actions to their respective places
<span class="ln">169</span>     *
</pre></div>			</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#8			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/framework/web/CWebApplication.php(282): <strong>AdminController</strong>-&gt;<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-&gt;_controller;
<span class="ln">280</span>             $this-&gt;_controller=$controller;
<span class="ln">281</span>             $controller-&gt;init();
<span class="error"><span class="ln error-ln">282</span>             $controller-&gt;run($actionID);
</span><span class="ln">283</span>             $this-&gt;_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}'=&gt;$route===''?$this-&gt;defaultController:$route)));
</pre></div>			</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#9			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/framework/web/CWebApplication.php(141): <strong>CWebApplication</strong>-&gt;<strong>runController</strong>("admin/survey")				</div>

				<div class="code"><pre><span class="ln">136</span>             foreach(array_splice($this-&gt;catchAllRequest,1) as $name=&gt;$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-&gt;getUrlManager()-&gt;parseUrl($this-&gt;getRequest());
<span class="error"><span class="ln error-ln">141</span>         $this-&gt;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">
				#10			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/framework/base/CApplication.php(184): <strong>CWebApplication</strong>-&gt;<strong>processRequest</strong>()				</div>

				<div class="code"><pre><span class="ln">179</span>     public function run()
<span class="ln">180</span>     {
<span class="ln">181</span>         if($this-&gt;hasEventHandler('onBeginRequest'))
<span class="ln">182</span>             $this-&gt;onBeginRequest(new CEvent($this));
<span class="ln">183</span>         register_shutdown_function(array($this,'end'),0,false);
<span class="error"><span class="ln error-ln">184</span>         $this-&gt;processRequest();
</span><span class="ln">185</span>         if($this-&gt;hasEventHandler('onEndRequest'))
<span class="ln">186</span>             $this-&gt;onEndRequest(new CEvent($this));
<span class="ln">187</span>     }
<span class="ln">188</span> 
<span class="ln">189</span>     /**
</pre></div>			</td>
		</tr>
						<tr class="trace app collapsed">
			<td class="number">
				#11			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/index.php(211): <strong>CApplication</strong>-&gt;<strong>run</strong>()				</div>

				<div class="code"><pre><span class="ln">206</span>         die (sprintf('%s should be writable by the webserver (766 or 776).', $runtimePath));
<span class="ln">207</span>     }
<span class="ln">208</span> }
<span class="ln">209</span> 
<span class="ln">210</span> Yii::$enableIncludePath = false;
<span class="error"><span class="ln error-ln">211</span> Yii::createApplication('LSYii_Application', $config)-&gt;run();
</span><span class="ln">212</span> 
<span class="ln">213</span> /* End of file index.php */
<span class="ln">214</span> /* Location: ./index.php */
</pre></div>			</td>
		</tr>
				</tbody></table>
	</div>

	<div class="version">
		2015-09-16 15:13:20 Apache/2.2.22 (Debian) <a href="http://www.yiiframework.com/">Yii Framework</a>/1.1.15	</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>
PHP notice.html (18,500 bytes)   
CDbException.html (34,292 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 valeur de la colonne « surveyls_language » n'est pas fournie lors 
de la requête de la table « lime_surveys_languagesettings ».	</p>

	<div class="source">
		<p class="file">/home/sondages.pro/htdocs/demonstrations/demonstration/framework/db/schema/CDbCommandBuilder.php(813)</p>
		<div class="code"><pre><span class="ln">801</span> 
<span class="ln">802</span>                 for($i=0;$i&lt;$n;++$i)
<span class="ln">803</span>                 {
<span class="ln">804</span>                     if(isset($values[$i][$name]))
<span class="ln">805</span>                     {
<span class="ln">806</span>                         $value=$table-&gt;columns[$name]-&gt;typecast($values[$i][$name]);
<span class="ln">807</span>                         if(is_string($value))
<span class="ln">808</span>                             $values[$i][$name]=$db-&gt;quoteValue($value);
<span class="ln">809</span>                         else
<span class="ln">810</span>                             $values[$i][$name]=$value;
<span class="ln">811</span>                     }
<span class="ln">812</span>                     else
<span class="error"><span class="ln error-ln">813</span>                         throw new CDbException(Yii::t('yii','The value for the column "{column}" is not supplied when querying the table "{table}".',
</span><span class="ln">814</span>                             array('{table}'=&gt;$table-&gt;name,'{column}'=&gt;$name)));
<span class="ln">815</span>                 }
<span class="ln">816</span>             }
<span class="ln">817</span>             if(count($values)===1)
<span class="ln">818</span>             {
<span class="ln">819</span>                 $entries=array();
<span class="ln">820</span>                 foreach($values[0] as $name=&gt;$value)
<span class="ln">821</span>                     $entries[]=$prefix.$table-&gt;columns[$name]-&gt;rawName.($value===null?' IS NULL':'='.$value);
<span class="ln">822</span>                 return implode(' AND ',$entries);
<span class="ln">823</span>             }
<span class="ln">824</span> 
<span class="ln">825</span>             return $this-&gt;createCompositeInCondition($table,$values,$prefix);
</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>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/framework/db/schema/CDbCommandBuilder.php(621): <strong>CDbCommandBuilder</strong>-&gt;<strong>createInCondition</strong>(CMysqlTableSchema,
 array("surveyls_survey_id", "surveyls_language"), 
array(array("surveyls_survey_id" =&gt; "146955", "surveyls_language" 
=&gt; null)), "`t`.")				</div>

				<div class="code"><pre><span class="ln">616</span>             $prefix=$this-&gt;_schema-&gt;quoteTableName($criteria-&gt;alias).'.';
<span class="ln">617</span>         if(!is_array($pk)) // single key
<span class="ln">618</span>             $pk=array($pk);
<span class="ln">619</span>         if(is_array($table-&gt;primaryKey) &amp;&amp; !isset($pk[0]) &amp;&amp; $pk!==array()) // single composite key
<span class="ln">620</span>             $pk=array($pk);
<span class="error"><span class="ln error-ln">621</span>         $condition=$this-&gt;createInCondition($table,$table-&gt;primaryKey,$pk,$prefix);
</span><span class="ln">622</span>         if($criteria-&gt;condition!='')
<span class="ln">623</span>             $criteria-&gt;condition=$condition.' AND ('.$criteria-&gt;condition.')';
<span class="ln">624</span>         else
<span class="ln">625</span>             $criteria-&gt;condition=$condition;
<span class="ln">626</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>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/framework/db/ar/CActiveRecord.php(1485): <strong>CDbCommandBuilder</strong>-&gt;<strong>createPkCriteria</strong>(CMysqlTableSchema, array("surveyls_survey_id" =&gt; "146955", "surveyls_language" =&gt; null), "", array(), ...)				</div>

				<div class="code"><pre><span class="ln">1480</span>      */
<span class="ln">1481</span>     public function findByPk($pk,$condition='',$params=array())
<span class="ln">1482</span>     {
<span class="ln">1483</span>         Yii::trace(get_class($this).'.findByPk()','system.db.ar.CActiveRecord');
<span class="ln">1484</span>         $prefix=$this-&gt;getTableAlias(true).'.';
<span class="error"><span class="ln error-ln">1485</span>         $criteria=$this-&gt;getCommandBuilder()-&gt;createPkCriteria($this-&gt;getTableSchema(),$pk,$condition,$params,$prefix);
</span><span class="ln">1486</span>         return $this-&gt;query($criteria);
<span class="ln">1487</span>     }
<span class="ln">1488</span> 
<span class="ln">1489</span>     /**
<span class="ln">1490</span>      * Finds all active records with the specified primary keys.
</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>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/application/helpers/common_helper.php(1130): <strong>CActiveRecord</strong>-&gt;<strong>findByPk</strong>(array("surveyls_survey_id" =&gt; "146955", "surveyls_language" =&gt; null))				</div>

				<div class="code"><pre><span class="ln">1125</span>     {
<span class="ln">1126</span>         $thissurvey=$staticSurveyInfo[$surveyid][$languagecode];
<span class="ln">1127</span>     }
<span class="ln">1128</span>     else
<span class="ln">1129</span>     {
<span class="error"><span class="ln error-ln">1130</span>         $result = SurveyLanguageSetting::model()-&gt;with('survey')-&gt;findByPk(array('surveyls_survey_id' =&gt; $surveyid, 'surveyls_language' =&gt; $languagecode));
</span><span class="ln">1131</span>         if (is_null($result)) {
<span class="ln">1132</span>             // When additional language was added, but not saved it does not exists
<span class="ln">1133</span>             // We should revert to the base language then
<span class="ln">1134</span>             $languagecode=Survey::model()-&gt;findByPk($surveyid)-&gt;language;
<span class="ln">1135</span>             $result = SurveyLanguageSetting::model()-&gt;with('survey')-&gt;findByPk(array('surveyls_survey_id' =&gt; $surveyid, 'surveyls_language' =&gt; $languagecode));
</pre></div>			</td>
		</tr>
						<tr class="trace app expanded">
			<td class="number">
				#3			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										
&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/application/helpers/expressions/em_manager_helper.php(4731):
 <strong>getSurveyInfo</strong>("146955")				</div>

				<div class="code"><pre><span class="ln">4726</span>             $LEM-&gt;allOnOnePage=$allOnOnePage;
<span class="ln">4727</span>             $LEM-&gt;processedRelevance=false;
<span class="ln">4728</span>             $LEM-&gt;surveyOptions['hyperlinkSyntaxHighlighting']=true;    // this will be temporary - should be reset in running survey
<span class="ln">4729</span>             $LEM-&gt;qid2exclusiveAuto=array();
<span class="ln">4730</span> 
<span class="error"><span class="ln error-ln">4731</span>             $surveyinfo = (isset($LEM-&gt;sid) ? getSurveyInfo($LEM-&gt;sid) : null);
</span><span class="ln">4732</span>             if (isset($surveyinfo['assessments']) &amp;&amp; $surveyinfo['assessments']=='Y')
<span class="ln">4733</span>             {
<span class="ln">4734</span>                 $LEM-&gt;surveyOptions['assessments']=true;
<span class="ln">4735</span>             }
<span class="ln">4736</span>             //        $LEM-&gt;runtimeTimings[] = array(__METHOD__,(microtime(true) - $now));
</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>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/application/core/Survey_Common_Action.php(258): <strong>LimeExpressionManager</strong>::<strong>StartProcessingPage</strong>(false, "", true)				</div>

				<div class="code"><pre><span class="ln">253</span>             }
<span class="ln">254</span> 
<span class="ln">255</span>             if (!empty($aData['surveyid']))
<span class="ln">256</span>             {
<span class="ln">257</span> 
<span class="error"><span class="ln error-ln">258</span>                 LimeExpressionManager::StartProcessingPage(false, Yii::app()-&gt;baseUrl,true);  // so can click on syntax highlighting to edit questions
</span><span class="ln">259</span> 
<span class="ln">260</span>                 $this-&gt;_surveybar($aData['surveyid'], !empty($aData['gid']) ? $aData['gid'] : null);
<span class="ln">261</span> 
<span class="ln">262</span>                 if (isset($aData['display']['menu_bars']['surveysummary']))
<span class="ln">263</span>                 {
</pre></div>			</td>
		</tr>
						<tr class="trace app collapsed">
			<td class="number">
				#5			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/application/controllers/admin/surveyadmin.php(1708): <strong>Survey_Common_Action</strong>-&gt;<strong>_renderWrappedTemplate</strong>("survey",
 array(), array("surveyid" =&gt; "146955", "gid" =&gt; null, "qid" =&gt;
 null, "display" =&gt; array("menu_bars" =&gt; array("surveysummary" 
=&gt; true))))				</div>

				<div class="code"><pre><span class="ln">1703</span>     * @param array $aData Data to be passed on. Optional.
<span class="ln">1704</span>     */
<span class="ln">1705</span>     protected function _renderWrappedTemplate($sAction = 'survey', $aViewUrls = array(), $aData = array())
<span class="ln">1706</span>     {
<span class="ln">1707</span>         App()-&gt;getClientScript()-&gt;registerPackage('jquery-superfish');
<span class="error"><span class="ln error-ln">1708</span>         parent::_renderWrappedTemplate($sAction, $aViewUrls, $aData);
</span><span class="ln">1709</span>     }
<span class="ln">1710</span> 
<span class="ln">1711</span> }
</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>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/application/controllers/admin/surveyadmin.php(286): <strong>SurveyAdmin</strong>-&gt;<strong>_renderWrappedTemplate</strong>("survey",
 array(), array("surveyid" =&gt; "146955", "gid" =&gt; null, "qid" =&gt;
 null, "display" =&gt; array("menu_bars" =&gt; array("surveysummary" 
=&gt; true))))				</div>

				<div class="code"><pre><span class="ln">281</span>         $aData['surveyid'] = $iSurveyID;
<span class="ln">282</span>         $aData['gid'] = $gid;
<span class="ln">283</span>         $aData['qid'] = $qid;
<span class="ln">284</span>         $aData['display']['menu_bars']['surveysummary'] = true;
<span class="ln">285</span> 
<span class="error"><span class="ln error-ln">286</span>         $this-&gt;_renderWrappedTemplate('survey', array(), $aData);
</span><span class="ln">287</span>     }
<span class="ln">288</span> 
<span class="ln">289</span>     /**
<span class="ln">290</span>     * Function responsible to deactivate a survey.
<span class="ln">291</span>     *
</pre></div>			</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#7			</td>
			<td class="content">
				<div class="trace-file">
										&nbsp;unknown(0): <strong>SurveyAdmin</strong>-&gt;<strong>view</strong>("146955", null, null)				</div>

							</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#8			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/framework/web/actions/CAction.php(108): <strong>ReflectionMethod</strong>-&gt;<strong>invokeArgs</strong>(SurveyAdmin, array("146955", null, null))				</div>

				<div class="code"><pre><span class="ln">103</span>             elseif($param-&gt;isDefaultValueAvailable())
<span class="ln">104</span>                 $ps[]=$param-&gt;getDefaultValue();
<span class="ln">105</span>             else
<span class="ln">106</span>                 return false;
<span class="ln">107</span>         }
<span class="error"><span class="ln error-ln">108</span>         $method-&gt;invokeArgs($object,$ps);
</span><span class="ln">109</span>         return true;
<span class="ln">110</span>     }
<span class="ln">111</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>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/application/core/Survey_Common_Action.php(99): <strong>CAction</strong>-&gt;<strong>runWithParamsInternal</strong>(SurveyAdmin,
 ReflectionMethod, array("surveyid" =&gt; "146955", "sa" =&gt; "view", 
"iSurveyId" =&gt; "146955", "iSurveyID" =&gt; "146955"))				</div>

				<div class="code"><pre><span class="ln">094</span>             $oMethod = new ReflectionMethod($this, $sDefault);
<span class="ln">095</span>         }
<span class="ln">096</span> 
<span class="ln">097</span>         // We're all good to go, let's execute it
<span class="ln">098</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">099</span>         return parent::runWithParamsInternal($this, $oMethod, $params);
</span><span class="ln">100</span>     }
<span class="ln">101</span> 
<span class="ln">102</span>     /**
<span class="ln">103</span>     * Some functions have different parameters, which are just an alias of the
<span class="ln">104</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">
				#10			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/framework/web/CController.php(308): <strong>Survey_Common_Action</strong>-&gt;<strong>runWithParams</strong>(array("surveyid" =&gt; "146955", "sa" =&gt; "view"))				</div>

				<div class="code"><pre><span class="ln">303</span>     {
<span class="ln">304</span>         $priorAction=$this-&gt;_action;
<span class="ln">305</span>         $this-&gt;_action=$action;
<span class="ln">306</span>         if($this-&gt;beforeAction($action))
<span class="ln">307</span>         {
<span class="error"><span class="ln error-ln">308</span>             if($action-&gt;runWithParams($this-&gt;getActionParams())===false)
</span><span class="ln">309</span>                 $this-&gt;invalidActionParams($action);
<span class="ln">310</span>             else
<span class="ln">311</span>                 $this-&gt;afterAction($action);
<span class="ln">312</span>         }
<span class="ln">313</span>         $this-&gt;_action=$priorAction;
</pre></div>			</td>
		</tr>
						<tr class="trace core collapsed">
			<td class="number">
				#11			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/framework/web/CController.php(286): <strong>CController</strong>-&gt;<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-&gt;runAction($action);
</span><span class="ln">287</span>         else
<span class="ln">288</span>         {
<span class="ln">289</span>             $priorAction=$this-&gt;_action;
<span class="ln">290</span>             $this-&gt;_action=$action;
<span class="ln">291</span>             CFilterChain::create($this,$action,$filters)-&gt;run();
</pre></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>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/framework/web/CController.php(265): <strong>CController</strong>-&gt;<strong>runActionWithFilters</strong>(SurveyAdmin, array())				</div>

				<div class="code"><pre><span class="ln">260</span>         {
<span class="ln">261</span>             if(($parent=$this-&gt;getModule())===null)
<span class="ln">262</span>                 $parent=Yii::app();
<span class="ln">263</span>             if($parent-&gt;beforeControllerAction($this,$action))
<span class="ln">264</span>             {
<span class="error"><span class="ln error-ln">265</span>                 $this-&gt;runActionWithFilters($action,$this-&gt;filters());
</span><span class="ln">266</span>                 $parent-&gt;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-&gt;missingAction($actionID);
</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>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/application/controllers/AdminController.php(164): <strong>CController</strong>-&gt;<strong>run</strong>("survey")				</div>

				<div class="code"><pre><span class="ln">159</span>                     $this-&gt;redirect(array('/admin/authentication/sa/login'));
<span class="ln">160</span>                 }
<span class="ln">161</span> 
<span class="ln">162</span>             }
<span class="ln">163</span> 
<span class="error"><span class="ln error-ln">164</span>             return parent::run($action);
</span><span class="ln">165</span>     }
<span class="ln">166</span> 
<span class="ln">167</span>     /**
<span class="ln">168</span>     * Routes all the actions to their respective places
<span class="ln">169</span>     *
</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>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/framework/web/CWebApplication.php(282): <strong>AdminController</strong>-&gt;<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-&gt;_controller;
<span class="ln">280</span>             $this-&gt;_controller=$controller;
<span class="ln">281</span>             $controller-&gt;init();
<span class="error"><span class="ln error-ln">282</span>             $controller-&gt;run($actionID);
</span><span class="ln">283</span>             $this-&gt;_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}'=&gt;$route===''?$this-&gt;defaultController:$route)));
</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>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/framework/web/CWebApplication.php(141): <strong>CWebApplication</strong>-&gt;<strong>runController</strong>("admin/survey/sa/view")				</div>

				<div class="code"><pre><span class="ln">136</span>             foreach(array_splice($this-&gt;catchAllRequest,1) as $name=&gt;$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-&gt;getUrlManager()-&gt;parseUrl($this-&gt;getRequest());
<span class="error"><span class="ln error-ln">141</span>         $this-&gt;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">
				#16			</td>
			<td class="content">
				<div class="trace-file">
											<div class="plus">+</div>
						<div class="minus">–</div>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/framework/base/CApplication.php(184): <strong>CWebApplication</strong>-&gt;<strong>processRequest</strong>()				</div>

				<div class="code"><pre><span class="ln">179</span>     public function run()
<span class="ln">180</span>     {
<span class="ln">181</span>         if($this-&gt;hasEventHandler('onBeginRequest'))
<span class="ln">182</span>             $this-&gt;onBeginRequest(new CEvent($this));
<span class="ln">183</span>         register_shutdown_function(array($this,'end'),0,false);
<span class="error"><span class="ln error-ln">184</span>         $this-&gt;processRequest();
</span><span class="ln">185</span>         if($this-&gt;hasEventHandler('onEndRequest'))
<span class="ln">186</span>             $this-&gt;onEndRequest(new CEvent($this));
<span class="ln">187</span>     }
<span class="ln">188</span> 
<span class="ln">189</span>     /**
</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>
										&nbsp;/home/sondages.pro/htdocs/demonstrations/demonstration/index.php(211): <strong>CApplication</strong>-&gt;<strong>run</strong>()				</div>

				<div class="code"><pre><span class="ln">206</span>         die (sprintf('%s should be writable by the webserver (766 or 776).', $runtimePath));
<span class="ln">207</span>     }
<span class="ln">208</span> }
<span class="ln">209</span> 
<span class="ln">210</span> Yii::$enableIncludePath = false;
<span class="error"><span class="ln error-ln">211</span> Yii::createApplication('LSYii_Application', $config)-&gt;run();
</span><span class="ln">212</span> 
<span class="ln">213</span> /* End of file index.php */
<span class="ln">214</span> /* Location: ./index.php */
</pre></div>			</td>
		</tr>
				</tbody></table>
	</div>

	<div class="version">
		2015-09-16 15:14:38 Apache/2.2.22 (Debian) <a href="http://www.yiiframework.com/">Yii Framework</a>/1.1.15	</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>




<table class="yiiLog" style="border-spacing:1px;font:11px Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;color:#666666;" cellpadding="2" width="100%">
	<tbody><tr>
		<th style="background:black;color:white;" colspan="5">
			Journal d'application
		</th>
	</tr>
	<tr style="background-color: #ccc;">
	    <th style="width:120px">Heure</th>
		<th>Niveau</th>
		<th>Categorie</th>
		<th>Message</th>
	</tr>
	<tr style="background:#FFFFFF">
		<td align="center">15:14:38.877625</td>
		<td>trace</td>
		<td>vardump</td>
		<td><pre>/home/sondages.pro/htdocs/demonstrations/demonstration/application/helpers/common_helper.php
(206):
Survey#1
(
    [*:findByPkCache] =&gt; array()
    [format] =&gt; null
    [CActiveRecord:_new] =&gt; false
    [CActiveRecord:_attributes] =&gt; array
    (
        'template' =&gt; 'default'
        'language' =&gt; null
        'sid' =&gt; '146955'
        'owner_id' =&gt; '0'
        'admin' =&gt; null
        'active' =&gt; 'N'
        'expires' =&gt; null
        'startdate' =&gt; null
        'adminemail' =&gt; null
        'anonymized' =&gt; 'N'
        'faxto' =&gt; null
        'savetimings' =&gt; 'N'
        'additional_languages' =&gt; null
        'datestamp' =&gt; 'N'
        'usecookie' =&gt; 'N'
        'allowregister' =&gt; 'N'
        'allowsave' =&gt; 'Y'
        'autonumber_start' =&gt; '0'
        'autoredirect' =&gt; 'N'
        'allowprev' =&gt; 'N'
        'printanswers' =&gt; 'N'
        'ipaddr' =&gt; 'N'
        'refurl' =&gt; 'N'
        'datecreated' =&gt; '2015-06-19'
        'publicstatistics' =&gt; 'N'
        'publicgraphs' =&gt; 'N'
        'listpublic' =&gt; 'N'
        'htmlemail' =&gt; 'N'
        'tokenanswerspersistence' =&gt; 'N'
        'assessments' =&gt; 'N'
        'usecaptcha' =&gt; 'N'
        'usetokens' =&gt; 'N'
        'bounce_email' =&gt; null
        'attributedescriptions' =&gt; '[]'
        'emailresponseto' =&gt; null
        'emailnotificationto' =&gt; null
        'tokenlength' =&gt; '15'
        'showxquestions' =&gt; 'Y'
        'showgroupinfo' =&gt; 'B'
        'shownoanswer' =&gt; 'Y'
        'showqnumcode' =&gt; 'X'
        'bouncetime' =&gt; null
        'bounceprocessing' =&gt; 'N'
        'bounceaccounttype' =&gt; null
        'bounceaccounthost' =&gt; null
        'bounceaccountpass' =&gt; null
        'bounceaccountencryption' =&gt; null
        'bounceaccountuser' =&gt; null
        'showwelcome' =&gt; 'Y'
        'showprogress' =&gt; 'Y'
        'navigationdelay' =&gt; '0'
        'nokeyboard' =&gt; 'N'
        'alloweditaftercompletion' =&gt; 'N'
        'googleanalyticsstyle' =&gt; null
        'googleanalyticsapikey' =&gt; null
        'sendconfirmation' =&gt; 'Y'
        'questionindex' =&gt; '0'
    )
    [CActiveRecord:_related] =&gt; array
    (
        'defaultlanguage' =&gt; null
    )
    [CActiveRecord:_c] =&gt; null
    [CActiveRecord:_pk] =&gt; '146955'
    [CActiveRecord:_alias] =&gt; 't'
    [CModel:_errors] =&gt; array()
    [CModel:_validators] =&gt; null
    [CModel:_scenario] =&gt; 'update'
    [CComponent:_e] =&gt; array
    (
        'onafterfind' =&gt; CList#2
        (
            [CList:_d] =&gt; array
            (
                0 =&gt; array
                (
                    0 =&gt; Survey#1(...)
                    1 =&gt; 'fixSurveyAttribute'
                )
            )
            [CList:_c] =&gt; 1
            [CList:_r] =&gt; false
            [CComponent:_e] =&gt; null
            [CComponent:_m] =&gt; null
        )
        'onbeforesave' =&gt; CList#3
        (
            [CList:_d] =&gt; array
            (
                0 =&gt; array
                (
                    0 =&gt; CTimestampBehavior#4
                    (
                        [createAttribute] =&gt; null
                        [updateAttribute] =&gt; null
                        [setUpdateOnCreate] =&gt; false
                        [timestampExpression] =&gt; CDbExpression#5
                        (
                            [expression] =&gt; 'NOW()'
                            [params] =&gt; array()
                            [CComponent:_e] =&gt; null
                            [CComponent:_m] =&gt; null
                        )
                        [CBehavior:_enabled] =&gt; true
                        [CBehavior:_owner] =&gt; Survey#1(...)
                        [CComponent:_e] =&gt; null
                        [CComponent:_m] =&gt; null
                    )
                    1 =&gt; 'beforeSave'
                )
                1 =&gt; array
                (
                    0 =&gt; PluginEventBehavior#6
                    (
                        [CBehavior:_enabled] =&gt; true
                        [CBehavior:_owner] =&gt; Survey#1(...)
                        [CComponent:_e] =&gt; null
                        [CComponent:_m] =&gt; null
                    )
                    1 =&gt; 'beforeSave'
                )
            )
            [CList:_c] =&gt; 2
            [CList:_r] =&gt; false
            [CComponent:_e] =&gt; null
            [CComponent:_m] =&gt; null
        )
        'onafterdelete' =&gt; CList#7
        (
            [CList:_d] =&gt; array
            (
                0 =&gt; array
                (
                    0 =&gt; PluginEventBehavior#6(...)
                    1 =&gt; 'afterDelete'
                )
            )
            [CList:_c] =&gt; 1
            [CList:_r] =&gt; false
            [CComponent:_e] =&gt; null
            [CComponent:_m] =&gt; null
        )
        'onaftersave' =&gt; CList#8
        (
            [CList:_d] =&gt; array
            (
                0 =&gt; array
                (
                    0 =&gt; PluginEventBehavior#6(...)
                    1 =&gt; 'afterSave'
                )
            )
            [CList:_c] =&gt; 1
            [CList:_r] =&gt; false
            [CComponent:_e] =&gt; null
            [CComponent:_m] =&gt; null
        )
        'onbeforedelete' =&gt; CList#9
        (
            [CList:_d] =&gt; array
            (
                0 =&gt; array
                (
                    0 =&gt; PluginEventBehavior#6(...)
                    1 =&gt; 'beforeDelete'
                )
            )
            [CList:_c] =&gt; 1
            [CList:_r] =&gt; false
            [CComponent:_e] =&gt; null
            [CComponent:_m] =&gt; null
        )
    )
    [CComponent:_m] =&gt; array
    (
        'CTimestampBehavior' =&gt; CTimestampBehavior#4(...)
        'PluginEventBehavior' =&gt; PluginEventBehavior#6(...)
    )
)</pre></td>
	</tr></tbody></table>
<!-- end of log messages --></body></html>
<!-- start log messages -->
CDbException.html (34,292 bytes)   
Bug heat4
Complete LimeSurvey version number (& build)150911
I will donate to the project if issue is resolvedNo
Browsernot relevant
Database type & versionnot relevant
Server OS (if known)n
Webserver software & version (if known)not relevant
PHP Versionnot relevant

Users monitoring this issue

There are no users monitoring this issue.

Activities

DenisChenu

DenisChenu

2015-09-16 15:18

developer   ~33109

Attached the CBDexception when try to go to this survey.
If debug is set to 0 : survey is shown in surveylisting (empty) and give "No survey with this id.

DenisChenu

DenisChenu

2016-02-11 11:46

developer   ~34894

Fix committed to master branch: http://bugs.limesurvey.org/plugin.php?page=Source/view&amp;id=17320

c_schmitz

c_schmitz

2016-02-12 10:55

administrator   ~34987

2.50+ Build 160212 released

Related Changesets

LimeSurvey: master 01bf5fc5

2016-02-11 10:46:48

DenisChenu

Details Diff
Fixed issue 09890 : broken survey can break admin page if debug is set
Dev: test if defaultlanguage exist : send an alert if not
Dev: send user to check integrity if there are error
Dev: add an alert if 1st part of checkintegrity fix somethyning
Dev: update notifications to allow alert-info
Affected Issues
09890
mod - application/controllers/admin/checkintegrity.php Diff File
mod - application/helpers/common_helper.php Diff File
mod - application/views/admin/notifications/notifications.php Diff File

Issue History

Date Modified Username Field Change
2015-09-16 15:13 DenisChenu New Issue
2015-09-16 15:13 DenisChenu File Added: PHP notice.html
2015-09-16 15:15 DenisChenu File Added: CDbException.html
2015-09-16 15:18 DenisChenu Note Added: 33109
2016-02-11 11:46 DenisChenu Changeset attached => LimeSurvey master 01bf5fc5
2016-02-11 11:46 DenisChenu Note Added: 34894
2016-02-11 11:46 DenisChenu Assigned To => DenisChenu
2016-02-11 11:46 DenisChenu Resolution open => fixed
2016-02-11 11:47 DenisChenu Status new => resolved
2016-02-11 11:47 DenisChenu Fixed in Version => 2.5
2016-02-12 10:55 c_schmitz Note Added: 34987
2016-02-12 10:55 c_schmitz Status resolved => closed
2019-11-01 17:25 c_schmitz Category Survey design => Survey editing