Hi @keksdestodes,
Thank you for providing the details and the URL of the page. The error message you’re encountering, “The file xxx could not be accessed,” is likely due to a CORS (Cross-Origin Resource Sharing) policy restriction.
The problem is arising because your website is trying to access an image file hosted on a different domain (“<u>https://cdn-5f7884d3c1ac190fbc5749c6.closte.com</u>“) from your own domain (“<u>https://camperstyle.de</u>“), and the server where the image is hosted hasn’t been configured to allow such cross-origin requests.
To resolve this, you’ll need to add the necessary headers to your server to enable cross-origin requests from your domain. I recommend following the instructions in the link you provided: https://biglinden.com/support/how-to-enable-cors-in-wordpress/. This guide will help you set up the required headers to allow your website to access the images hosted on a different domain without any issues.
Once you’ve implemented the CORS headers, your users, whether logged in or not, should be able to access the images without encountering the “The file xxx could not be accessed” error.
Let me know if you are able to solve the issue.
Best regards,