Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'spam'

Viewing 25 results - 101 through 125 (of 2,711 total)
  • Author
    Search Results
  • #318130
    funkydiver
    Participant

    Is there a way to stop each reply indenting… it makes the messaging very quickly unreadable on any screen.

    It’s not Theme related, as I’ve switched it to different themes and it’s still doing it.

    Also, the same with spam being repeated.

    New to BP, so apologies if it’s something simple I’ve overlooked.

    http://fringenetwork.co.uk/wp-content/uploads/2021/04/indent.jpg

    #318080
    Varun Dubey
    Participant

    check inside spam folders or use any SMTP plugin

    #317737
    shanebp
    Moderator

    I think you can do that with a WP filter

    add_filter( 'wp_mail_from', 'custom_wp_mail_from' );
    function custom_wp_mail_from( $original_email_address ) {
        //Make sure the email is from the same domain 
        //as your website to avoid being marked as spam.
        return 'webmaster@mydomainname.com';
    }

    wp_mail_from

    #317631
    blenkhn
    Participant

    Hi,

    In order to keep my messages out of spam I signed up for sending my messages though send out blue, and using smtp. The email messages from Buddy press are not being sent out, all of the other messages are being sent though. Can anyone let me know what I need to do to get the messages from buddy press to be sent out through the smtp setup?

    #317399
    Varun Dubey
    Participant

    @force73 check with plugin support, might be they missed to add spam members parameter for search results

    #317364
    eyesopen
    Participant

    I was wondering if anyone could help me. How do you delete a user’s Topic or posts in BuddyPress. I have BuddyPress site, but I can see where you can delete a post or Top that might be inappropriate. If I enable-spam for the user you can see the post. I would like to delete the data first or have the user have the ability to delete their own post, but I don’t see that capability either.

    #317233
    kumarketan
    Participant

    Hi Buddypress,

    I have installed latest version of buddypress and when click on sigh up, it show massage that verification link has been sent to your email id but unable to received any link neither inbox nor spam folder.

    Do not not where issue is. Also facing same issue with resend link and forget password.

    Please help to solve the issue or guide.

    #317038
    jennifersanchez
    Participant

    Hi!
    I believe that my problem is in the sql query (although they work separately in my test in phpmyadmin) Im trying to filter a meta activity.

    `function Custom_Global_Search_Posts_sql( $sql, $args ) {
    global $wpdb;$bp;
    $sql = ” SELECT DISTINCT a.id FROM wp_bp_activity a INNER JOIN wp_bp_activity_meta ON (a.id = wp_bp_activity_meta.activity_id) WHERE a.is_spam = 0 AND (wp_bp_activity_meta.meta_key = ‘descr’ ) AND a.type = ‘activity_problem’ AND wp_bp_activity_meta.meta_value LIKE %s “;

    $query_placeholder[] = ‘%’.$wpdb->esc_like( $search_term ).’%’;
    $sql = $wpdb->prepare( $sql, $query_placeholder );
    return $sql;
    }`

    Thanks!!

    #316779
    goku22
    Participant

    In my functions.php I have added following lines of code but nothing is happening. I want that when I open my activity page a post get submitted automatically:
    function record_activity_grocery_task(){

    $activity_id = bp_activity_add(array(
    ‘id’ => false,
    ‘user_id’ => bp_loggedin_user_id(),
    ‘item_id’ => false,
    ‘action’ => ‘Posted a new photo’, // The activity action – e.g. “Jon Doe posted an update”.
    ‘content’ => ‘Grocery task form submitted’,
    ‘component’ => false, // The name/ID of the component e.g. groups, profile, mycomponent.
    ‘primary_link’ => ”, // Optional: The primary URL for this item in RSS feeds (defaults to activity)
    ‘type’ => ‘activity_update’, // The activity type e.g. activity_update, profile_updated.
    ‘item_id’ => false,
    ‘secondary_item_id’ => false,
    ‘recorded_time’ => bp_core_current_time(),
    ‘hide_sitewide’ => false,
    ‘is_spam’ => false,
    ‘error_type’ => ‘bool’
    ));

    }

    add_action(‘bp_init’,’record_activity_grocery_task’);

    #316603
    Varun Dubey
    Participant

    try Anti-Spam by CleanTalk

    #316595
    brains99
    Participant

    You can see here the spam bot profiles start with QWQW …

    Members

    #316594
    brains99
    Participant

    I have a good recapthca installed on the website yet still spam bots get right in and create spam profiles. Also, those spam profiles are not even showing as users! So I can’t even delete them.

    Do you know what’s going on and how to stop this?

    #316554
    Mark Argent
    Participant

    I’ve just hit the same problem. This post, has been marked as spam, though it emphatically is not:

    https://buddypress.org/support/topic/members-list-showing-empty/

    How do I respond? I’ve spent rather a lot of time over the last week trying to solve a problem, posted it, and get a message saying it’s spam. Yes, I did edit it after posting, as, after seeing how it looked, it struck me that it could be clearer.

    Do I:
    1) Post it again;
    2) Conclude that Buddypress really is rubbish because, on top of the time *actual* problem has taken it can’t even tell the difference between something that is or isn’t spam?

    #316337
    Bigue Nique
    Participant

    On a multisite install, as @pcwriter stated here : https://buddypress.org/support/topic/user-marked-as-spammer-how-do-i-un-mark-them-as-a-spammer/

    In your WP dashboard, go to “Users” and check the box next to the name of the user highlighted in red. Then, select “Not Spam” from the “Bulk Actions” dropdown (top or bottom of your user list). Click “Apply”. Should do it.

    It worked for me! Until when?

    Also, Vince Pettit suggested a plugin here https://wordpress.stackexchange.com/a/60583/152860

    We are using this wordpress plug in – New User Approve

    Provides functionality to approve/deny new user registrations.

    Haven’t tried it yet, but it’s probably the best long-term solution.

    #316338
    Bigue Nique
    Participant

    On a multisite install, as @pcwriter stated here : https://buddypress.org/support/topic/user-marked-as-spammer-how-do-i-un-mark-them-as-a-spammer/

    In your WP dashboard, go to “Users” and check the box next to the name of the user highlighted in red. Then, select “Not Spam” from the “Bulk Actions” dropdown (top or bottom of your user list). Click “Apply”. Should do it.

    It worked for me! Until when?

    Also, Vince Pettit suggested a plugin here https://wordpress.stackexchange.com/a/60583/152860

    We are using this wordpress plug in – New User Approve

    Provides functionality to approve/deny new user registrations.

    Haven’t tried it yet, but it’s probably the best long-term solution.

    #316244
    youzeranbimberuser
    Participant

    My hosting is retarded, I told them I would put a wordpress on each of 5 cpanel account they grant me to keep things neat an orderly…

    Hosting: NoOOO!!! Attribute your domains/subdomains on just 1!!!!
    Everyone knows better than me!

    Yea they didn’t remove the groups. Tried yesterday. since I have 5-6 domains on this account where do I find the groups?

    View post on imgur.com

    shanebp
    Moderator

    Yes, stack is great.
    While it would be nice to avoid all the spam on these forums, who would answer questions on a BP stack?

    There are unofficial Facebook groups for BuddyPress and BuddyBoss.
    Participation in the former is scant, while the latter is booming.

    #316150
    yesbutmaybeno
    Participant

    My site has a good 15,000+ users, of which about 100+ online in BP area at any given moment (so no caching etc)

    Constantly tweaking things for performance. Finally checked out the MySQL slow query log and it’s a lot of stuff. But a solid 80% of it area queries like this

    # Query_time: 3.036380  Lock_time: 0.000062  Rows_sent: 0  Rows_examined: 772130
    SET timestamp=1607682328;
    SELECT DISTINCT a.id  FROM wp_bp_activity a  WHERE
    (
            (
                    a.content LIKE '%@bobtho<%'
                    AND
                    a.hide_sitewide = 0
            )
    )
    AND a.is_spam = 0 AND a.type NOT IN ('last_activity') ORDER BY a.date_recorded DESC, a.id DESC LIMIT 0, 21;

    Query time is 3.2 seconds, some are upwards of 5+

    I think it’s coming from here https://github.com/buddypress/BuddyPress/blob/d2223de16c4b525906aaa89597a6ccc30515f58d/src/bp-activity/classes/class-bp-activity-activity.php#L380 and particularly when a user presses their “My Mentions” tab, thus its loading all of their activities that include their “@ username” text

    My CPU load is *always* high, I’ve upgraded my server earlier in the year:3.4 GHz 4 vCores and 16 GB RAM so it’s not bad

    Basically, I’m wondering if anything can be done about this? Since my slow-query log is filled with these types of queries (specifically it seems to be this “@ username” search) – can any optimizations be done, either in BP or something I can hack onto it?

    #315819
    danial
    Participant

    hello,
    i am currently working on a website that is using buddypress plugin and i am getting thousands of email on daily basis of spam user registration.
    link: https://www.fbia.org.au/register/
    wordpress version: Version 5.5.3
    buddypress Version 6.4.0
    parent theme: omega
    child theme DeliciousVersion: 0.1.2 (currently install)

    i have applied the following methods
    i) install wp zero spam (it has to blocked the spam user)
    ii) install the (Advanced noCaptcha & invisible captcha) captcha is working but spams are bypassing it.
    iii) install the (BuddyPress reCAPTCHA), its not updated on latest 3 versions of wordpress not working.
    iv) install a third party plugin(Pixel Jar BuddyPress Honeypot) not working.
    v) install (Spam Destroyer) not working, it also just blocking, not a permeant solution
    vi) install (Wordfence Security) to scan the website, not found any serious error.
    vii) got a plugin (wangguard) from forums answers, but not working on latest wordpress versions.
    viii) install (BuddyPress Security Check), not working just because of latest updates of wordpress.

    so can you at-least tell me the permeant solution for this.

    #315679
    #315363
    chrisproblade
    Participant

    So this has been an on and off issue I have struggled with using buddypress. Several users haven’t received an activation link. Whether it’s the fact that the link itself looks super spammy or some email servers have security issues with wordpress sending sketchy linksI have no idea. All I can say is with captcha plugins there really is no reason to force an activation link. A toggle feature should be added to buddypress to switch between auto account activation and email activation. I just had 5 people today say that the activation email was nowhere to be found. It makes it all the more frustrating when you are running paid ad’s to get sign ups on your site while this issue is happening. I’m on wp version5.5.3 and buddypress version 6.3.0 installed on the Arcane gaming theme by skywarriors.

    #315022
    Technigal
    Participant

    Thanks so much for your reply.

    Thing is the client does not use Paid Memberships Pro and it seems it can’t be used as a standalone. So they don’t use payments on the site (I wish they did) and auto registration is turned off. I think the paid version of BuddyPress Members Pro will do the trick, but client is not forking out more money because of the rand/dollar exchange so that is a no go. So I was hoping for a code snippet.

    I found code that would block by username – but I can’t do it like that. Users gets updated from a daily import, and those who did not pay expires, but shouldn’t be removed. To automate that I thought subscriber could block them from using the rest of the site, but nothing blocks it on BuddyPress pages.

    Something else I’ve done before was to make use of the “Spam” function – I translated it to Expired – that way it was easy for some admins to just quickly expire a member and also to unexpire them – but in this case it checks against a daily import and I need to automate it.

    If at all there were a way to import users with a certain role for example, as a “spammer” which then would translate to expired, that would be great too.

    So I am fishing for ideas … hoping someone has something for me.

    Thanks again for your input.

    #314900
    ladalang
    Participant

    I’m unsubscribed to all but still getting emails. I marked it as spam and it drops the emails there. I’m good with that.

    #314879
    ladalang
    Participant

    I’m going to mark it as spam.

    #314864
    ladalang
    Participant

    On this site. buddypress.org. And you’re getting spammed like crazy so the emails have tripled. I want to unsubscribe from everything on this website. How do I do that?

Viewing 25 results - 101 through 125 (of 2,711 total)
Skip to toolbar