Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'spam'

Viewing 25 results - 1,151 through 1,175 (of 2,710 total)
  • Author
    Search Results
  • #144410
    tifire
    Participant

    Thanks for the response. I will do that. Just a quick question, after getting the Akismet API kay and installing Akismet, how do I know if Akismet works against activity spams? Is there a way for me to test that?

    #144403
    marcycapron
    Participant

    @megainfo @djpaul i can’t post updates to groups *or* my profile.

    this is what i get with debug on (mind you no errors in chrome dev tools)

    `WordPress database error: [Unknown column ‘a.is_spam’ in ‘where clause’]
    SELECT a.*, u.user_email, u.user_nicename, u.user_login, u.display_name FROM wp_bp_activity a LEFT JOIN wp_users u ON a.user_id = u.ID WHERE a.is_spam = 0 AND a.user_id IN ( 25 ) ORDER BY a.date_recorded DESC LIMIT 0, 20
    WordPress database error: [Unknown column ‘a.is_spam’ in ‘where clause’]
    SELECT count(a.id) FROM wp_bp_activity a USE INDEX (user_id) WHERE a.is_spam = 0 AND a.user_id IN ( 25 ) ORDER BY a.date_recorded DESC
    WordPress database error: [Unknown column ‘is_spam’ in ‘field list’]
    INSERT INTO wp_bp_activity ( user_id, component, type, action, content, primary_link, date_recorded, item_id, secondary_item_id, hide_sitewide, is_spam ) VALUES ( 25, ‘activity’, ‘activity_update’, ‘wec posted an update’, ‘ajax 2’, ‘http://tier1alumni.com/members/wec/’, ‘2012-11-02 00:53:15’, ”, ”, 0, 0 )
    -1
    `

    #144399

    In reply to: Spam registrations

    MickeyRoush
    Participant

    @ A Swede in Greece

    You could try this plugin:

    https://wordpress.org/extend/plugins/stop-spammer-registrations-plugin/
    But you’ll want the beta version as it fixes an issue with BuddyPress
    http://www.blogseye.com/beta-test-plugins/

    Also, you should look into installing ZBBlock.
    http://www.spambotsecurity.com/zbblock.php

    #144398

    In reply to: Spam registrations

    The spam comment by “panlong” is still here after 2 weeks and 5 days…This says a lot about BuddyPress I think. We have started up a new site with BP, still not ready, but I think we’ll have to close it because of all spam members and spam activity, if we can not get help how to stop it. It’s UNBELIEVABLE how much spam we get. Three persons had made 100 membership each as well!!!
    This Akismet plugin is for comments, but this is not so much needed as you can have comments with moderation.
    I really think spam protection should be included from the beginning in the BudyPress plugin!
    Another issue as well is that someone made a group without showing who created it. It doesn’t show up in the activity stream, even if I filter “created a group” either.

    Something else, the page forums doesn’t show up. It says:
    The forums component has not been set up yet.
    What do I need to do?

    #144323
    David Cavins
    Keymaster

    I’ve found that BP Humanity helps with spam robots but not human spammers.
    https://wordpress.org/extend/plugins/buddypress-humanity/

    For human spammers, you may need to approve each user.
    https://wordpress.org/extend/plugins/bp-registration-options/

    #144118
    Naturewalker
    Participant

    Found out that this was caused by “Stop Spammer Registrations Plugin”. It has an “Undefined variable: email” within its code.

    #144103
    Qoff
    Participant

    I think the solution will disable the e-mail verification, but probably this will get a lot of spam >.< Did you guys think a captcha is enough?

    #143855
    modemlooper
    Moderator

    People can create any plugin they want and even charge for plugins. However, its in bad taste to find any thread related and post links to a paid plugin. This is what is generally called spam.

    I want to point out that I tried your plugin and while it may do as advertised, the method of overriding a template file is bad. You need to learn how BuddyPress creates the user menu. It’s not the same as WP menus. Overriding a template file that places a WP menu into that space is not a good strategy.

    oceanwidedesigns
    Participant

    @chiangmai – It could be because it’s not compatible with BP, I’m not familiar with that plugin but not all WP plugins are compatible with the BP registration process.

    I’ve had success with Wanguard and asking a specific question. I’ve only had one spammer come through in the last month. I tried other CAPTCHA plugins before, and the CAPTCHA wouldn’t show in IE.

    #143761

    In reply to: My Spam Success Story

    Philo Hagen
    Participant

    It’s 24 hours later, 48 hours total, and I’ve had one spam comment show up and it was in the spam folder, not on the site. No registrations, groups or forum spam at all. So if you’re having spam issues I highly recommend this.

    #143752

    In reply to: Moderate Everything

    Paul Wong-Gibbs
    Keymaster

    Activity doesn’t have a “pending moderation/approval” concept like comments does. Right now, it’s either published or spam.

    #143606
    meg@info
    Participant

    Hi @bojan85,

    add this code to your functions.php file

    function bp_admin_is_my_profile( $my_profile ){
    global $bp;

    if( ( $bp->current_component == BP_MESSAGES_SLUG )
    && current_user_can(‘manage_options’) ) return true;
    else return $my_profile;
    }
    add_filter(‘bp_is_my_profile’, ‘bp_admin_is_my_profile’, 1);

    but i think is not good idea to read the messages of members :), try to use anti spam plugins.

    #143408

    In reply to: Spam registrations

    Asynaptic
    Participant

    lol how ironic that a spammer shows up on a spam thread 1 year old

    can the mods please remove the above french spammer and ban the user panlong

    #143009
    Dj Kad
    Participant

    In my case i’ve found that mails were sent but classified as spam.
    Unfortunatelly some mail servers are blacklisted by some ISP for spamming reasons.
    I’m looking for solve this problem because people that want to register in my site are unable to receive properly the activation code sent by email.
    For now i change the output message shown in the registration process, alerting people to check into the spam folder, but hope to solve it in a better way

    Stephanie Leary
    Participant

    I added it in a comment on https://buddypress.trac.wordpress.org/ticket/4469, but I can do a separate one for the activity button if you like.

    r-a-y
    Keymaster

    Stephanie, can you post an enhancement ticket about this on Trac?
    https://trac.buddypress.org/newticket

    Login with the same credentials you use on this site.

    Stephanie Leary
    Participant

    My spammer problem is so bad this week that I sat down and figured out how to do this. Here’s the mini plugin I wrote. It restores the “Mark as Spammer” link in the admin bar and adds a “Spammer” button to the activity stream: https://gist.github.com/3815688

    bojan85
    Participant

    A follow up to my first question is what would be the best way to avoid scrapers, spam problems when showing users email on their profile?

    #142810
    Stephanie Leary
    Participant

    YES PLEASE. I’ve just marked about thirty spammers, and I’m not done yet. It takes longer now that the link in the admin bar doesn’t immediately mark people as spammers, but takes me to the profile where I have to traverse the whole page to reach the checkbox and then submit the form.

    #142666

    In reply to: Buddha.fm

    buddhatunes
    Participant

    Signup and login errors fixed.

    No idea what possible harmful content there could be. I just ran a Vaultpress security scan which looks for dangerous files and codes and everything came back clean. I also run 2 anti-spam plugins – Akismet and Anti-Splog from WPMU. In addition, I personally scan members activity posts to see if something slips through and I don’t see anything to be concerned about. The only content is the radio channel scripts and 2 autoblog feeds from Elephant Journal and Huffington Post. There is Google Analytics code but that is pretty standard.

    If you could run the Mcafee scan again and give me something more specific, I would appreciate it but I really don’t believe there is any harmful content on this site. I make every effort to prevent it.

    #142560
    Hugo Ashmore
    Participant

    marked resolved is good, closing not necessary unless we get spam or off topic comments.

    modemlooper
    Moderator
    #142202

    In reply to: Proposal

    @mercime
    Participant

    Thanks shawn, not a spammer but someone making a request for a game ala Facebook. I think something got lost in translation.

    #142200

    In reply to: Proposal

    9087877
    Inactive

    @mercime @hnla Spammer Alert!

    Hugo Ashmore
    Participant

    @umagokhale

    CAn you not spam the forum with multiple posts to the same page on your site. It is noted that:

    – The content is not available unless you either join your site at a price or share the link to the page on ones social networks

    – The content is not yours but taken from elsewhere but without due attribution (please feel free to correct that if not true)

    I’m removing the posts as they appear to simply be an attempt at SEO gaming using this support forum.

    If you have a problem with that decision please feel free to contact one of the core developers.

Viewing 25 results - 1,151 through 1,175 (of 2,710 total)
Skip to toolbar