Forum Replies Created
I reverted back to an older version of the Amazon S3 plugin and it fixed the issue. Shaon can you go through testing on the newest version and make sure it’s fully compatible.
I reverted back to an older version of the Amazon S3 plugin and it fixed the issue. Shaon can you go through testing on the newest version and make sure it’s fully compatible.
Any progress on this?
It is still not working for me, even with the fix above. When I select the file in the S3 window, it doesn’t add the file to the Attached Files section. It used to work, but somehow stopped working after one of the updates.
The fix posted in the URL above worked for me. Please add it to the current release.
This worked for me too. Shaon, is this going to be added to the current release?
Add a bucket policy via S3 console permissions editor. Should take care of the hotlinking issue.
{
"Version": "2008-10-17",
"Id": "HTTP referrer policy",
"Statement": [
{
"Sid": "1",
"Effect": "Deny",
"Principal": {
"AWS": "*"
},
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::yourbucketname.goeshere/*",
"Condition": {
"StringNotLike": {
"aws:Referer": [
"http://domaingoeshere.com/*",
"http://www.domaingoeshere.com/*",
"https://domaingoeshere.com/*",
"https://www.domaingoeshere.com/*"
]
}
}
}
]
}
Hope this helps