Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'spam'

Viewing 25 results - 976 through 1,000 (of 2,656 total)
  • Author
    Search Results
  • #153309
    @mercime
    Participant

    @dasped First, glad you resolved the first issue pm your own ๐Ÿ™‚

    Second, by default you should as keymaster and even moderator, edit, close, stick, merge, trash or spam forum posts.
    – Which kind of forum are you encountering the problem in? Group or Sitewide Forums?
    – Did you follow the updated instructions for setting up Group/Sitewide Forums at https://codex.buddypress.org/user/setting-up-a-new-installation/installing-group-and-sitewide-forums/

    #153285
    dasped
    Participant

    I can confirm that this issue was SQL related, A fresh install on clean database resolved the matter.

    Just out of curiosity (I have posted on BBPress support) and on the off chance someone may have had the same/similar issue over this neck of the woods. Once a forum/group forum post is created, I’ as keymaster cannot, edit,close, stick, merge, trash or spam them? The page simply refreshes with no action taking place.

    Fingers crossed, someone, somewhere has had and indeed resolved the matter.

    #153223
    @mercime
    Participant

    how to modify the admin bar


    @ebizdude
    That’s too wide an area to cover. What specifically do you want to change in the admin bar?
    – If it’s WordPress-related, please post at https://wordpress.org/support/forum/how-to-and-troubleshooting
    – If it’s related to BuddyPress links to profile menus https://wordpress.org/extend/plugins/buddypress-custom-profile-menu/

    also when people registerting the activation email is not coming. how does one recticfy that

    You have to find out through some tests whether email is not being sent from your installation or whether the email just goes to user’s spam folder.

    #153031
    FlipFl0p
    Participant

    Thanks for the suggestions guys. I will give the Honeypot Trap plugin a try as I believe you are all correct and it’s spam.

    Think I’m going to go to BBpress forums only at first and then reintegrate Buddypress later as there’s a few too many complications with BP right now.

    #153028
    Roshan Roy
    Participant

    Yeah man,it’s probably spam..i had this problem then i activated a captcha plugin and i hoped for the best..it still didn’t work..so,i activated the honeypot trap.and that actually worked..just search for the buddypress captcha plugin

    #153020
    m.sunspirit
    Participant

    in your word press dashboard on the “users” page you can select ‘page options’ near the top right and then show 200 results per page to make it easier to go through the users. I had this problem with a site and I would just ‘select all’ and then go through and un-select users that I knew were real people. . . Spam Sucks. . . Good Luck!

    #153010
    Ben Hansen
    Participant

    it works fine for me but it doesn’t catch all spam i think it’s still learning how to tell whats spam or not when it comes to activity. it’s not perfect for comments either but probably catches about 99% or so. i’d say the number with activity spam is still probably under 50% at least as far as i can tell.

    #152946

    In reply to: Moderate Everything

    Justin
    Participant

    Would there be a way to make all activity spam by default? Would that have repercussions with akismet and blacklisting – if it could even be done simply enough? The ideal would be to send all activity to moderation by default, but this idea might do until a better solution can be found.

    omgbud
    Participant

    Hi,

    this is a code I use personally, but requires you to edit the bp-groups-actions.php, sorry i do not know how to write function.

    open buddypress/bp-groups/bp-groups-actions.php

    around line 150

    After this line:
    `do_action( ‘groups_group_create_complete’, $bp->groups->new_group_id );`

    Add this code:
    ` $to = “YOUREMAILADDRESS”;
    $name= bp_core_get_username(bp_loggedin_user_id());
    $groupname = bp_get_new_group_name(bp_get_new_group_id());
    $groupurl = bp_get_group_permalink( $bp->groups->current_group );
    $subject = “$name created new group $groupname”;
    $body = “$name created new group $groupname, visit $groupurl”;
    mail($to, $subject, $body);
    `

    That’s it, when a user hit the Finish create group button this code will send to the email stated address with the newly created group link. use at your own risk. Hope someone better can create a theme function or a plugin for this.

    This is needed to keep track of newly created groups to alert you if spammers are creating groups to spam.

    Hope it helps.

    #152701
    @mercime
    Participant

    @tuxkapono @tux-kapono Your account was blocked because: a) you posted a link to site which had numerous pop-ups when I checked it out and b) the link you posted had no direct relevance to the topics where you added the link. Those of course led to the conclusion that you were a spammer along with 7-8 other spammers I blocked around that time. We try to keep the forums as clean and free from spammers and spam as much as possible.

    Given that you came back to explain your side, I have unblocked “Tux Kapono” and you may resume using it to post in BP forums.

    #152397
    Mitesh Patel
    Participant

    I finally yielded, and messed up (so to speak) the function messages_screen_compose, adding conditional custom redirects with if else statements like…

    `
    if(wp_get_referer()){//to check origin of form submission, returns false for self submission
    bp_core_redirect(wp_get_referer()); //custom redirect, as this isn’t self submission
    } else {
    bp_core_redirect( bp_loggedin_user_domain() . $bp->messages->slug . ‘/view/’ . $thread_id . ‘/’ );// this was originally there, for submission from original php file
    }
    `

    As I think the issue is ‘resolved’, for time being, I should document the solution here.

    I intended to use buddypress private messaging as feedback form, with various feedback options like Question, Suggestion, Feedback etc. Thus, I created corresponding users (Question, Suggestion, Feedback etc.) who will receive the feedback. The idea is super-elegant from my purpose, as not only the submissions be automatically segregated and stored in database, but responding to the feedbacks would be as simple as responding to PM, all without the hassle of email, spam etc. An added benifit is, users can draw attention to various issues site wide by @mension, like :@question What about this?”

    So I tried to imitate the buddypress compose form, and I succeeded, except the redirect problem as described here.
    https://buddypress.org/support/topic/create-a-feedback-form-using-buddypress-messaging-functionality/

    What I was doing was, creating a duplicate form, but calling the original form action (fooling buddypress ๐Ÿ™‚ ). I did so, because, I don’t even know how to submit the copy-pasted form I created, and get the same thing done as the original compose.php was doing when it called itself (self submission).

    Anyways, this hack with unforgivable modifications in buddypress files works beautifully. I feel I’ll have to go through the plugin route finally though, as this is make-shift arrangement (but will work as long as I don’t update the buddypress plugin ๐Ÿ™‚ ).

    Thanks shane for your help.

    #152201
    resom
    Participant

    @mercime Yes, I even made a fake user so I could check it myself to make sure it was not going to spam. No email came

    #152196
    @mercime
    Participant

    @resom That’s right.

    Have those who have not “received” activation emails checked their spam folders? Unfortunately, that happens even without BP activated.

    #152167
    @mercime
    Participant

    It happens with certain webhosts. Determine whether it’s your installation which is not sending the email or whether your users are not receiving the email for some reason or another (possibly in spam folder?)

    Check out “BuddyPress isnโ€™t sending out emails” section in this page https://codex.buddypress.org/user/faq/

    #152120

    In reply to: Spam Users

    hkcharlie
    Participant

    Will an SSL for the login and reg page help ?

    #152114
    FlipFl0p
    Participant

    I think you are correct, there’s 530 users now.

    Some of them have bot in the email name and many are from the same domain.

    What’s interesting is that the default forum role is being assigned to these users but not others and these users have their name field filled out whereas others don’t.

    What is the point of signing up for an account but then not confirming it to then spam the forum?

    #152085
    Slava Abakumov
    Moderator

    BP Registration Options.

    I think those users are spam. What usernames do they have?

    #152060
    @mercime
    Participant

    `I have group creation disabled and users have to fill in a form to have us manually create their group.`
    The spammer might have hacked into the Site/Super Admin account. Backup database. Curious what’s the username used by the hacker? Check activity of said “member” and remove/delete anything created by said member then delete from users. Do you still have a username “admin”? Then create another username for your admin account and then demote the “admin” to suscriber in wp-admin or remove completely.
    https://codex.wordpress.org/FAQ_My_site_was_hacked

    #152034

    In reply to: Spam Users

    omgbud
    Participant

    Hey try use this plugin Stop Spammer Registrations Plugin, is good and is aggressive. It can check for too fast registration (bot filled up those field fast), HTTP_REFERER, disposable email address and much more…

    Most of them hunt for your register page slug /register/, try to noindex this page or change the slug.

    #151863
    danbpfr
    Participant

    here’s another plugin made by @imath which can help to wipe oup defect/unwanted/sleeping users.
    https://github.com/imath/bp-wake-up-sleepers
    Still in Beta but works good on 3.5.1/1.6.4

    #151837
    orbitor
    Participant

    @chouf1 this is very useful, although I cannot find the bulk options on the plugin…

    @slaffik stop spammer plugin looks very aggressive – just what I need. Also, very little to do in terms of maintaining user database – I like!

    @jconti thanks, I think the unconfirmed plugin will take me places I want to go, but I will continue to use wangguard and see if it catches anything that gets past stop spammer!

    #151782
    Jose Conti
    Participant

    Hi @orbitor

    How you said, WangGuard works great for protect your website and with the Wizard you can check many of the old ones. But every website is different and WangGuard knows many old Sploggers, but not all of them. WangGuard is onlyย  1 year an 11 month old (today).

    The first year blocked 750.000 sploggers, and in the in the next 11 months,ย  5.000.0000 sploggers. You can see that its growth is exponential.

    About your question if there is a tool for check the humanity of your old users… I’m sorry but only WangGuard. WangGuard is the only tool out there to check users

    Kind regards

    Slava Abakumov
    Moderator

    About spam registrations – I have already answered here: https://buddypress.org/support/topic/thousands-of-spam-subscribers/#post-151777

    #151778
    johnnymestizo
    Participant

    @chouf1 Where the heck did this come from ! Awesome ๐Ÿ™‚ Cheers

    #151777
    Slava Abakumov
    Moderator

    I use this: https://wordpress.org/extend/plugins/stop-spammer-registrations-plugin/
    And this: https://wordpress.org/extend/plugins/bp-registration-options/
    The first one catches spam. The second – those that the 1st one overlooked.
    From that time – no spam at all.

Viewing 25 results - 976 through 1,000 (of 2,656 total)
Skip to toolbar