Hi @vicadaix ,
You need to add CORS configuration to your S3 Bucket.
To do so, go to your S3 Bucket Configuration settings.
Click on the Permissions.
Now, scroll down to the Cross-origin resource sharing (CORS) section, and you will get an existing configuration.
Click on the Edit button to change it.
Add the following code:
[
{
“AllowedHeaders”: [
“*”
],
“AllowedMethods”: [
“PUT”,
“POST”,
“DELETE”
],
“AllowedOrigins”: [
“https://YourDomainAddress.com/”
],
“ExposeHeaders”: []
},
{
“AllowedHeaders”: [
“*”
],
“AllowedMethods”: [
“PUT”,
“POST”,
“DELETE”
],
“AllowedOrigins”: [
“https://YourDomainAddress.com/”
],
“ExposeHeaders”: []
},
{
“AllowedHeaders”: [],
“AllowedMethods”: [
“GET”
],
“AllowedOrigins”: [
“*”
],
“ExposeHeaders”: []
}
]
Change https://YourDomainAddress.com/ with your site domain address and click on Save changes.
This should work for you.
Let us know how it goes.
Regards,
Hello,
We are testing with the configuration you recommended in the “CORS Bucket”, the plugin “WP Offload Media Lite” handles the files without problems, they are completely public, but the same problem still appears when previewing a scene: “The File URL_S3 could not be accessed.”, this message is inside a black box.
However, in the “Scene Upload:” section, the image is visible.
Thanks,
Hi @vicadaix ,
What you can try now, is to create a new tour on your site and see if it works.
You can also try to contact the developers of the other plugin and see if they can provide you with a solution.
You see, we applied the CORS configuration solution from our testing sites, and it worked for us.
Regards,