BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25209

    Hi,
    Thank you for the reply.

    I am sorry, the ‘HTTP Error’ is a generic message and does not give any pointer about the error. My guess is WordPress is not allowing file due to MIME type. We are delegating the check/upload to WordPress and I don’t see any other reason for it.

    If you can provide some sample media that can help us re-create this issue, I can check and update.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25209
    Brajesh Singh on in reply to: BuddyBlog Pro Groups tabs #47186

    Hi Nik,
    Do you have some template override for the group posts?
    Our default implementation will only show all pending/draft posts to group admin/moderators(if allowed). Other users will only see their own.

    If that is not happening, something on your setup is conflicting/interfering with WP_Query.

    I will suggest disabling some of the plugins to check it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25209
    Brajesh Singh on in reply to: BP Auto Clean Notification #47183

    Hi Tosin,
    Thank you for linking to the repo.


    @danielehrat

    I just had a look. The plugin is configured to delete notifications after 30 days by default. It was an unofficial plugin from one of the support threads and we haven’t provided any setting to customize that without changing the change.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25209
    Brajesh Singh on in reply to: [Resolved] The plugin causes a critical site error #47182

    Hi,
    Please upgrade to 1.5.3.
    It fixes the issue with WP Cerber compatibility.

    Let me know if it works for you or not?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25209
    Brajesh Singh on in reply to: Is there any pop up for buddy press ? #47181

    Hi Tosin,
    That’s awesome news!

  • Keymaster
    (BuddyDev Team)
    Posts: 25209

    Hi Ethan,
    Thank you.
    I have mailed you now.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25209

    Thank you for confirming Chris!

  • Keymaster
    (BuddyDev Team)
    Posts: 25209

    Hi Ethan,
    Thank you for confirming.

    At BuddyDev we are glad to take over projects related to BuddyPress. In your case, You need assistance with Userinsight. We can look into it and fix for you but we don’t have expertise with Userinsight so we are unable to justify the time needed/provide a fix estimate. If that is fine with you, Please let me know and I will get back.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25209
    Brajesh Singh on in reply to: Spamers #47171

    Hi Daniel,
    You are welcome.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25209

    Hi,
    I had a look.
    Your current issue is caused by WP Cerber plugin. Here is what is happening:-

    1. On ‘init’ action, wp cerber check for access and if the url is prohibited, It loads 404 page.
    The problem is, It is loading theme’s header.php too early(normally, It should do that at ‘wp’ or below).

    At ‘init’ action, BuddyPress components are also setup and since WP Cerber has slightly high priority, it loads the page before our MediaPress gallery component is setup.

    MediaPress plugin hooks to ‘body_class’ to add some extra css classes to ‘body’ element. On the 404 page created by Cerber, this gets called too early(before even having the component setup). That is causing the issue(the slug is not defined at that time).

    The real solution would be to have W Cerber fix it by loading the template late(I checked their wp.org page and It is under temporary suspension currently, so could not request them for it).

    A temporary fix form our side will be to add an extra check for MPP_GALLERY_SLUG being defined(we should not need to do it as our plugin guarantees it to be defined at init).

    I will push a release tomorrow to fix this one for you.

    Regards
    Brajesh