Im wondering if someone could give me a little help.
Im using CodeIgniter for my app .. and im also using the Amazon S3 library here -> https://github.com/psugand/CodeIgniter-S3
Im using the following code to try to upload an image to my S3 account.
if ( $this->s3->putObject('filename.jpg', 'profile-images', 'images/filename.jpg, S3::ACL_PUBLIC_READ) ) {
echo 'Ok';
} else {
echo 'Fail';
}
I am getting the following error back.
Message: S3::putObject(): [1] Protocol https not supported or disabled in libcurl
Im wondering if anyone has come across this before?
Any help would be greatly appreciated.
Cheers