]> sipb.mit.edu Git - ikiwiki.git/blob - doc/bugs/openid_postsignin_failure.mdwn
response
[ikiwiki.git] / doc / bugs / openid_postsignin_failure.mdwn
1 I tried enabling the openid plugin on my site. I tried to log in but got an 
2 error when coming back to ikiwiki.cgi: "Error: unknown do parameter". I think
3 this means that do=postsignin isn't handled by CGI.pm. 
4
5 The URI in question is fairly long, but if you want me to add it here, I can do that.
6
7 I didn't really know how to debug this so I grepped for "postsignin" in both 
8 openid.pm and passwordauth.pm and found:
9
10     IkiWiki/Plugin/openid.pm:               return_to => IkiWiki::cgiurl(do => "postsignin"),
11     IkiWiki/Plugin/passwordauth.pm:                         IkiWiki::cgi_postsignin($cgi, $session);
12
13 Am I barking up the wrong tree? Maybe I'm missing something obvious? 
14
15 I'm running 1.38 of ikiwiki and the newest CGI::Session, Net::OpenID::Consumer, 
16 Crypt::DH, URI-Fetch. --Ethan
17
18 > The url must not have a setting for openid.mode or openid_identifier in
19 > it. So the OpenId plugin didn't know that it was trying to log in. I
20 > think this points to an issue with the OpenID server. --[[Joey]]