Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'spam'

Viewing 25 results - 2,951 through 2,975 (of 3,350 total)
  • Author
    Search Results
  • #61677
    Andrea Rennick
    Participant

    I know on the MU side, you can ban registrations from specified email domains. (Site Admin -> Options)

    Can’t remember if this translates over to the BP side.

    #8494
    grosbouff
    Participant

    Hi, I think you should apply filters to the queries done by function get_users() :

    eg. with my plugin bp-real-names :

    when you search a user by “word”, the core query looks like :

    SELECT COUNT(DISTINCT u.ID) FROM wp_users u LEFT JOIN wp_usermeta um ON um.user_id = u.ID LEFT JOIN wp_bp_xprofile_data pd ON u.ID = pd.user_id WHERE u.spam = 0 AND u.deleted = 0 AND u.user_status = 0 AND pd.field_id = 1 AND pd.value LIKE ‘%%admin%%’ ORDER BY pd.value ASC

    but I need to be able to change this to

    SELECT COUNT(DISTINCT u.ID) FROM wp_users u LEFT JOIN wp_usermeta um ON um.user_id = u.ID LEFT JOIN wp_bp_xprofile_data pd ON u.ID = pd.user_id WHERE u.spam = 0 AND u.deleted = 0 AND u.user_status = 0 AND pd.field_id = 4 AND pd.value LIKE ‘%%Smith%%’ ORDER BY pd.value ASC

    This is not possible actually as I see…

    ticket : http://trac.buddypress.org/ticket/1699

    #61633
    peterverkooijen
    Participant

    There was a new blunt solution here. Apparently having a couple of required custom profile fields also cuts down spam.

    #61632
    ozpoker
    Participant

    I was just about to ask the same thing – never had much trouble before when using re-captcha but now I have upgraded we’re talking 20-30/day and increasing

    Which brings me to my next question – is it better to mark both user and blog as spammer or just delete them both?

    #8489
    amirk011
    Participant

    I’ve installed buddy press 1.1.3 and wpmu 2.8.6. I tried everything to stop spammers but all in vain. Is there any remedy to stop spammer. I tried wp-recaptcha code but it doesn’t appear on sign up page. I changed .htaccess file per this blog post http://wpmututorials.com/how-to/spam-blogs-and-buddypress/ but it didn’t work. I made changes per this blog post http://www.bp-tricks.com/tips_and_tricks/stopping-the-sploggers/ but all in vain. Could anyone please help.

    #61587
    bpisimone
    Participant

    Good thought about the reputation. YOu might be able to combine it with the achievments plugin! In any case let us know if you attempt anything like that.

    Lawrence
    Participant

    Hey guys,

    Just thought I’d share my own little script that I’ve embedded in to wp-config.php. True I should ideally place this in to a plugin, but this is just a quick example which others may find useful.

    I’ve noticed that pretty much all of the ‘sploggers’ originate from China. Whilst I’m sure that there are many innocent visitors over there, I felt that my own needs for Buddypress did not extend to that country, so using Maxminds GeoIp mod, you can simply ban the entire country.

    http://geolite.maxmind.com/download/geoip/api/php/

    Save geoip.inc and place it somewhere on your server. Then get the ip lookup table here:

    http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz and place it in your home/username/ directory (underneath public_html)

    You can probably set up a cron job to download the lookup table each month. As its updated monthly.

    All I did was place the following in wp-config.php after /* That’s all, stop editing! Happy blogging. */.

    ### GEOIP BAN CHINA
    include('path/to/geoip.inc');
    $gi = geoip_open("path/to/GeoIP.dat",GEOIP_STANDARD);

    $ip = isset($_SERVER['HTTP_X_FORWARDED_FOR']) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR'];
    $country = geoip_country_code_by_addr($gi, $ip);

    geoip_close($gi);

    if ($country == 'CN') {
    die('Service Unavailable');
    }
    ### END GEOIP

    So there you go – it simply reads in the visitors ip, then compares it to the lookup table – if the ip originates from China, then simply kill the connection. As I say, its very harsh, but personally my own project doesn’t cover that area, and so far I haven’t had any problems.

    What I’m going to potentially look at, is to see if I can flag users from China… so enable them to sign up and log in, but they must ‘earn’ reputation before they can start a blog. This will cut away most of the splogger issue as spammers don’t tend to hang around. :)

    #61481
    Alex
    Participant

    @mike: Even with just a small site. I was running it on first with a VPS hosted site and it got shut down by the provider. They say that the “huge” amount of mail coming from BP notifications are “spam” and a violation of their TOS since, they say, it got the IP blacklisted.

    I moved it to a dedicated server but I’m concerned that the IP address will be blacklisted if the system sends out hundreds of mail notifications in an hour. Problem is, I don’t know how much mail is too much. And if that should qualify as spamming. :) Should this be a concern?

    Was just wondering if there’s a way for the admin to set email notifications off by default. Or if not, if there’s a code we can edit to do that. :) Feedback would be great.

    #61450

    In reply to: Email Server

    gpo1
    Participant

    Your Bp email server might become an open relay server for spammers !

    #61382
    bbrian017
    Participant

    The only reason I noticed this is because the comment love keeps messing up and I have to go in and re enter the url under the admin profile.

    p.s linking my site in this forum has only brought me spam.

    It seems to be staying now…

    jivany
    Participant

    Raise a ticket. This is a usability/privacy issue. It should be blatantly obvious to the user who is replying to a private message that they are sending to more than the sender.

    thomasbp
    Participant

    Thx, I got it, but my users won’t, since they see a PM rather as an email and not as another kind of a discussion group (core age 15, so they have plenty of time to enter all the names :) ). It’s also in my opinion not intuitive.

    If there is no simple way to include a “no bcc” option – is there a way to limit the number of recipients to one user?

    Mike Pratt
    Participant

    My guess is you are not quite understanding the way private messaging was intended to work. As the name implies, it is a private message. When you send a “private” message to 40 friends, it’s not quite “private” anymore, by some definitions. The same occurs in email when one of your 40 recipients hits “reply all” assuming they were not bcc’d.

    As such, when you send a bp message to 40 people, you are, in a sense, establishing a 40 person thread. That’s the way it’s supposed to work (which is great for smaller numbers) In other words, expect 40 replies to the thread and all 40 will get 40 messages. Seems ripe for trouble when you send it to 40! (btw, I am impressed you were able to have the patience to pull off 40 as you had to remember and type 40 names or usernames since this is the only way to do it in BP at the moment.

    Second, if you send a message that, upon reply, many members will deem the response as “spam” consider not starting the thread. Just remember, BP messaging was not meant to be like email.

    thomasbp
    Participant

    Hi!

    My users are complaining about private messaging spam, which is actually – as far as I can see – a feature.

    When I send a message to let’s say 10 friends (who are not necesserily each others friends) and one of them answers, all the others get his answer. Even though they are not each others friends.

    That happens, because a discussion is automatically opened between all recipients. Some users had suddenly 40 messages or more.

    Is there a way to disable these auto discussions and to send the reply as default only to the sender? “Answer to sender” should be the default, and “answer all” an optiona feature. Like in all email clients.

    #60917
    Paul Wong-Gibbs
    Keymaster

    If you want to hire someone to implement a captcha on the compose message page, please post in this group -> https://buddypress.org/groups/buddypress-job-board

    #60897
    vtblogmu
    Participant

    So still nor esponse? How does one combat spam then?

    #60895
    abcde666
    Participant

    I guess Jeffs Privacy-Plugin would help:

    http://jeffsayre.com/2009/12/05/buddypress-privacy-component-released/

    Too bad this plugin will not make it into BP 1.2 core !

    #8341
    dotpk
    Participant

    I have around 15,000 members registered in my WPMU installation and I tried enabling Private Messaging in BuddyPress for a few days.

    Within around 2 weeks, 20,000+ messages were sent through Private Messaging – 99% of them being spam. Most of my members received messages through emails and got furious.

    I disabled Private Messaging around a month ago and have been visiting this forum frequently to see if there has been any solution.

    When the messaging was still enabled a month ago, I kept checking the messaging table in database and kept marking the users as spam who would send hundreds of messages in one go. I had successfully enabled recaptcha on the wordpress signup, but it was not useful as spammers were manually registering and sending lots of messages via scripts.

    I have got few questions:

    – Is there a way to at least disable the email notification globally for everyone, with an option of manually enabling for anyone who needs it?

    – Can someone help in adding recaptha on the compose message page? I am willing to pay for these services.

    – Is there is any other way someone can suggest to limit the spam via private messaging?

    Thanks in advance!

    dotpk

    #8321
    vtblogmu
    Participant

    I’m trying to make reCaptcha (http://recaptcha.net/plugins/wordpress/) appear in the register page of buddypress, currently it doesn’t appear on either /register or /wp-signup.php and Im stuck. It only appears in the comment section of the main blog.

    If it’s not possible to get reCaptcah workign is there an alternative way to prevent spam uers from signing up on wordpress mu?

    catinw12
    Participant

    Hi –

    I’m still in the dark ages, using bp1.03 and wpmu 2.8.4a. Be that as it may, can anyone shed any light on how to change the sender email address for the group news notifications?

    Currently, our group updates come from an email address that seems to be created by Buddypress, in the format of [domainname]@hostingcompanysendmail.hostingcompanydomain.com

    This causes many email inboxes to interpret the message as spam and discard it.

    I would like to use your normal outbound admin email address? Has anyone succeeded in modifying this sending email address?

    Thanks,

    brian

    #60705
    Andrea Rennick
    Participant

    If you really really wanted to, look in wp_signups. They don’t get cleaned out on delete (partly to prevent deleted spammers from signing up again with the same info).

    #60548
    bbrian017
    Participant

    Spammers are always an issues do follow or no follow lol.

    Being the owner of blogengage a pligg powered website I’m very aware of do follow spam issues it’s very bad.

    So do we have a solution to this?

    #60536
    Andy Peatling
    Keymaster

    Bare in mind you’ll encourage spammers by doing this.

    #60335

    In reply to: Removing Activiation

    r-a-y
    Keymaster

    Hey Brajesh,

    I just checked out the auto-activate plugin and I can confirm what Pierre said that it does send an activation email even though the user account is already activated.

    Also, I just checked out buddydev.com since you have the plugin running on your site and I’ve noticed a lot of spam registrations there!

    Perhaps you need to add some anti-spam prevention of some kind to your BP install.

    And also, as a courtesy, on the plugin release page, you should add a warning to enable some type of anti-spam solution on the user’s BP install (particularly in production environments).

    #60214

    In reply to: Removing Activiation

    r-a-y
    Keymaster

    Nice, Brajesh!

    Have you updated your auto-activate plugin lately?

    In your comments, you mention you were going to update the plugin in November, but the last update was in October.

    Also, has using this plugin affected spam registrations for you, Brajesh?

Viewing 25 results - 2,951 through 2,975 (of 3,350 total)
Skip to toolbar