Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Facebook Sign In with Google Sign In with OpenID Sign In with Twitter

Categories

In this Discussion

Who's Online 14

CurtisOdenericgillettejohansonlockerqwenty +10 guests

Sign out does not redirect to my application

This discussion is related to the Vanilla Proxyconnect addon.
I have ProxyConnect 1.9.7 set up, and almost everything seems to be running fine. Automatic login works perfectly, as does the Sign In link redirecting to my application.

However, when I click Sign Out, it only removes the Vanilla cookie, and neither sends the user to my sign-out URL in the plugin's configuration nor sends a callback to that URL in the background. I am not signed out of my application, nor does its logs indicate that any sign-out request was ever sent. Clicking Sign Out directly from my application, however, works just fine.

Why might ProxyConnect skip my site's Sign Out URL?
Tagged:

Comments

  • Posts: 1
    I get the same thing. Almost everything else works perfectly, just this and the after-login redirection that don't work properly.
  • Posts: 7
    I was having the same problem with vanilla signout link not signing out of wordpress. had to modify the code a bit to make it work.

    I opened class.proxyconnect.plugin.php in the ProxyConnect folder and changed the EntryController_SignOut_Handler function with the following :

    public function EntryController_SignOut_Handler(&$Sender) {
    if (!Gdn::Authenticator()->IsPrimary('proxy')) return;
    Redirect('http://www.yoursitehere.com/wp-login.php?action=logout', 302);
    }

    note that if your wordpress is not installed on the root, you need to include the installation folder eg. http://www.yoursitehere.com/blog/wp-login.php?action=logout
  • doe it work when you use drupal too ?
Sign In or Register to comment.