Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'spam'

Viewing 25 results - 401 through 425 (of 2,676 total)
  • Author
    Search Results
  • #256798
    papuche
    Participant

    Hi,
    Half of my users registrations are reported by buddypress like a spam. But they’re human user. They send me a mail (with my contact form) to ask me to activate their account.
    So I need to manually valid their registration.

    I use BuddyPress Captcha by Hardeep Asrani. So I think it’s sufficient? no?

    Is there a solution to disable the spam buddypress feature?
    Thanks a lot!

    Fred.

    Jeremy Pry
    Participant

    Under certain circumstances, there is an infinite loop inside the bp_legacy_theme_new_activity_comment() function. Specifically, when all of the secondary_item_id fields are zero, the $parent_id will continually be set to zero. An infinite loop ensues and eventually the script will time out. This causes new activity items to not display until the page is refreshed, as mentioned here: https://buddypress.org/support/topic/activity-comments-post-blank-until-refresh/.

    This error happens when attempting to add a comment to a group post. I believe this is a similar problem as the one expressed here: https://buddypress.org/support/topic/activity-comments-post-blank-until-refresh/

    For information:

    • WordPress 4.5.3
    • BuddyPress 2.6.1.1
    • Single site install in web root
    • There are indeed other plugins activated on this site. The full list is below. This site is for a client, and I’m unsure of which plugins can be safely deactivated to test.
    • We’re using a customized theme, but I have tested with the TwentySixteen theme and found the same results.
    • The core BuddyPress files have not been modified to my knowledge.
    • The site is hosted on Page.ly, but I can reproduce the problems in a local VVV install
    • The live site is http://www.lifeofdad.com/

    I believe that this may be a problem inside BuddyPress itself, as the function with the infinite loop is part of BuddyPress. The Javascript that makes the Ajax request is part of the BuddyPress Wall plugin, but from what I can tell the problem is in the aforementioned bp_legacy_theme_new_activity_comment() function.

    My specific concern is this loop:

    
    	// Load the new activity item into the $activities_template global.
    	bp_has_activities( 'display_comments=stream&hide_spam=false&show_hidden=true&include=' . $comment_id );
    
    	// Swap the current comment with the activity item we just loaded.
    	if ( isset( $activities_template->activities[0] ) ) {
    		$activities_template->activity = new stdClass();
    		$activities_template->activity->id              = $activities_template->activities[0]->item_id;
    		$activities_template->activity->current_comment = $activities_template->activities[0];
    
    		// Because the whole tree has not been loaded, we manually
    		// determine depth.
    		$depth = 1;
    		$parent_id = (int) $activities_template->activities[0]->secondary_item_id;
    		while ( $parent_id !== (int) $activities_template->activities[0]->item_id ) {
    			$depth++;
    			$p_obj = new BP_Activity_Activity( $parent_id );
    			$parent_id = (int) $p_obj->secondary_item_id;
    		}
    		$activities_template->activity->current_comment->depth = $depth;
    	}
    

    I’ve run XDebug locally to inspect the items in the loop as it is running. If some of the raw variable data is required, I can provide that.

    I have tried making some changes to the code in this loop to prevent the infinite loop from occurring. While successful in that endeavor with a few tweaks, the result is that the comment sent back through the Ajax response is the wrong comment, and a page refresh is still needed.

    I considered filing a bug in Trac, but I wasn’t certain whether something else could possibly be interfering.

    
    +--------------------------------------+--------+-----------+---------+
    | name                                 | status | update    | version |
    +--------------------------------------+--------+-----------+---------+
    | akismet                              | active | none      | 3.1.11  |
    | all-in-one-seo-pack                  | active | available | 2.3.7   |
    | appbuddy                             | active | available | 2.0.7   |
    | appcamera                            | active | available | 2.0.0   |
    | appfbconnect                         | active | none      | 2.3.0   |
    | apppresser                           | active | none      | 2.5.0   |
    | apppush                              | active | available | 2.1.0   |
    | appshare                             | active | none      | 2.1.0   |
    | appswiper                            | active | available | 2.2.1   |
    | bp-profile-search                    | active | none      | 4.5.2   |
    | buddypress                           | active | none      | 2.6.1.1 |
    | buddypress-activity-plus             | active | none      | 1.6.4   |
    | bp-moderation                        | active | none      | 0.1.7   |
    | buddypress-nocaptcha-register-box    | active | none      | 1.1.3   |
    | buddypress-toolbar                   | active | none      | 1.6.0   |
    | buddypress-wall                      | active | none      | 0.9.4   |
    | buddypress-xprofile-image-field      | active | none      | 2.0.1   |
    | category-posts                       | active | none      | 4.6.1   |
    | contact-form-7                       | active | none      | 4.4.2   |
    | contact-form-7-to-database-extension | active | none      | 2.10.20 |
    | cubell-themes-functionality          | active | none      | 3.1     |
    | envato-wordpress-toolkit             | active | none      | 1.7.3   |
    | hashbuddy                            | active | none      | 1.5.2   |
    | login-with-ajax                      | active | none      | 3.1.6   |
    | mailchimp-for-wp                     | active | none      | 3.1.11  |
    | nav-menu-roles                       | active | none      | 1.8.2   |
    | nextend-facebook-connect             | active | none      | 1.5.9   |
    | buddypress-media                     | active | none      | 4.0.4   |
    | vine-embed                           | active | none      | 0.2     |
    | wds-lod-automatic-friends            | active | none      | 0.1.0   |
    | wds-lod-base                         | active | none      | 0.1.0   |
    | wds-lod-bp                           | active | none      | 0.1.0   |
    | wds-lod-post-types                   | active | none      | 0.1.0   |
    | wds-lod-widgets                      | active | none      | 0.1.0   |
    | wordpress-importer                   | active | none      | 0.6.1   |
    +--------------------------------------+--------+-----------+---------+
    
    #255458

    In reply to: spam users

    Gnostic_Thought
    Participant

    Cleantalk and wangguard are good plugin options too for preventing spam.

    #255389

    In reply to: spam users

    sharmavishal
    Participant

    i have mentioned the solution couple of times..use a plugin called wp spam shield …activate this plugin and then activate anyone can register option

    v!per
    Participant

    Hi can any body help me in spoting the error I accidently deleted the spam users directly from database wpusers table and it start happens

    invest0r7
    Participant

    I might be missing something, but I’m confused as to why Buddypress implements nofollow on URL text inputs but not textareas? It basically opens the door to spam. Shouldn’t all links in any field type be nofollow? How can this be implemented so people don’t spam their Bio and other textareas with links?

    #255136
    sharmavishal
    Participant

    unless u have blocked his IP somewhere or added his IP to a spam list this should not happen

    maganiza
    Participant

    Hi Guys

    I have been having this problem for a week now. I even posted the problem on this forum but never got a single response. I also checked the other posts but those old 2015 solutions are not working for me.

    My problem is I have a site with latest wordpress and buddypress, when new users register they are not receiving the activation emails. Nothing in the inbox and nothing in the spam/junk folders. I actually have to activate in my user admin panel/list manually. Within the users list I can see a reflection which shows that the activation mail has been sent.

    All hell broke loose last week but before that the site has been sending activation email with wordpress@mydomain.co.za without any issues. I have tried wp-mail-smtp, mail smtp but nothing works. I can send test mails successfully with all these plugins.

    I have tried the hosting company but they are saying the mail hosting server is fine. They are saying there is a problem with either wordpress or buddypress. The email log is below. Please help

    2016-06-20 18:57:46 1bF2WA-000MOp-3X <= noreply@mydomain.co.za H=chs9.ampledns.com (wingrow.co.za) [197.189.252.226]:48386 I=[197.189.252.226]:587 P=esmtpsa X=TLSv1:ECDHE-RSA-AES256-SHA:256 CV=no A=dovecot_login:noreply@mydomain.co.za S=739 id=1263c7ca6911ab6e37dff8bf0ff1ca41@mydomain.co.za T=”[WinGrow] New User Registration” from noreply@mydomain.co.za for admin@mydomain.co.za
    2016-06-20 18:57:46 1bF2WA-000MOp-3X => admin admin@mydomain.co.za F=noreply@mydomain.co.za R=virtual_user T=virtual_userdelivery S=856

    #254893
    bryanbatcher
    Participant

    Is it possible to rearrange the activity options “Favorite,” “Comment,” “Delete,” and “Spam,” as well as any third party plugin options added on?

    BP 2.5.3
    WP 4.5.2

    #254797

    In reply to: email activation.

    sharmavishal
    Participant

    Disable it and use wp spam shield plugin to stop spam

    sharmavishal
    Participant

    basic community registration and member interaction this would work fine wihtout any plugins..just activate the bp settings which you would want active

    splog protection- wp spam shield plugin works great for me

    #254444
    danbp
    Participant
    dainismichel
    Participant

    Hey, I’ve been running a couple BuddyPress sites for a good number of years now, and well, the setups are pretty involved.

    I’m curious, if there might not now be a few plugin combinations that create reasonably functional BuddyPress communities, out-the-box.

    So, basically: everything works.

    It’s not that important “how” everything works, but the setup creates a site that won’t be plagued by splogs or spam, obviously registration works properly, and there are usable community features that aren’t broken.

    Ideal answers would basically be lists of plugins & possibly themes.

    #254170
    sharmavishal
    Participant

    wp spam shield works great for my bp install..not a single spam user registered

    danbp
    Participant

    That is an old bbPress issue. When you edit a topic, i some case, the topic comes up twice(or more, depending how many edit you made) on the site activity.

    This bug will be corrected in bbP 2.6 (actual version is 2.5.9). See ticket & patch here.
    What you can do immediatly is to modify following file:

    
    wp-content/plugins/bbpress/includes/extend/buddypress/activity.php

    Replace code between line 277/279

    
    $existing = bp_activity_get_specific( array( 'activity_ids' => $activity_id, 'show_hidden' => true, 'spam' => 'all', ) );
    if ( empty( $existing['total'] ) || ( 1 !== (int) $existing['total'] ) )
    return null;

    by

    $existing = new BP_Activity_Activity( $activity_id );
    if ( empty( $existing->component ) ) {
    return null;
    }
    #253976
    sharmavishal
    Participant

    use wp spamshield plugin..this would stop the spam registrations on your website which in turn wont lead to spam groups

    #253951
    nnyorker
    Participant

    Hi there – every day I delete 10-20 spam groups that were created.
    Is there any way to stop this?
    Thanks in advance!
    Anna

    #253939
    Earl_D
    Participant

    I am running the lest version of Buddypress and WordPress on a VPS server NOT running multisite. Tiny framework is the theme I am using. However the first thing I did to trouble shoot was try to replicate problem without any plugin and using 2012 theme (which tiny frame is based on) and 2016 theme. The issues remained the same with but those thems and th social me theme.

    I will try to check the MYSQL question as I am familiar with that having done MYSQL database programming. However I have narrowed done the problem to something related to the extended profile fields component. Through trial and error and some research I surfaced the correlation which one other person seems to have referred as well. If extended profile fields are turned OFF the registration is completed and the activation email sent. If it is on the registration process is not completed. I tested this extensively turning on and off and it followed that pattern. I currently have the component turned off and users are able to register. When I turned on again I was unable to complete a registration.

    It may be unrelated but no registration spam protection plugins will work now either I have tried several with recaptcha and without and in every case the registration process short circuits.

    Thanks for any help in advance. I would like to get the extended field working again.
    EarlD

    #253734
    AngelaQ
    Participant

    WordPress version 4.5.2
    Buddypress version 2.5.3

    ColorMag Theme

    When I installed bp and turned extended profiles, if I go to the toolbar in the upper right and choose Profile-Edit it goes to something like this:

    /members/[username]/profile/edit/group/1/

    And it’s a 404 page.

    Also, if I click on any of the users in the backend including me the Admin, it says they’re marked as spam but yet the active/spam toggle is set to active not spam.

    In addition, the register page doesn’t work and just loops back to home page.

    Am I supposed to do some kind of setup other than checking the button the button that I want extended profiles in order to make this work? The documentation on this site for this just says it’s pending.

    I’ve turned it off so I can at least use regular profile management but would love to access the extended profiles capabilities.

    #253541
    subair.tc
    Participant

    hi @danbp
    Thanks for your reply,
    i have tried the with

    bp_activity_get_where_conditions

    but this filter will return the where conditions used like

    array(3) {
      ["filter_sql"]=>
      string(416) "a.user_id IN ( 451,378,213,431,429,414,415,456,452,473,460,458,283,471,383,468,387,454,441,6,384,475,427 ) AND a.component IN ( 'groups' ) AND a.type IN ( 'activity_update' ) AND a.item_id IN ( 1 )"
      ["spam_sql"]=>
      string(13) "a.is_spam = 0"
      ["excluded_types"]=>
      string(34) "a.type NOT IN ('activity_comment')"
    }

    it will not contain the ‘ORDER BY’ portion of the query, i hope we will get the total query with the

    bp_activity_total_activities_sql

    filter in ~L, 664, so when we get the entire query we can replace the ‘ORDER BY’ section using string replace, i have tried by using this but i can’t get the query inside the function, do you have any idea how to use this filter ?

    #253449
    danbp
    Participant

    Hi Julia,

    it’s a bbPress bug, patched a while ago, but still in. Maybe a day it will be repaired definetly.

    For the moment, you can repair yourself. Open activity.php in wp-content/plugins/bbpress/includes/extend/buddypress/

    Replace following code block at line 277/279:

    $existing = bp_activity_get_specific( array( 'activity_ids' => $activity_id, 'show_hidden' => true, 'spam' => 'all', ) );
    if ( empty( $existing['total'] ) || ( 1 !== (int) $existing['total'] ) )
    return null;

    by

    $existing = new BP_Activity_Activity( $activity_id );
    if ( empty( $existing->component ) ) {
    return null;
    }

    Save and reload to to your site by FTP and you’re done.

    #253308
    Night Hawk
    Participant

    Hi is any way we can limit the private message to friends only?

    I had my first spam message today!

    #253300
    BryanWalters
    Participant

    Hey Henry,

    I checked my spam box also, but nothing found. Anything else that we can do to fix it from our end?

    #253203
    andy60rm
    Participant

    After installing Buddypress plugin, visual editor does not works correctly.

    Wordpress 4.5.2
    BuddyPress latest version

    Plugins installed
    =================
    BAW Login/Logout menu 1.3.3.
    Contact Form 7 4.4.2
    Contact Form DB 2.10.9
    Cryout Serious Theme Settings 0.5.6
    Huge IT Slider 3.1.82
    Limit Login Attempts 1.7.1
    Link Library 5.9.12.18
    LinkedIn Auto Publish 1.3.2
    mathtex latex equation editor 1.1.5
    New User Approve 1.7.3
    Peter’s Login Redirect 2.9.0
    Recent Posts Widget With Thumbnails 4.9.2
    SI CAPTCHA Anti-Spam 2.7.7.7
    Simple Share Buttons Adder 6.1.5
    TablePress 1.7
    Testimonials Widget 3.3.0
    Tooltips 3.5.9
    Twitter Follow Button 1.0.2
    Ultimate Tables 1.6.3
    User Access Manager 1.2.6.7
    WP Content Copy Protection Premium (YOOPlugins) 1.8.32
    WP Statistics 10.1
    WP Support Plus Pro 7.0.1
    WP Twitter Feeds 1.4.8
    WP-Polls 2.73
    WP-Pro-Quiz 0.37
    WP-SpamShield 1.9.8

    #253179
    Henry Wright
    Moderator

    Whilst waiting for a response from your host, try checking your spam folder to be sure nothing is dropping in that.

Viewing 25 results - 401 through 425 (of 2,676 total)
Skip to toolbar