BuddyDev

Search

Replies

  • Participant
    Level: Yogi
    Posts: 1112
    calu on in reply to: Why does bp members directory reload every time – revisited #27961

    Hi, I noticed that the no ajax reload is working if I return to the directory, by using a back button.

    If I swipe back on the phone screen, the directory reloads.

    Any solution to this would be much appreciated as the reload time is a nuisance for users.

    Regards
    Carsten

  • Participant
    Level: Yogi
    Posts: 1112

    On the other hand, I think it’s maybe a good idea to keep the avatar images on my WP server, so it is not relevant.

    Regards
    Carsten

  • Participant
    Level: Yogi
    Posts: 1112
  • Participant
    Level: Yogi
    Posts: 1112
    calu on in reply to: [Resolved] Users avatars gone #27730

    Hi Brajesh, problem solved,
    after uploading my media gallery to AWS, the url’s in the code for using different default avatar based on BuddyPress profile field was of course not valid anymore

    Regards
    Carsten

  • Participant
    Level: Yogi
    Posts: 1112
    calu on in reply to: [Resolved] Hhow to connect MediaPress to a cloud server #27695

    Problem 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' );
  • Participant
    Level: Yogi
    Posts: 1112
    calu on in reply to: [Resolved] Hhow to connect MediaPress to a cloud server #27694

    Hi 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
    Carsten

  • Participant
    Level: Yogi
    Posts: 1112
    calu on in reply to: [Resolved] Hhow to connect MediaPress to a cloud server #27691

    I activated Activity Streams to see if this was required for MediaPress to run, but same result, uploaded media are not in the library.

  • Participant
    Level: Yogi
    Posts: 1112
    calu on in reply to: [Resolved] Hhow to connect MediaPress to a cloud server #27690

    Hi 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
    Carsten

  • Participant
    Level: Yogi
    Posts: 1112
    calu on in reply to: [Resolved] Hhow to connect MediaPress to a cloud server #27682

    Hi 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
    Carsten

  • Participant
    Level: Yogi
    Posts: 1112
    calu on in reply to: [Resolved] Hhow to connect MediaPress to a cloud server #27678

    Hi again, I think I figured this out, there are no direct connection between MediaPress and AWS, media from MediaPress are first stored on my server, and then transferred to AWS.