]> sipb.mit.edu Git - ikiwiki.git/commitdiff
Added workaround for bug #738493
authorhttps://www.google.com/accounts/o8/id?id=AItOawlAe9oSm2pgOSLJw_RDk9wQDyo3UQfRxwg <Bruno@web>
Thu, 17 Apr 2014 13:49:07 +0000 (09:49 -0400)
committeradmin <admin@branchable.com>
Thu, 17 Apr 2014 13:49:07 +0000 (09:49 -0400)
doc/bugs/openid_login_fails_wirth_Could_not_determine_ID_provider_from_URL.mdwn

index 4b506ae5b40df27c1f25b1f99bc2284f723c356a..b81dd78cdf37252be2f78f5f8abb159000a90561 100644 (file)
@@ -149,3 +149,24 @@ Workaround - disable error checking:
         }
         else {
 ~~~~
         }
         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;
+~~~~
+