Hi Carsten,
Thank you for the update.MediaPress media is sane as WordPress attachment, so it works the same way.
Regards
BrajeshHi Brajesh, the connection to the AWS is now established and working using Media Cloud. But I have a problem with uploaded images in MediaPress
With rtMedia, activated the user added media is uploaded to the AWS, symboled by a little cloud on the uploaded image.
In MediaPress the uploaded images are not added to the Media Gallery, but only present in the galleries. Why are they not in the Media Gallery as well?
Regards
CarstenHi there, the images are simply not in the media gallery, but only visible in the MediaPress galleries, either Media Cloud is activated or not.
I noticed this in the user settings, which probably has something to do with it, but there are no options to publish them, what does this mean, and which settings have I missed?
‘You have 3 fotos not published to activity’
Regards
CarstenHi Keith, thanks for your reply.
Media Cloud connects very well to my AWS, and media from rtMedia are sent to the cloud.
The problem is with MediaPress. Images have to be first uploaded to the media gallery to be sent to the cloud.
The problem is that my uploaded images are not in the gallery.
So I hope Brajesh can answer why this is?
Regards
CarstenProblem solved, this snippet, which I had forgotten all about, was causing it.
Thanks for your help with solving this issue
/** * Filter WordPress attachment args to remove MediaPress Media from the list. * * @param array $args args. * * @return array */ function mpp_custom_filter_attachment_args( $args ) { $args['meta_key'] = '_mpp_is_mpp_media'; $args['meta_compare'] = 'NOT EXISTS'; return $args; } add_filter( 'ajax_query_attachments_args', 'mpp_custom_filter_attachment_args' );
The topic ‘ [Resolved] Hhow to connect MediaPress to a cloud server’ is closed to new replies.