Values of scale and array question is treated like string rather than array while evaluating routing conditions. <br />
<br />
This means that for a 1 to 10 scale, 4 < 10 evaluate to false.
↧
12456: Conditional routing doesn't work on scale and array questions
↧
12457: Different font for plain text and HTML in editor
See attached image, using pop up editor
↧
↧
12458: Home page (survey listing) broken
New home page <a href="https://testing.sondages.pro/develop/">https://testing.sondages.pro/develop/</a> are slightly different with one before merging twig : <a href="https://testing.sondages.pro/answershtml/">https://testing.sondages.pro/answershtml/</a> <br />
<br />
2 columns are not respected
↧
12459: Undefined index: quota_id while copying survey
copy survey with debug=>2 throws undefined index on<br />
application/helpers/admin/import_helper.php(1489)
↧
12456: Conditional routing doesn't work on scale and array questions
Values of scale and array question is treated like string rather than array while evaluating routing conditions. <br />
<br />
This means that for a 1 to 10 scale, 4 < 10 evaluate to false.
↧
↧
12461: Information about iFrame embedding options at Global Settings -> Security is missing
At the latest LS version there is a setting "IFrame embedding allowed:" at Global Settings -> Security. Unfortunately, there is absolutely no information about the settings and its options available at <a href="https://manual.limesurvey.org/Global_settings#Security">https://manual.limesurvey.org/Global_settings#Security.</a>
↧
12462: Count is displayed as sum in "5 choices dropdown" statistics
The count is displayed as sum in the statistics of a "5 choices dropdown".<br />
<br />
Expected: count entries are shown as full numbers (e.g. 44)<br />
Actually: Error -> count entries are shown as sums (e.g. 100%)<br />
<br />
See attached screenshot
↧
12463: "Quick add.." replace function does not work anymore
For all questions where you could use the the above function (single list, array, etc etc) every time you get an alert error saying that an error happened in the ajax request...<br />
<br />
this an example of the URL LS fails to fetch via ajax<br />
<br />
<a href="https://survey.example.com/index.php/admin/questions/sa/getSubquestionRowQuickAdd?surveyid=666252&gid=527&qid={{quid_placeholder}}&codes=[%221%22]&scale_id=0&type=subquestion&position=&first=true&language=it">https://survey.example.com/index.php/admin/questions/sa/getSubquestionRowQuickAdd?surveyid=666252&gid=527&qid={{quid_placeholder}}&codes=[%221%22]&scale_id=0&type=subquestion&position=&first=true&language=it</a>
↧
12464: CAPTCHA changed type and the image is often cut.
Upgrading from 2.65.1 to 2.65.3 CAPTCHA changed type and the image is often cut. This lead to an inaccessible Survey.
↧
↧
12465: captcha not working
Hi,<br />
<br />
Captcha does not work. Screenshots attached.<br />
Version Version 2.65.3+170607<br />
<br />
only solution is to turn off captcha.
↧
12466: limeservice auto link broken on forum
limeservice auto link broken on forum
↧
12431: Preview of question is empty
See image: when you ask for a question preview, the window is (nearly) empty.
↧
12435: Wrong exports
Bug 1: Exporting 'Started but not yet completed' survey status csv file generates the same csv file as 'All tokens' survey status.<br />
<br />
Bug 2: 'Started' column is missing in the csv export file.<br />
(Need that column so that users can identify those participants who has partially completed.)
↧
↧
12437: Crash on survey with 2 MC questions
CDbException<br />
<br />
The table "{{survey_319294}}" for active record class "SurveyDynamic" cannot be found in the database.<br />
<br />
D:\Dropbox\sites\limegit.toolsforresearch.com\public_html\framework\db\ar\CActiveRecord.php(2387)<br />
<br />
2375 <br />
2376 /**<br />
2377 * Constructor.<br />
2378 * @param CActiveRecord $model the model instance<br />
2379 * @throws CDbException if specified table for active record class cannot be found in the database<br />
2380 */<br />
2381 public function __construct($model)<br />
2382 {<br />
2383 $this->_modelClassName=get_class($model);<br />
2384 <br />
2385 $tableName=$model->tableName();<br />
2386 if(($table=$model->getDbConnection()->getSchema()->getTable($tableName))===null)<br />
2387 throw new CDbException(Yii::t('yii','The table "{table}" for active record class "{class}" cannot be found in the database.',<br />
2388 array('{class}'=>$this->_modelClassName,'{table}'=>$tableName)));<br />
2389 <br />
2390 if(($modelPk=$model->primaryKey())!==null || $table->primaryKey===null)<br />
2391 {<br />
2392 $table->primaryKey=$modelPk;<br />
2393 if(is_string($table->primaryKey) && isset($table->columns[$table->primaryKey]))<br />
2394 $table->columns[$table->primaryKey]->isPrimaryKey=true;<br />
2395 elseif(is_array($table->primaryKey))<br />
2396 {<br />
2397 foreach($table->primaryKey as $name)<br />
2398 {<br />
2399 if(isset($table->columns[$name]))<br />
<br />
Stack Trace<br />
#0 <br />
+<br />
D:\Dropbox\sites\limegit.toolsforresearch.com\public_html\framework\db\ar\CActiveRecord.php(411): CActiveRecordMetaData->__construct(SurveyDynamic)<br />
#1 <br />
+<br />
D:\Dropbox\sites\limegit.toolsforresearch.com\public_html\framework\db\ar\CActiveRecord.php(680): CActiveRecord->getMetaData()<br />
#2 <br />
–<br />
D:\Dropbox\sites\limegit.toolsforresearch.com\public_html\application\models\LSActiveRecord.php(29): CActiveRecord->hasAttribute("created")<br />
<br />
24 * @return array<br />
25 */<br />
26 public function behaviors()<br />
27 {<br />
28 $aBehaviors=array();<br />
29 $sCreateFieldName=($this->hasAttribute('created')?'created':null);<br />
30 $sUpdateFieldName=($this->hasAttribute('modified')?'modified':null);<br />
31 $sDriverName = Yii::app()->db->getDriverName();<br />
32 if ($sDriverName=='sqlsrv' || $sDriverName=='dblib') {<br />
33 $sTimestampExpression=new CDbExpression('GETDATE()');<br />
34 }<br />
<br />
#3 <br />
+<br />
D:\Dropbox\sites\limegit.toolsforresearch.com\public_html\framework\db\ar\CActiveRecord.php(396): LSActiveRecord->behaviors()<br />
#4 <br />
–<br />
D:\Dropbox\sites\limegit.toolsforresearch.com\public_html\application\models\SurveyDynamic.php(45): CActiveRecord::model("SurveyDynamic")<br />
<br />
40 if (!is_null($sid)) {<br />
41 self::sid($sid);<br />
42 $refresh = true;<br />
43 }<br />
44 <br />
45 $model = parent::model(__CLASS__);<br />
46 <br />
47 //We need to refresh if we changed sid<br />
48 if ($refresh === true) $model->refreshMetaData();<br />
49 <br />
50 return $model;<br />
<br />
#5 <br />
–<br />
D:\Dropbox\sites\limegit.toolsforresearch.com\public_html\application\core\LSETwigViewRenderer.php(194): SurveyDynamic::model("319294")<br />
<br />
189 if (!empty($aDatas['aSurveyInfo']['sid'])){<br />
190 $surveyid = $aDatas['aSurveyInfo']['sid'];<br />
191 $event->set('surveyId', $aDatas['aSurveyInfo']['sid']);<br />
192 <br />
193 if (!empty($_SESSION['survey_'.$surveyid]['srid'])){<br />
194 $aDatas['aSurveyInfo']['bShowClearAll'] = ! SurveyDynamic::model($surveyid)->isCompleted($_SESSION['survey_'.$surveyid]['srid']);<br />
195 }<br />
196 <br />
197 }<br />
198 <br />
199 App()->getPluginManager()->dispatchEvent($event);<br />
<br />
#6 <br />
+<br />
D:\Dropbox\sites\limegit.toolsforresearch.com\public_html\application\core\LSETwigViewRenderer.php(144): LSETwigViewRenderer->renderTemplateFromString("{# LimeSurvey Copyright (C) 2007-2017 The LimeSurvey P...", array("aSurveyInfo" => array("template" => "default", "language" => "en", "sid" => "319294", "owner_id" => "1", ...)), false)<br />
#7 <br />
+<br />
D:\Dropbox\sites\limegit.toolsforresearch.com\public_html\application\helpers\SurveyRuntimeHelper.php(449): LSETwigViewRenderer->renderTemplateFromFile("layout_main.twig", array("aSurveyInfo" => array("template" => "default", "language" => "en", "sid" => "319294", "owner_id" => "1", ...)), false)<br />
#8 <br />
+<br />
D:\Dropbox\sites\limegit.toolsforresearch.com\public_html\application\controllers\survey\index.php(580): SurveyRuntimeHelper->run("319294", array("surveyid" => "319294", "thissurvey" => array("template" => "default", "language" => "en", "sid" => "319294", "owner_id" => "1", ...), "thisstep" => null, "tokensexist" => 0, ...))<br />
#9 <br />
+<br />
D:\Dropbox\sites\limegit.toolsforresearch.com\public_html\application\controllers\survey\index.php(21): index->action()<br />
#10 <br />
+<br />
D:\Dropbox\sites\limegit.toolsforresearch.com\public_html\framework\web\actions\CAction.php(76): index->run()<br />
#11 <br />
+<br />
D:\Dropbox\sites\limegit.toolsforresearch.com\public_html\framework\web\CController.php(308): CAction->runWithParams(array("lang" => "en", "sid" => "319294"))<br />
#12 <br />
+<br />
D:\Dropbox\sites\limegit.toolsforresearch.com\public_html\framework\web\CController.php(286): CController->runAction(index)<br />
#13 <br />
+<br />
D:\Dropbox\sites\limegit.toolsforresearch.com\public_html\framework\web\CController.php(265): CController->runActionWithFilters(index, array())<br />
#14 <br />
+<br />
D:\Dropbox\sites\limegit.toolsforresearch.com\public_html\framework\web\CWebApplication.php(282): CController->run("index")<br />
#15 <br />
+<br />
D:\Dropbox\sites\limegit.toolsforresearch.com\public_html\framework\web\CWebApplication.php(141): CWebApplication->runController("survey/index/sid/319294")<br />
#16 <br />
+<br />
D:\Dropbox\sites\limegit.toolsforresearch.com\public_html\framework\base\CApplication.php(185): CWebApplication->processRequest()<br />
#17 <br />
+<br />
D:\Dropbox\sites\limegit.toolsforresearch.com\public_html\index.php(205): CApplication->run()<br />
2017-05-26 21:12:38 Apache/2.4.17 (Win32) OpenSSL/1.0.2d PHP/5.5.30 Yii Framework/1.1.17
↧
12429: Can't access / log in to my survey admin panel
Today there was an automatic renewal of my subscription, and all of a sudden I can't log in to my survey admin panel (I didn't change ANYTHING in the way I log in, I didn't change anything in the settings of my account). At the same time, I'm able to login to the limesurvey website, so most probably there is something wrong with your system... This is EXTREMELY annoying - I lead a couple of paid studies that I'm responsible for, and now I can't access the research responses and data.<br />
<br />
When I was trying to log in today, I received the message that the password is wrong. I tried once more a second ago, and I received the following message:<br />
<br />
Bad Request<br />
<br />
The CSRF token could not be verified.<br />
<br />
The request could not be understood by the server due to malformed syntax. Please do not repeat the request without modifications.<br />
<br />
If you think this is a server error, please contact the webmaster.
↧
12430: Cannot preview group
Strange error: group number is not OK when previewing group.
↧
12467: "valid manner" error message (appears to be a bug similar to a previous bug reported ID: 09265)
I noticed that a bug report in 2014 (ID: 09265) seems to be identical to this issue.<br />
<br />
I have a survey that is active but when the first page (which contains a date/time question) is finished the participants are getting an error message that says:<br />
<br />
‘Did not save. An unexpected error has occurred and your responses cannot be saved. Your responses have not been lost and have been emailed to the survey administrator and will be entered into the database at a later point’.<br />
<br />
"One or more questions have not been answered in a valid manner. You cannot proceed until these answers are valid"
↧
↧
12468: EM placeholder {SID} does not get replaced at email templates
When using placeholder {SID} within invitation emails (and probably also other emails) the placeholder does NOT get replaced but instead simply "SID" is shown within the email.
↧
12430: Cannot preview group
Strange error: group number is not OK when previewing group.
↧
12470: Base language gets popululated with secondary translation text when using Quick Add...
I have a bilingual survey (base language English, secondary language French). <br />
<br />
I go to the sub-question page, and use the Quick add... to insert a set of responses for the French responses. <br />
<br />
After I click "Replace" button, French is populated in both the French tab and in the English (base language) tab. <br />
<br />
I'm running 2.5 build #170615
↧