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

14023: Simple statistics - charts not displayed well

$
0
0
if you call the simple statistics using the top menu some charts aren't displayed corrtecly<br /> If you use the sidebar it's working fine.

14024: closed-access mode - 504 after submission

$
0
0
When switching a survey to "closed-access mode" the survey-submission ends with a 504. The token-authenticated user never reaches the "Completed View". This LS-behavior is not seen when the survey is in "open-access mode" (without participants table).

13994: Question validation equation along with "Hide tip"

$
0
0
If you set "Hide tip" to "On" and have a question validation equation and question validation tip the tip wont be hidden.<br /> In my head "Choose one of the following answers" should be hidden if I set "Hide tip" to "On".

14025: When using custom theme the "Exit and clear all" link does not disappear at the last (survey completed) step

$
0
0
The "exit and clear all" link normally (using a core theme) disappear at the last step of a survey (when the survey is completed).<br /> But when using a custom (extend) theme (no matter which) the "exit and clear all" link is still present (not disappear) at the last step (when the survey is completed).

14026: LTS 2.6.7 and PHP support

$
0
0
LTS 2.6.7 and PHP support<br /> The current description of requirements for LTS 2.6.7 contains<br /> " *PHP 5.3.3 or later with the following modules/libraries enabled"<br /> <br /> That would include PHP versions like 7.0, 7.1 or 7.2.<br /> <br /> LTS 2.6.7 under PHP 7.2?<br /> When doing a quick installation the preinstallation check already fails under PHP 7.2.<br /> <br /> Internal Server Error<br /> Function name must be a string<br /> <br /> An internal error occurred while the Web server was processing your request. Please contact the webmaster to report this problem.<br /> <br /> Thank you.<br /> <br /> <br /> PHP 7.1 looks the same.<br /> <br /> When moving a complete installation to PHP 7.2. I see no issues.<br /> <br /> So the installer might be a bit to edgy ;-) You can run LTS on PHP 7.2, but you cannot install it.

14028: "If" and "qcode_other" not working properly

$
0
0
if statement not working properly if qcode_other is used in the condition. <br /> <br /> For example, I got two questions Q00 and Q01 in my example and I want to pipe the "other" answer, if selected, to Q1. The code would look like this: if(Q00_other == 'Y', Q00_other.shown, Q00.shown). However, Q01 does not display Q00_other.shown... only "-oth-". <br /> <br /> However, if I use if(Q00 == 'Y', Q00.shown, Q00_other.shown), everything seems to be working fine.<br /> <br /> <br /> P.s. the comment function seems to be working fine.

14029: Breadcrumb shows "Add a new question", also when editing a saved question

14030: Group relevance equations are lost when exporting a survey in tab-separated text format

$
0
0
When a survey is exported in the "tab-separated text" format, the relevance equations for question groups are lost (i.e. they are missing from the exported file). This only happens to group-level relevance equations; question-level settings are unaffected.

14031: Internal server error on bounce processing - LTS2.6.7

$
0
0
I have one particular survey that caused Apache to return an "Error 500" when bounce processing is initiated. The access log entry looks like this:<br /> <br /> xxx.xxx.xxx.xxx - - [05/Sep/2018:17:04:05 +1000] "GET /limesurvey/index.php/admin/tokens/sa/bounceprocessing/surveyid/468744?YII_CSRF_TOKEN=8befe25ecc9e373b42f62487b0d26577725387d3 HTTP/1.1" 500 428 "<a href="https://somedomain.org.au/limesurvey/index.php/admin/tokens/sa/browse/surveyid/468744"">https://somedomain.org.au/limesurvey/index.php/admin/tokens/sa/browse/surveyid/468744"</a> "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:61.0) Gecko/20100101 Firefox/61.0"<br /> <br /> When I turn on PHP debugging, the message is: <br /> <br /> Sep 5 14:51:22 sphinx-frontend apache2: PHP Notice: Trying to get property 'emailstatus' of non-object in /var/www/limesurvey/application/controllers/admin/tokens.php on line 198<br /> <br /> The full PHP dump is attached to this bug report.<br /> <br /> It seems like there is something about the records in this survey's token table that is causing the crash, but I can't spot the problem. The survey uses a customised language that we installed manually, but there are other surveys that also use that language, and they work fine with bounce processing. It's just one survey and its token table that encounter the problem.

14032: sauvegarde BBD script défaillant

$
0
0
Après un crash de la bdd, j'ai voulu restauré une sauvegarde de la bdd faite avec l'option "sauvegarde de l’intégrité de la base de donnée".<br /> Cela ne fonctionne pas. mysql refuse le script pour plusieurs erreurs : <br /> il y a des doubles quotes qui entourent le nom de la table ainsi que chaque champ lors d'un CREATE TABLE (il faut soit ne rien mettre soit des simple quote).<br /> le script ne gère pas les paragraphes contenant des mots entourés de simple ou double quote à la fin des phrases lors des insert en bdd. par exemple: <br /> le client s'est resservi ' 2 fois'.<br /> cela sera traduit dans le script par 'le client s'est resservi \' 2 fois\',<br /> or, il manque le simple quote de fin.

