Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor M66B

    (@m66b)

    The plugin was tested with WordPress 3.4 and I just tested it again on my production site and it does work.

    Plugin Contributor M66B

    (@m66b)

    Maybe you’ll have to clear your browser cache.
    Do you have the latest version of the plugin installed?

    I think I found the problem, because redirect always goes to wp-admin even if I set it in the options to the homepage.
    In the function “Handle_login()“, I tried:

    $string = var_export($options);
    die($string);

    to see the value of $options, and it was NULL !
    I think you forgot to call:

    $options = get_option('browserid_options');

    at the beginning of the function “Handle_login()“, as you do in other functions. In fact, adding that line, as so:

    function Handle_login($result, $rememberme) {
      $options = get_option('browserid_options');

    fixed everything for me. Now $options is a valid array, and the redirect works perfectly.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: Mozilla BrowserID] New version not redirecting on logon /w WP 3.4’ is closed to new replies.