本文介绍了Amazon S3上wamp localhost的SSL错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我尝试在我的localhost上的PHP Amazon S3测试,但仍然得到相同的错误:

I'm trying to test in PHP Amazon S3 on my localhost but keep getting the same error:

测试代码:

$sqs = new AmazonSQS();
$response = $sqs->list_queues();
var_dump($response->isOK());

我已将AWS SDK正确安装到php文件,并在本地服务器上启用了CURL和SSL。我能做什么使这项工作?我在网上找不到任何帮助。我使用wamp。

I properly installed the AWS SDK to php files and enabled CURL and SSL on me local server. What can I do to make this work? I can't find any help online. I'm using wamp.

推荐答案


  1. 获取,并将其保存到您的硬盘驱动器。 在php.ini中的configuration.php#ini.curl.cainforel =noreferrer> curl.cainfo 以及步骤中下载的文件的完整路径1。

  2. 重新启动Apache。

  1. Get this file and save it to your hard drive. Call it cacert.pem.
  2. Configure curl.cainfo in php.ini with the full path to the file downloaded in step 1.
  3. Restart Apache.

要找出为什么修复它,您需要的所有信息都可以在上面的链接中找到。

I'll leave it as an exercise for the reader to find out why this fixes it, all the information you need can be found in the links above.

这篇关于Amazon S3上wamp localhost的SSL错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 12:24