Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'spam'

Viewing 25 results - 51 through 75 (of 2,605 total)
  • Author
    Search Results
  • #326402
    Mathieu Viet
    Moderator

    Hi @ok2net @muhittinsahilli & @johnjamesjacoby 😉

    Thanks a lot for your feedbacks 😍. Very interesting ideas!! I’ll add the « spam protection » one I received on Twitter to the list.

    Just like John who gave the right example as a Project Lead, I’ll share my ideas 😁.

    A first category of ideas is about getting more hands to help us build great things:
    – A BuddyPress annual meeting like a BuddyCamp but online to welcome everyone on earth: a « World-BuddyCamp »
    – As BuddyPress is more than just a plugin, we should probably have more « official » teams to compliment the BP Core one: Support, Theme, Docs, REST API, Marketing (?), 

    – The BuddyPress.org network to host developer/contributors docs & Core development updates.
    – A great BP Standalone theme for the BuddyPress.org site as well as a replacement for the BP Default theme.
    – Providing recommanded Addons to help new users choose the right BP plugins for their need.

    À second category of ideas is about code:
    – making BP Rewrites the default URL parser,
    – going even more granular than we are, moving optional components as BuddyPress add-ons: this would probably help us to improve each feature and Core/Members with the basic features a user can expect from a community feature software.
    – Blocks to standardize ways to share media/rich tools into activity streams, private conversations and why not Template pack & themes.
    – Of course BP Attachments, user generated media to share with the BP community as well as giving WordPress Admins a new source for their editorial content.
    – Private conversations revamped looking more like private chats / slack exploring WebRTC or Server-Sent Events.

    And finally I invite @dcavins, @espellcaste, @boonebgorges, @djpaul, @r-a-y, @mercime and all the members of the team to follow @johnjamesjacoby example! Let’s all share what we think BuddyPress is missing 😇

    #326128
    Anonymous User 18187419
    Inactive

    Possible options to look at:

    – verification email on signup is a must.

    – Plugin “BP Restrict Signup By Email Domain” ….lets you restrict new signups to gmail, yahoo, hotmail etc. Will prevent 99% of spam-bot registrations (eg. s.p.a.m.m.e.r. at spambot dot xyz).

    – Plugin “BP Registration Options” …holds all new signups in a moderation queue until manual approval by admin, during which time they can’t interact with Buddypress components (and I assume cannot create new groups).

    Just some suggestions.

    #326051
    decteamer
    Participant

    To be clear – this did NOT happen before the switch to external mail client. So there is no hidden CC etc.

    Previously, it was simply set up using POP3 and gmail. (no issues)
    Since connecting via the API – that’s when this began. (able to see all site emails sent).

    I’ve found a snippet, that I’ll explore with. But I’m unsure this will even work now as no emails are sent/received via the WP site (all externally).. stupid spam forced us to move to a different setup.

    <?php 
    // Function to change email address
    add_filter( 'wp_mail_from', 'wpb_sender_email' );
    function wpb_sender_email( $original_email_address ) {
        return 'contact@lapakibuk.com';
    }
     
    // Function to change sender name
    add_filter( 'wp_mail_from_name', 'wpb_sender_name' );
    function wpb_sender_name( $original_email_from ) {
        return 'Mr Sultrio';
    }
    #326030
    #325192
    Steve Taylor
    Participant

    Thanks I’ve worked out how to disable that email. I don’t think this solves my initial problem – in theory this email should be active so it’s sent when an admin turns the request down. However, I kind of agree with the view in https://buddypress.org/support/topic/membership-requests-email/ – that usually when an admin turns a request down, it will be because it’s deemed to be spam. And thus the email shouldn’t be sent. So I’m OK with deactivating the email completely I think.

    #324214
    oumz99
    Participant

    This has the potential to cause huge amount of spam on your site. I am not sure why would you want to disable this as this is an industry standard, also helps in confirming emails and communication.

    p.s : In a commercial theme I use WPLMS, it has this feature of custom registration forms where this checkbox to disable account activation and log the user in automatically.

    yesbutmaybeno
    Participant

    Hi!
    Trying to find the source of sudden weird lag on my large Buddypress website. I noticed this query running very frequently:

    # Time: 220408 21:41:46
    # User@Host: [removed] @ localhost []
    # Thread_id: 337208  Schema: [removed] QC_hit: No
    # Query_time: 1.645619  Lock_time: 0.000068  Rows_sent: 0  Rows_examined: 0
    # Rows_affected: 0  Bytes_sent: 77
    SET timestamp=1649454106;
    SELECT DISTINCT a.id  FROM wp_bp_activity a  WHERE  
    ( 
    	( 
    		( 
    			a.component = 'groups' 
    			AND 
    			a.item_id IN ( 0 )
    		)
     
    		AND 
    		a.hide_sitewide = 0
    	)
    
    )
     AND a.is_spam = 0 AND a.type NOT IN ('activity_comment', 'last_activity') ORDER BY a.date_recorded DESC, a.id DESC LIMIT 0, 16;

    Query_time: 1.645619

    It always results in nothing. So, where is it coming from and how can I stop it?
    Any idea what function is triggering this, I’d be able to even edit the core file just to have it check “if certain params are true, don’t even run this query”

    I think it’s killing my site’s performance

    tmuc
    Participant

    Hi, I installed BuddyPress on my site earlier today and now I can’t log in to my administrative account from the frontend of my site. When I try to login, I get sent to a page requesting an activation key. Unfortunately, I don’t have an activation key, nor was I ever sent one (I checked my emails and SPAM), so I can no longer sign in.

    I use the Paid Memberships Pro plugin to handle registration and membership levels on my site. Normally this works well. I also installed and activated bbPress and the PM Pro add-ons to integrate with BuddyPress and bbPress respectively.

    Any advice on how to fix this?

    #324054
    eysorindik
    Participant

    Maybe you can use other services like this: https://temporaremail.com . Generally such sites are directly perceived as spam. It is very helpful to find the right one.

    #324034
    webmasterfreya
    Participant

    Exactly my problem with not approving member(spammer) requests.
    No informational mail should be send to the requestor in case of disapproval!

    #324026
    carasse64
    Participant

    Hello

    I’m sending my email with post SMTP plugin.

    T tryed to use different smtp configurations :
    – i used my host smtp settings (Hostinger) = buddypress emails in spam folder of the users
    – i used sendinblue transactionnal stmp settings (i have a paid account) = buddypress emails in spam folder of the users.

    Does someone have a solution to solve this problem ?

    Thanks.

    Fabien

    #323782
    jetpackrabbit
    Participant

    Hi all,
    I have implemented member requests as per this guide after a large number of spammy registrations and spoof email addresses:

    Alternative Registration Workflows


    It seems to work well in that it doesn’t seem to generate the confirmation email address, but allows me to approve instead.
    The problem is that when I choose to delete the request, BuddyPress tries to send an informational email to the spoof email address to inform them their request has been denied:
    “Sorry, your request to join the site “My BuddyPress Site” has been declined”
    How can I prevent these unnecessary emails being generated?
    Thanks
    Kevin

    #323076
    chickendinners
    Participant

    why do all my posts get marked as spam, all I want is help from the community

    #322612
    wackao
    Participant

    Merry Christmas. A Lot of spam is being posted on the BP forums, kindly check or assign a moderator to clean it up.

    #322610
    wackao
    Participant

    The only other possibility is “human” spam which can not be caught by any software ( unless it s AI Powered ). What you can do is strip all HTML and links, so the spammers would lose all interest in your site.

    add_filter('bp_before_groups_edit_base_group_details_parse_args',function($args){
    		$args['description'] = wp_strip_all_tags($args['description']);
    		return $args;
    	});

    p.s : In our theme we already added the restriction on “Who can create groups”.

    #322608

    In reply to: Topic Menu

    wackao
    Participant

    Guys what is happening, can anyone mark spam here ?

    #322547
    Fusiondesigner
    Participant

    I’m getting the same error on my site. It doesn’t send activation emails. Using the code above worked, but now it’s sending a basic vanilla email with <wordpress@domain.com> as the subject and went to spam. It’s also not sending password reset emails at all.

    #322485
    TKServer
    Participant

    It isn’t that the emails are not being sent. It is that the emails are not making it to the destination, either blocked by ISP’s or somehow caught in spam or something.

    #321792
    TKServer
    Participant

    Once in awhile a bot or user will get into the site and send out a bunch of unwanted messages to lots of users. Is there a way to delete all mail, clean up notifications, and clean up recipients, related to a specific user? I’ve gone into the db and eliminated the messages themselves, and the notifications, but I can’t figure a way to clean the table wp_bp_messages_recipients. Without setting this table straight, users see that they have unread messages, but since I deleted the messages they can’t do anything at that point. So they always think they have unread messages.

    #321482
    Llewen
    Participant

    Note: I am submitting this again because for some reason my initial post was marked as spam. I’m assuming because I edited it after I submitted it.

    What is happening is when I try to make a change to the Components section in BuddyPress settings, I get the infamous “Sorry, you are not allowed to access this page.” when I try to save the settings and the settings do not take effect.

    I am able to successfully enable and disable settings on the Options tab.

    I have followed all the steps on several sites that talk about sorting this error, including reinstalling WordPress, deactivating all plugins, enabling debugging, using the default theme, regenerating permalinks, etc. etc.

    The account has administrator role, and bbp_keymaster capabilities, from my attempt to fix the problem by installing bbPress. Deleting the database and starting over is not an option, even though this is a new site, I already have content.

    What is odd is, when I get the error in WordPress, there are no corresponding PHP or Apache errors, and when I enable debugging, no errors are logged.

    The only explanation I can come up with is that I have enabled IPv6/dual stack support on my network and it appears that the connection IP from my account isn’t consistent. Sometimes it connects with the IPv4 address, sometimes with the IPv6 address. That’s the only odd thing I can see in the Apache logs.

    Site URL: https://displaced.zone

    • WordPress Version: 5.8.1
    • Directory install in root directory
    • Upgraded from WordPress 5.7.1
    • WordPress functions properly, other than this one problem
    • BuddyPress Version: 9.1.1
    • Not upgraded from a previous version
    • Other Plugins: BP Better Messages, Comments Like Dislike, Top Bar, WP Cerber Security, WP Mail SMTP
    • Theme: NS Minimal with minor css tweaks
    • Core files have not been modified in any way
    • No custom functions
    • bbPress not installed, although I did install it to see if it would fix the problem
    • No server error logs, which is weird
    • Self hosted on a home network. I’m not a novice at this, I have done this for years, including a previous WordPress website where I had BuddyPress installed in the same environment, and did not have this issue. The only thing that has changed is the IPv6 support.
    • Server OS: Debian GNU/Linux, Bullseye, typical LAMP stack
    • I have tried both the Legacy and Nouveau BuddyPress themes
    • I have made no changes to BuddyPress template files
    • The only other information that might have a bearing on this is that I am not running WordPress “The Debian Way”. I have copied all the files, including the symlinked php libraries, out of the Debian file structure and am running them out of a folder in my home directory. Apache is running as that group and user. But again, I have done this for an entire year, successfully, with another website. Running WordPress this way allows me to use the built in WordPress update system, which doesn’t function as expected if you run WordPress “The Debian Way”.
    silviach
    Participant

    @dggerhart did you solve your problem with spam users ? I have the same

    fractalier
    Participant

    Hi:

    It appears I have over 20,000 spam entries in my website’s MySQL database. Because of this, my website became inoperable. I was helped discover this by other technical folks…he said,

    “It looks like these entries are coming from the BuddyPress plugin. Each of these entries is a BuddyPress group. You should be able to delete the groups within BuddyPress. It also looks like removing user 2321 would go a long way towards preventing the spam that you are seeing.”

    Being rather new to the WordPress environment, and BuddyPress in particular, I cannot see how to do that. Can someone help? Thanks in advance.

    I am using WP 5.8.1 running the “Type” theme and BuddyPress 9.1.1 and the site is worldtalkfree.com. My email address is fractalier@aol.com.

    #321139
    Naomi
    Participant

    I’m running WordPress 5.8.1 running Astra theme.
    Buddypress 9.11

    This is an odd question, but I did something that I now can’t figure out for the life of me on my http://www.charlottemasoneducation.org website to require admin approval for registration. In other words, when someone tries to register, I have to approve them before they can engage with the site. I looked through all my plugins listed below and one of them is giving this functionality, but I can’t figure out which one and how. I want to replicate it on another site I’m working on but I’m not able to figure it out. Any help would be appreciated.

    I thought maybe BP Simple Private, but that only makes the site private, it doesn’t provide the approval process functionality.

    Akismet Anti-Spam
    bbp style pack
    bbPress
    Better Notifications for WP
    BP Simple Private
    BuddyPress
    Code Snippets
    Easy Digital Downloads
    Elementor
    Essential Addons for Elementor
    Events Manager
    Events Manager – OpenStreetMaps
    InfiniteWP – Client
    MC4WP: Mailchimp for WordPress
    Ultimate Addons for Gutenberg
    UpdraftPlus – Backup/Restore
    WooBuddy -> WooCommerce BuddyPress Integration
    WooCommerce
    Wordfence Security
    WP Mail SMTP
    WP RSS Aggregator
    WP-Optimize – Clean, Compress, Cache
    Yoast SEO

    #320998
    wackao
    Participant

    There is no backdoor, but yes there is a lot of spam which will enter. The groups are indexed by google and users use it to spam.
    You can add the Google captcha easily, I am unable to locate a plugin at the moment.
    You can check this link : https://buddypress.org/support/topic/simple-recaptcha-for-buddypress-register-page/

    p.s : Seems like a missed opportunity. I can upload on wp.org and share with you later this week. Let me know if you need it.

    #320992
    Tom
    Participant

    I have had thousands and thousands of bot signups every day with thousands of spam groups being made, I have a captcha on my signup page and I have custom required field, yet somehow thosuands of automated bots are signing up and spamming my website! Its out of control, Ive tried a few plugins and nothing seems to stop them!

    is there a back-door in buddypress? or a vulnerability that is being exploited?

    website: https://piratemc.com

Viewing 25 results - 51 through 75 (of 2,605 total)
Skip to toolbar