I have to apologize for the rant, I was very frustrated.
I don't know how to get the exact error message, other than the one on the frontend user interface.
Your string worked in local. Thanks!...I guess I was mucking it up as I was going along.
But, I need to use a larger storage solution, and I can't get it to work with AWS/S3.
At this point, I'm guessing the settings in S3 account need adjusting.
I've disabled "block public access" within my bucket..
and I used this code for the policy:
{
"Version": "2008-10-17",
"Statement": [
{
"Sid": "AllowPublicRead",
"Effect": "Allow",
"Principal": {
"AWS": "*"
},
"Action": [
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::bucket/*"
]
}
]
}
And of course replaced the resource with my own 'Arn'...But still does not work.
Edit: I can see my uploads within the aws management console.. and have successfully viewed the object URL...so that tells me the issue is not with aws, it's within my configuration in the extension.
Can someone please inform me as to what I'm doing wrong?