Actions

Translations

Optional settings/60/nl: Difference between revisions

From LimeSurvey Manual

No edit summary
No edit summary
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
Deze mogelijkheid moet echter wel aan gezet worden ('''use_one_time_passwords''' => true)
Deze mogelijkheid moet echter wel gezet worden in het bestand config.php, want die staat standaard uit.
[[Use_one_time_passwords/nl|Bekijk ook even "Het beheren van gebruikers"]].
<syntaxhighlight lang="php" enclose="pre">
    'config'=>array(
        'debug'=>0,
        'debugsql'=>0,
        'use_one_time_passwords'=>true,
    )
</syntaxhighlight>

Latest revision as of 20:04, 27 November 2018

Message definition (Optional settings)
This setting has to be turned on config.php file to enable the usage of one-time passwords (default = false).
<syntaxhighlight lang="php" enclose="pre">
   'config'=>array(
       'debug'=>0,
       'debugsql'=>0,
       'use_one_time_passwords'=>true,
   )
</syntaxhighlight>

Deze mogelijkheid moet echter wel gezet worden in het bestand config.php, want die staat standaard uit.

    'config'=>array(
        'debug'=>0,
        'debugsql'=>0,
        'use_one_time_passwords'=>true,
    )