Dans limersurvey 1.9, je pouvais me connecter directement sans passer par l'interface d'authentification en ajoutant dans l'URL d'administration un login et un password unique, comme écrit dans la doc :
Since version 1.81 a user can call the limesurvey login at /limesurvey/admin and pass username and a one time password which was previously written into the users table (column one_time_pw) by an external application.
To enable this login method a setting has to be turned on ($use_one_time_passwords = true;) in config.php.
The URL has to contain the following variables:
user: The username normally used to login into Limesurvey. This username has to exist in the 'users' table of the database.
onepass: The plain text password which is then compared to the password in the 'users' table
A valid URL to login using a one time password will look like this:
www.yourdomain.org/limesurvey/admin/admi...epass=secretpassword
Puis avec la version 2, l'URL a changé et impossible de faire marcher mon code de connexion automatique.
Je cherche dans le code mais ce n'est pas easy.