SSL certificate error: self signed certificate in certificate chain in using Twilio on my Laravel Website

♀尐吖头ヾ 提交于 2019-12-06 05:01:09
rickyrobinett

Twilio Developer Evangelist here.

This error is caused by not having an up-to-date bundle of CA root certificates with your PHP installation. You need to download the latest CA root certificate bundle and update your php.ini to use this bundle. This blog post shows you how to accomplish both of those things.

Let me know if that gets you all fixed up!

If solution selected as answer to this question did not work, and you continue to have SSL authentication problems try this:

Change the setting twilio_use_certificate from false to true.

Find file OpenVBX/config/config.php and search for "twilio_use_certificate"

Then change FROM:

$config['twilio_use_certificate'] = false;

TO:

$config['twilio_use_certificate'] = true;
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!