SSL problem with https://www.imified.com
I have an IM Bot setup using IMified that has been working until yesterday.
Starting yesterday, the IM Bot began throwing CA cert error 14090086 when my PHP code was attempting to curl to https://www.imified.com.
I found this FAQ article, but it said the problem was on my
server side, which doesn’t appear to be the case…
http://help.imified.com/kb/building-imified-bots/ca-cert-error-1409...
Since my PHP code is attempting to curl to https://www.imified.com, I tried
hitting that address directly in Firefox. I get a response back
from Firefox that “This Connection is Untrusted. You have
asked Firefox to connect
securely to www.imified.com,
but we can't confirm that your connection is secure. www.imified.com uses an invalid
security certificate. The certificate is not trusted because the
issuer certificate is unknown. (Error code:
sec_error_unknown_issuer)”.
I next changed my PHP code to curl to
http://www.imified.com instead
of https://www.imified.com,
and my IM Bot is now working again.
So it would appear there is a SSL problem on the www.imified.com site.
2 Posted by Dave Hoff on 27 Apr, 2011 08:42 PM
Unfortunately, yesterday our SSL certificate expired. We quickly fixed this problem and there should be no issue using SSL address.
Sorry for the inconvenience .
Dave
3 Posted by John Kirn on 28 Apr, 2011 02:13 PM
I'm still having the problem when attempting to curl to https://www.imified.com, which gives me "ERROR SSL certificate problem, verify that the CA cert is OK. Details: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed".
Curling to http://www.imified.com works fine.
4 Posted by Stefan on 29 Apr, 2011 07:09 PM
I'm having problems connecting to https://www.imified.com as well. I tried writing code both in Java and .NET from two different servers. The code works well with different HTTPS sites. Can this be fixed?
5 Posted by ben on 06 May, 2011 05:14 PM
I had the same issue... https failed w/ same error message as John Kim, http worked fine.
What's going on?
6 Posted by Federico Linares on 12 May, 2011 02:58 PM
Hi there,
I am experiencing the same issue, but if I try the url = http://www.imified.com then I don't get any response at all. I am also not sure if I am using the right set of parameters, since I find the documentation a bit confusing, so any assistance would be greatly appreciated.
This is my code:
$url = 'http://www.imified.com/api/bot/';
$data = array(
echo $xml; // nothing happens. Blank response.
Many thanks in advance.
7 Posted by Federico Linares on 12 May, 2011 05:09 PM
Hi again,
just in case anyone finds it useful, I managed to figure out what the problem was.
The mayor issue was related with the $userkey. I was confused; the explanation can be found here: http://help.imified.com/discussions/problems/45-keeps-getting-inval...
Secondly, the SSL issue was bypassed by setting:
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
Cheers,