5

I am using plupload to upload files directly to Amazon S3. I added crossdomain.xml file into Amazon.When I try the sample code given in plupload to upload files to S3 I am getting

GET http://xxxx.s3.amazonaws.com/crossdomain.xml 403 (Forbidden)

My crossdomain.xml is

 <?xml version="1.0"?>
 <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-     policy.dtd">
 <cross-domain-policy>
 <allow-access-from domain="*" secure="false" />
 </cross-domain-policy>
Damodaran
  • 10,882
  • 10
  • 60
  • 81

1 Answers1

0

Do you have public read acl set on the object or getobject permissions on the bucket?

http://docs.aws.amazon.com/AmazonS3/latest/dev/ACLOverview.html

imperalix
  • 3,701
  • 1
  • 23
  • 19