• For a company intranet we are looking for a solution where logging in to the company network in the morning will sign you into the WordPress based intranet too. The idea is not having to log in twice as we already know who you are and to make it as easy as possible to use the intranet. As there are 400+ employees, and there are quite some mutations, we believe a bulk import of users is not the best or most flexible solution..

    The flow would be:

      Log in to workspace
      Open up browser with intranet as startpage
      Intranet recognises user and immediately logs you in

    Any ideas here? Anyone who already build something like this?

    https://www.ads-software.com/extend/plugins/active-directory-integration/

Viewing 16 replies (of 16 total)
  • I posted this about a month ago.

    https://bt.steindorff.de/view.php?id=78

    We have been using the changes for a while and everything is going well.

    I’ve recently made a minor change to include code for the note and to stop updating the passowrd on SSO (because this was causing issues with verification of the wordpress_logged_in_* cookie when multiple browsers were being used.

    The minor change is here:
    else {
    $username=strtolower($_SERVER[‘REMOTE_USER’]);
    if (strpos($username, ‘@’) !== FALSE) {
    $account_suffix = substr($username, strpos($username, ‘@’));
    $username = substr($username, 0, strpos($username, ‘@’));
    }
    $password = wp_generate_password();
    $this->_auto_update_password = false;

Viewing 16 replies (of 16 total)
  • The topic ‘Any ideas how to create a Single Sign On?’ is closed to new replies.