Quantcast
Channel: LimeSurvey bugs and feature requests - Issues
Viewing all 11659 articles
Browse latest View live

12471: Reload page (debug=2) show a notice

$
0
0
When you reload a page during survey : $this->aStepInfo['gid'] is not set

12472: Time to merge ?

$
0
0
There a lot of time we merging master in develop, and we have some security issue in master : time to merge

12473: Utilisation de one_time_pw

$
0
0
Je viens de mettre à jour LS : version 2.4 vers la version 2.65.4+170612.<br /> <br /> Avec l'ancienne version, j'utilisais la fonction 'One time password' qui fonctionnait parfaitement. <br /> Depuis la nouvelle version, cela ne marche plus. Pourtant tous les critères sont respectés :<br /> - réglage du config.php,<br /> - enregistrement préalable du MP (SHA 256) dans la colonne one_time_pw de la table lime_users,<br /> - adresse www.example.org/limesurvey/index.php/admin/authentication/login?user=xxx&onepass=xxx<br /> <br /> Le mode 'debug=2' ne renvoie aucune erreur.

12474: Lime connection with read and Write nodes.

$
0
0
Hello,<br /> Can you please let me know that is it possible to connect Lime Survey with Read and Write Database.<br /> As Yii Application with providing the feature of Master and Slave but I need to connect my application with having an instance on one all the read operations will be performed and on one all the write operations will perform.<br /> So please help me in that I am stocked.

12475: Use one_time_pw

$
0
0
I have just updated LS: version 2.4 to version 2.65.4 + 170612.<br /> <br /> With the old version, I used the 'unique password' function that worked perfectly.<br /> Since the new version, it does not work anymore. Yet all criteria are respected:<br /> - setting the config.php,<br /> - Pre-registration of the MP (SHA 256) in the one_time_pw column of the lime_users table,<br /> - address www.example.org/limesurvey/index.php/admin/authentication/login?user=xxx&onepass=xxx<br /> <br /> 'Debug = 2' does not return any errors.

12476: Quicktranslation tabs not working

$
0
0
It is not possible to navigate between the tabs in the quick-translation.<br /> It is therefor also not possible to save any changes to the translation.<br /> <br /> Happens in translating from Danish to English

12477: Cannot move onto the next page of the survey!

$
0
0
Hello,<br /> <br /> if you try this survey with Internet Explorer or Edge, you cannot move on to the next page, even when you filled out the fields:<br /> <a href="https://fhj.to/alumniportal">https://fhj.to/alumniportal</a><br /> <br /> Client told me, they tried it with:<br /> IE 11: 11.962.10586.0<br /> Edge 2015: 25.10586.672.0<br /> <br /> My own IE, with the same problem, is:<br /> IE 11: 11.0.9600.18665CO<br /> <br /> Kind regards,<br /> <br /> Klaus

12478: Ability to display multiple choice sub-questions alphabetically

$
0
0
LS already has this feature for radio question type -- it would be useful to be able to display multiple choice alphabetically -- especially when we have multilingual surveys with many multiple choice options to select from.

12479: Add DB property in models

$
0
0
DB property can be added in model to set default value : <a href="https://github.com/LimeSurvey/LimeSurvey/blob/master/application/models/Survey.php#L99">https://github.com/LimeSurvey/LimeSurvey/blob/master/application/models/Survey.php#L99</a><br /> But i think we have to add it in the phpDoc way and then have it in api : <a href="https://api.limesurvey.org/classes/Survey.html#sid">https://api.limesurvey.org/classes/Survey.html#sid</a>

12480: Ambiguous Instructions for Adding multiple answers

$
0
0
The documentation on adding multiple answers to a dropdown / radio question is as follows: "Enter one answer per line. You can provide a code by separating code and answer text with a semicolon or tab. For multilingual surveys you add the translation(s) on the same line separated with a semicolon or tab."<br /> <br /> However, this is ambiguous. Based on the instructions I have tried:<br /> <br /> <code>;<answer><br /> <br /> But I get a new auto-generated code with "<code>" as the answer text when I would have expected the code to be used.<br /> <br /> The instruction should probably include a short example.

