Forum Replies Created

Viewing 1 replies (of 1 total)
  • To fix your issue until there is a plugin update, open the plugin file: active-directory-integration/ad-integration.php

    1. Find the generate_password function:
    2. public function generate_password($username, $password1, $password2) {
          $password1 = $password2 = $this->_get_password();
       }
    3. Change the function parameters (within brackets) from $password1,$password2to:&$password1, &$password2` and save the file.

    This happens because your PHP version is most likely >= 5.4

Viewing 1 replies (of 1 total)