• dkeeling

    (@dkeeling)


    Hi, just testing this plugin out and I think it will do exactly what I need. However, I’m not very familiar with S3 and all the various settings. Can you tell me what the S3 settings and permissions need to be in order to make the plugin work correctly?

    I’ve been able to upload files to the bucket, but so far I’ve been unable to retrieve the URL for the files to actually use them on my site.

    Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter dkeeling

    (@dkeeling)

    Follow up, it seems that the file uploads and I can view the file via the link that it generates, but when I save the post/page, that value is not saved.

    Plugin Author Codemenschen

    (@codemenschen)

    Hi @dkeeling
    Thank you for your message,
    For your information,You need set CORS Configuration link documents: https://docs.aws.amazon.com/AmazonS3/latest/user-guide/add-cors-configuration.html

    <?xml version="1.0" encoding="UTF-8"?>
    <CORSConfiguration xmlns="https://s3.amazonaws.com/doc/2006-03-01/">
    <CORSRule>
    <AllowedOrigin>*</AllowedOrigin>
    <AllowedMethod>GET</AllowedMethod>
    <AllowedMethod>POST</AllowedMethod>
    <AllowedMethod>HEAD</AllowedMethod>
    <AllowedMethod>DELETE</AllowedMethod>
    <AllowedMethod>PUT</AllowedMethod>
    <MaxAgeSeconds>1800</MaxAgeSeconds>
    <ExposeHeader>ETag</ExposeHeader>
    <AllowedHeader>*</AllowedHeader>
    </CORSRule>
    </CORSConfiguration>

    If possible,can you send us a few screenshot? We will check and inform to you asap!

    Thread Starter dkeeling

    (@dkeeling)

    Thanks, I did find that same article you shared and adjusted the JSON in the CORS settings for the bucket.

    The file uploads correctly, and the link to the file is correct, but when I save the post the stored value disappears. Here’s a link to a screenshot.

    Thank you!

    Plugin Author Codemenschen

    (@codemenschen)

    Hi @dkeeling

    Thank you for your message,
    I think you need to update the plugin to version 1.1.0 then try again.
    I have to make a video demo working https://drive.google.com/file/d/1bEZG8s42KkOUFEJ0ZW_KouRCM8NFIPFN/view and you can try test demo on site https://acfs3.codemenschen.at/

    Thank

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘S3 Permissions’ is closed to new replies.