Reply To: SyncS3 Support?
December 25, 2020 at 12:18 pm Reply
Support Manager
Hi Kris,
It looks like that’s a permission issue. If you’re using unsigned URLs, the files need to be public. SyncS3 uploads files as private by default. You can change this with the following snippet:
add_filter( 'syncs3_put_object_acl', function( $acl ) { return 'public-read'; } );