I'm guessing right now that it's a CURL issue. Curl is setup wrong or not setup to ignore or set to validate the SSL connection.
Add this:
curl_setopt ($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, 0);
Add this in app/start/global.php
Queue::connection()->getIron()->ssl_verifypeer = false;
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community