14033: Re-ordering groups when a group is open using Structure drag & drop fails

$
0
0
Re-ordering a group using drag & drop facilities when another group is open and contains at least 1 question,

14034: readOnly plugin settings do not actually display as read only

$
0
0
I've set a plugin setting as follows:<br /> <br /> 'my_setting' => [<br /> 'type' => 'string',<br /> 'label' => 'Label',<br /> 'readOnly' => True,<br /> ],<br /> <br /> but when I go to the plugin->configure page, the setting show as an editable text field and is editable

14035: Problem with inserting variables in email template editor

$
0
0
1. Open the email template editor /index.php/admin/emailtemplates/sa/index/surveyid/1<br /> 2. Click the insert variable lemon<br /> => the editor resizes<br /> <br /> This is caused because the ajax request from the ckeditor plugin is missing the XMLHttpRequest header.<br /> index.php/admin/limereplacementfields/sa/index/fieldtype/email-invitation/action/editemailtemplates/surveyid/1/gid//qid/<br /> <br /> This causes AdminTheme.php to added JS and styles in registerStylesAndScripts().<br /> <br /> I tried to rewrite the plugin to use jQuery.ajax but could not make it work to load asynchron.<br /> <br /> Anyway I think this is a ckeditor issue. So I opened a ticket there: <a href="https://github.com/ckeditor/ckeditor-dev/issues/2382">https://github.com/ckeditor/ckeditor-dev/issues/2382</a><br /> <br /> Maybe you have a better solution or like to add the fix.<br /> <br /> In /assets/packages/ckeditor/plugins/ajax/plugin.js add after xhr.open(... the line:<br /> xhr.setRequestHeader('X-Requested-With', 'XMLHttpRequest');

14036: Switching the language for the first time re-randomises the questions

$
0
0
See the screenshots.<br /> <br /> Have also attached a survey example.<br /> <br /> So, the idea is the following one: when I preview the survey for the first time, the questions get re-randomised. Once the re-randomisation was done, I can change the language of the survey how many times I want... it does not get re-randomised again.<br /> <br /> The original behaviour in the past (at least according to the wiki): The survey was not getting re-randomised when swiching the language for the first time.

14037: bad display + error on syntax

$
0
0
First, <br /> while i want to add an user, the label of the name of the user is wrongly displayed. You can see it on the screenshot.<br /> <br /> secondly, <br /> in the survey parameter, in the notification and data option, there is a mistake in the translation or in the syntax : <br /> it is written "chrnonométrages" , the true translation should ne "chronométrage".

14027: Qid-token not substituted in quexml pdf export

$
0
0
When exporting/printing a survey as queXML PDF, the Qid-tokens are not being substituted with the corresponding values.<br /> ie. In a questionstekst is states:"1.1. AIAAC.shown maakt zich zorgen over naderende activiteiten en gebeurtenissen.". The token in the survey is correctly replaced with the value. In this case the AIAAC.shown='John'. <br /> <br /> When I use the (queXMl)print button at the end of the survey or use the button in the Survey participants overview, the rapport shows the question this way:"1.1. {INSERTANS:898863X186X2223} maakt zich zorgen over naderende activiteiten en gebeurtenissen.". The wanted presentation should be:"1.1. John maakt zich zorgen over naderende activiteiten en gebeurtenissen."

14038: General survey settings : Administrator and Admin email: cannot be clear and saved blank

$
0
0
General survey settings fields "Administrator" and "Admin email" cannot be clear and saved blank.<br /> The default values are always filled in.<br /> <br /> Version 3.14.8+180829<br /> BTW: Product Version Drop-down field in Mantis is missing 3.14.

14039: Captcha prevent panel integration. GET URL parameter not captured.

$
0
0
When Captchas are activated GET URL parameter are not captured by LimeSurvey.

14040: Passage de variable en paramètres d'URL / Variables parameters in url

$
0
0
La fonctionnalité qui permet de définir des paramètres qui peuvent être passés en URL lorsqu'on lance une enquête renvoi sur une page blanche. lien : /index.php/admin/survey/sa/rendersidemenulink/subaction/panelintegration/surveyid/544827<br /> <br /> Serait il possible, et/ou comment activer cette fonction. <br /> <br /> Je ne trouve pas non plus de code Limesurvey pouvant provenir de cette fonctionnalité, que je pourrais intégrer dans mes questionnaires pour créer des conditions à partir de variables que je passerai à Lime d'un autre outil.

14041: Short text answers in QueXML pdf from Print Answers mode are fixed length of 10 characters

$
0
0
Hello<br /> <br /> Short text answers in QueXML pdf from Print Answers mode are fixed length of 10 characters. It is probably a small issue in code, but it results in great problem that there are many answers longer than 10 characters, which are not printed correctly.
Viewing all 11673 articles
Browse latest View live