Clément "KPTN" OUDOT
Clément "KPTN" OUDOT
Note that I also face this issue but I can't manage to have a set-by-step reproduction.
Could you try https://self-service-password.readthedocs.io/en/v1.4/config_nginx.html ?
Indeed, your document root should now be in htdocs/ See https://self-service-password.readthedocs.io/en/latest/config_nginx.html
> 1. The password can be changed through the adminchangepassword.php interface, but this is not safe. hope to add the SMS or email verification function REST API should not be...
You did not define `$ldap_binddn`, can you browse your LDAP directory anonymously?
You should set `$debug` to `true` and see the logs.
Can you add in your config file: ```php ldap_set_option(NULL, LDAP_OPT_DEBUG_LEVEL, 7); ``` And in the logs if you have more details about LDAP operations?
In the apache error logs.
There should be other logs. Please provide your full config file.
ldap_set_option is a function, so set this in the file: ```php $debug = true; ldap_set_option(NULL, LDAP_OPT_DEBUG_LEVEL, 7); ``` Check also that you don't have a config.inc.local.php in the same directory,...