12481: Questions in first group are not shown in "All in one" mode

$
0
0
Please see image and attached .lss file.<br /> <br /> I deleted some groups. When shown in "Group by group" mode, the questions in the first group show up, but not when in "All in one" mode.

12482: HTML of MC with or without comments differs

$
0
0
Please see attached image: results in different styling of labels. But I think HTML must be similar.

12483: Superfluous text "DEFAULT" on welcome page

$
0
0
Possibly debug information. But could be forgotten.

12484: questions in this survey.There are 30

$
0
0
Wrong order in text display of question count. See image

12485: 出现跳页

$
0
0
在3.2.2版本的离线系统包中,我们的问卷不知道为什么原因会出现跳页及丢失记忆的情况,具体为:<br /> 当我们点击问卷中“下一页”时,会错误的重新加载该页或者返回上一到两页,并且填写内容都会缺失,这个情况出现的概率是100%,无论哪台测试的电脑及浏览器<br /> 不知道是不是limesurvey本身有变量的数量限制

12486: Better HTML error management and choice

$
0
0
Actual situation : <br /> 1. we use some 404 for bad survey id, but not all (some are redirected)<br /> 2. we use a very little 401 (no access without authentifaction)<br /> 3. we didn't really use 403 (no access with YOUR credential (or you send bad parameters)) <br /> 4. All error use default Yii system (in master)

12487: Error on notifications table creation when updating to 2.67.0+170622

$
0
0
The error below is displayed when updating the database. This issue was not there on version 2.66.0+170619.<br /> <br /> Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '\'default\', `created` datetime not null, `first_read` datetime null ) ENGINE=' at line 9. The SQL statement executed was: CREATE TABLE `ls_notifications` ( `id` int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, `entity` varchar(15) not null, `entity_id` int(11) not null, `title` varchar(255) not null, `message` text not null, `status` varchar(15) not null default 'new' , `importance` int(11) default 1, `display_class` varchar(31) default \'default\', `created` datetime not null, `first_read` datetime null ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci<br /> <br /> This issue is related to line 1564 in updatedb_helper.php.<br /> <br /> On version 2.66.0+170619 it was: <br /> 'display_class' => 'string(31) default \'default\'',<br /> <br /> On version 2.67.0+170622 the line has been changed, it leaves unwanted backslashes in the SQL query:<br /> 'display_class' => "string(31) default \'default\'",

12489: Wrong information on pie chart when I move the mouse over the chart (in stat simple and advanced stat mode)

$
0
0
Wrong information on pie chart when I move the mouse over the char (in stat simple and advanced stat mode)<br /> <br /> it show the real count with percetage sign instead of percetage number.

12490: Files bootstrap-datetimepicker.js, bootstrap-datetimepicker.min.css and loader.gif not found

$
0
0
In the survey participants page, the filters and the number of display results doesn't work because the files bootstrap-datetimepicker.js and bootstrap-datetimepicker.min.css aren't found. The name of the file in the server is incorrect:<br /> - /tmp/assets/d0829d80/js/bootstrap-datetimepicke instead of /tmp/assets/d0829d80/js/bootstrap-datetimepicker.js<br /> - /tmp/assets/d0829d80/css/bootstrap-datetimepick instead of /tmp/assets/d0829d80/css/bootstrap-datetimepicker.min.css<br /> - /tmp/assets/27820ecd/img/loader.gif instead of /tmp/assets/27820ecd/assets/img/loader.gif<br /> <br /> I updated the name of the files and work but after the comfort update doesn't work again because the name of the directory changes with every update.<br /> <br /> Thank you.

12491: Permission to delete data

$
0
0
I gave at "one user" the permission to export partecipants.... (see Permission.png file)<br /> <br /> if I login with this credential in partecipants menu, inside export-download page, I found that is active the button "Delete exported participants" /see file Exporting_page.png) ...... and if the button is flagged to ON the partecipant exported will be deleted, also the user haven't permission to do it.<br /> <br /> The users haven't the permission to delete data...
Viewing all 11659 articles
Browse latest View live