1

我分叉了GitHub OpenVBX 项目,创建了一个 Azure 网站(在 ClearDb 上使用 MySQL),并将其配置为从分叉中提取。(重现步骤类似于: http: //www.windowsazure.com/en-us/develop/php/common-tasks/create-a-php-web-site

该站点出现,我可以对其进行配置,直到它尝试连接到 Twilio。

在连接到 Twilio 页面上,输入必填字段后,我收到此错误:

SSL 证书问题:无法获取本地颁发者证书 (0)

Web 服务器日志或我的 Twilio 帐户日志中没有错误。

该错误没有提供足够的详细信息来说明它正在做什么来诊断问题。

我已将此作为问题发布在 OpenVBX 项目网站上。


更新:我尝试更新 CURL 的 cacert.pem 文件。同样的错误。

4

1 回答 1

1

在 \config\config.php 中将“twilio_use_certificate”设置为 true。

/*
|--------------------------------------------------------------------------
| Use Twilio API Certificate
|--------------------------------------------------------------------------
|
| Curl certificates on some systems are either incomplete or out of date and
| this can effect connectivity to the Twilio API. If you're getting an error
| "error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify 
| failed (0)" then set the option below to true.
|
*/
$config['twilio_use_certificate'] = true;
于 2013-10-24T20:28:02.953 回答