-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error when running the script "MalformedXML" #4
Comments
Hey @gversmee, do you happen to be using a browser extension that is blocking your PUT response's headers from S3? I've faced this same issue / error code when Privacy Possum on Firefox was blocking my The You can check this for yourself by adding a Disabling the extension worked for my case. |
I have the same issue, and the Etag is undefined but my browser is not blocking the headers. |
Thanks for your comments. I tried with several browser, and deactivating the extension, but still got the same issue. Finally, I found this repo and ended up using it. It works fine. |
I had this same issue, but it was due to a missing CORS configuration on the S3 bucket. <?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>
<MaxAgeSeconds>3000</MaxAgeSeconds>
<ExposeHeader>etag</ExposeHeader>
<AllowedHeader>*</AllowedHeader>
</CORSRule>
</CORSConfiguration> Make sure to have |
Hello, thank you very much for this script, this is exactly what I'm looking for. I'm trying to use it to upload a small object on S3. I'm running into the following issue:
Do you have the same issue on your end or is it my configuration?
Thanks for your help
The text was updated successfully, but these errors were encountered: