Hi Edward,
I am using s3 and having trouble broadcasting images (i.e. featured images and custom field images). I found the problem in file /src/traits/attachments.php in threewp_broadcast_copy_attachment() function that checks existing source file using below condition.
if ( ! file_exists( $source ) )
{
$this->debug( 'Copy attachment: File "%s" does not exist!', $source );
return false;
}
As it users file_exists() function, it looks for local files only and when there is an s3 url it fails to copy that file to the blog.
Did you have this issue before? Is there any solution around this issue? I have temporarily commented return false; line and it works fine, but not perfectly.
Would you please let me know if you come across any solutions?
@fusillicode do you have any solution yet?
Thanks in advance.