• Resolved ELAN42///

    (@nokao)


    Hello,
    We have a correctly working Shibboleth SP and we know it’s working because on the IP side the session tokens are correctly generated, but when users are redirected back to wp-login nothing happpens… They’re not logged in to WP.

    I’m using these settings:
    – HTTPS Headers as attribute access (we’re behind a proxy)
    – Fallback attribute access
    – Automatic Login

    All other options are the default. How should I go about debugging the issue? I have enabled all the logs, but don’t see anything relevant.

Viewing 1 replies (of 1 total)
  • Plugin Author Jonathan Champ

    (@jrchamp)

    To debug: I would make sure to check that the attributes are being populated in a way that PHP can see.

    A small PHP file that temporarily lives in the same folder with WordPress and prints out the $_SERVER and $_ENV variables might give you additional clues.

    <?php
    echo '<pre>';
    var_dump($_SERVER, $_ENV);
    echo '</pre>';

    Please note that this information is sensitive, so I wouldn’t leave the file lying around after you’re test is complete.

Viewing 1 replies (of 1 total)
  • The topic ‘Not logging in’ is closed to new replies.