diff options
author | https://www.google.com/accounts/o8/id?id=AItOawlAe9oSm2pgOSLJw_RDk9wQDyo3UQfRxwg <Bruno@web> | 2014-04-17 09:49:07 -0400 |
---|---|---|
committer | admin <admin@branchable.com> | 2014-04-17 09:49:07 -0400 |
commit | 9b66db47cc899496ef5920bcc2f48926f2ef918c (patch) | |
tree | cc270acc39942c06118026b6d0296186c895d72c | |
parent | 42a5532367c212ca8145798a6133e26fc82145aa (diff) | |
download | ikiwiki-9b66db47cc899496ef5920bcc2f48926f2ef918c.tar ikiwiki-9b66db47cc899496ef5920bcc2f48926f2ef918c.tar.gz |
Added workaround for bug #738493
-rw-r--r-- | doc/bugs/openid_login_fails_wirth_Could_not_determine_ID_provider_from_URL.mdwn | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/bugs/openid_login_fails_wirth_Could_not_determine_ID_provider_from_URL.mdwn b/doc/bugs/openid_login_fails_wirth_Could_not_determine_ID_provider_from_URL.mdwn index 4b506ae5b..b81dd78cd 100644 --- a/doc/bugs/openid_login_fails_wirth_Could_not_determine_ID_provider_from_URL.mdwn +++ b/doc/bugs/openid_login_fails_wirth_Could_not_determine_ID_provider_from_URL.mdwn @@ -149,3 +149,24 @@ Workaround - disable error checking: } else { ~~~~ + +> I get the same trouble with OpenID and some locally installed versions of IkiWiki on Debian wheezy (server) as well as on 13.10 Ubuntu (laptop). To be precise I hit the *other* bug in LWP: [#738493](https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=738493). +> +> My only workaround for now was to fix `PERL_LWP_SSL_VERIFY_HOSTNAME` to 0 directly in `ikiwiki` :-( -- [[users/bbb]] + +~~~~ +*** /home/bruno/opt/ikiwiki/bin/ikiwiki.bad 2014-04-17 15:41:38.868972152 +0200 +--- /home/bruno/opt/ikiwiki/bin/ikiwiki 2014-04-17 15:04:56.524996905 +0200 +*************** sub main () { +*** 226,229 **** + } + } + +! main; +--- 226,229 ---- + } + } + +! $ENV{PERL_LWP_SSL_VERIFY_HOSTNAME} = 0 ; main; +~~~~ + |