Home › Forums › N-Media File Repository Manager PRO › upload not working with Amazon S3 › Reply To: upload not working with Amazon S3
November 25, 2018 at 5:08 am
#9937
nmedia
Keymaster
Hi,
Please read this info: https://najeebmedia.com/2012/04/30/n-media-file-uploader-add-on-for-amazon-s3/
Here are simple steps:
-
Set API key and Secret Key
-
Create Bucket on Amazon Account
-
Set Bucket Name in plugin settings
-
You also need to set region which you can found under your Bucket detail
-
You also need to check CORS Configuration under Permissions menu in Bucket and it should following value:
<?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<CORSRule>
<AllowedOrigin>*</AllowedOrigin>
<AllowedMethod>PUT</AllowedMethod>
<AllowedMethod>POST</AllowedMethod>
<AllowedMethod>GET</AllowedMethod>
<AllowedMethod>DELETE</AllowedMethod>
<AllowedMethod>HEAD</AllowedMethod>
<MaxAgeSeconds>3000</MaxAgeSeconds>
<ExposeHeader>ETag</ExposeHeader>
<AllowedHeader>*</AllowedHeader>
</CORSRule>
</CORSConfiguration>