ERROR: S3 Service API: [curl] 77:
-
I was receiving this error in the error logs when it was attempting to put my backup in my S3 bucket. When looking at the settings for the S3 bucket on my backup job, it would also give a similar error instead of showing the dropdown box for the list of buckets.
I was unable to find topic for this with S3 but DID find one associated with using the Dropbox API for backup. The information found on the support post using Dropbox was also able to fix my problem. So I thought I would add this for people searching for THIS error message trying to find a solution for S3 specifically.
The response from marknjones contained the solution. cURL is no longer able to validate SSL certificates it encounters when resolving an HTTPS URL. Following these instructions will fix that:
You need just to set cacert.pem to curl.cainfo.
Since PHP 5.3.7 you could do:
download https://curl.haxx.se/ca/cacert.pem and save it somewhere.
update php.ini — add curl.cainfo = “PATH_TO/cacert.pem”Hope this helps someone else!!
- The topic ‘ERROR: S3 Service API: [curl] 77:’ is closed to new replies.