Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 8,001 through 8,025 (of 22,685 total)
  • Author
    Search Results
  • #179434

    In reply to: Stop BuddyPress SPAM

    contrasupport
    Participant

    Most of wordpress plugins mentions above work like

    Attacker > HTTP server > PHP > WordPress > PLUGINS

    We all need to have something before WordPress that’s why I recommend

    NinjaFirewall (I do not have any relation with the plugin creator)

    https://wordpress.org/plugins/ninjafirewall/

    Block the attacker before the WordPress

    Attacker > HTTP server > PHP > NinjaFirewall > WordPress > PLUGINS

    As always in installing any plugins that possibly can block your admin access you have to read the Installation note and have access to the FTP.

    NinjaFirewall will work as another layer to protect your site.

    In addition if you have not done it:

    1. Change your “Admin” username to something dificult and at least 10 characters (+) but easily to remember (+ for you – for security) or you have to read a note (-) safely secured in your safe locker (+)
    2. Make your password at least 25 COMBINATION of characters (+) but easily to remember (+ for you – for security) or you have to read a note (-) safely secured in your safe locker (+)

    NinjaFirewall:

    • Web Application Firewall
    • Full standalone web application firewall
    • Multi-site support
    • Compatible with shared hosting accounts
    • Protects against RFI, LFI, XSS, code execution, SQL injections, brute
    • force scanners, shell scripts, backdoors and many other threats
    • Scans and/or sanitises GET / POST requests, HTTP / HTTPS traffic, cookies, server variables (HTTP_USER_AGENT, HTTP_REFERER, PHP_SELF, PATH_TRANSLATED, PATH_INFO)
    • Sanitises variables names and values
    • Advanced filtering options (ASCII control characters, NULL byte, PHP built
    • in wrappers, base64 decoder)
    • Blocks username enumeration scanning attempts through the author archives and the login page
    • Blocks/allows uploads, sanitises uploaded file names
    • Blocks suspicious bots and scanners
    • Hides PHP error and notice messages
    • Blocks direct access to PHP scripts located inside specific directories
    • Whitelist option for WordPress administrator(s), localhost and private IP address spaces
    • Configurable HTTP return code and message
    • Rules editor to enable/disable built-in security rules
    • Activity log and statistics
    • Debugging mode
    Doremdou
    Participant

    Hello @hnla thank you for your answer 🙂
    But I can see the button already in the Group page it is working well, I just want to be able to put the join/leave button for a specific group on a WordPress Post or a Page for example 🙂
    (That is why at first I wanted to put a simple button with a Link to the Group URL but it is not working, I should have changed my topic title but I can’t edit anything)
    That is why I thought it would be easier to create a shortcode for it 🙂

    #179402

    In reply to: Stop BuddyPress SPAM

    BuddyBoss
    Participant

    Two more methods that help. I recently had a crazy spam attack – probably 300 fake signups per day. I implemented these two methods and it dropped to near 0.

    1. Change the /register/ slug to something unique. An example would be /create-your-account/, or something of that nature. It just needs to be unique and also make sense in a URL for your user. Spammers targeting BuddyPress look for /register/ as the signup page. It’s all automated so you want to filter them out at the first step.

    2. Add this to your functions.php file in your theme or child theme.

    It presents a dummy field that humans don’t see. Spambots will fill it out, and if the field captures a value it will reject the signup.

    // BuddyPress Honeypot
    function add_honeypot() {
        echo '';
    }
    add_action('bp_after_signup_profile_fields','add_honeypot');
    function check_honeypot() {
        if (!empty($_POST['system55'])) {
            global $bp;
            wp_redirect(home_url());
            exit;
        }
    }
    add_filter('bp_core_validate_user_signup','check_honeypot');

    Credits for #2 go to:
    http://mattts.net/development-stuff/web-development-stuff/wordpress/buddypress/anti-spam-techniques/registration-honeypot/

    I edited it slightly to remove the required redirect. Add that back from his tutorial if you want to. It requires that you make an extra page to send the spammer to, and I personally think that’s not necessary. I actually want them to have no indication their signup failed.

    #179369
    danbp
    Participant

    Hi @transmission,

    this is not the solution, but an example for your inspiration.
    The below shows how the notification counter can be moved/implemented on the toolbar.

    /* moving the notification counter from right to left */
    remove_action( 'admin_bar_menu', 'bp_members_admin_bar_notifications_menu', 90 );
    function bpfr_notification_ontheleft() {
    	global $wp_admin_bar;
    	
    	if ( !is_user_logged_in() )
    	return false;
    	
    	$notifications = bp_core_get_notifications_for_user( bp_loggedin_user_id(), 'object' );
    	$count         = !empty( $notifications ) ? count( $notifications ) : 0;
    	$alert_class   = (int) $count > 0 ? 'pending-count alert' : 'count no-alert';
    	$menu_title    = '<span id="ab-pending-notifications" class="' . $alert_class . '">' . $count . '</span>';
    	
    	// Add the top-level Notifications button
    	$wp_admin_bar->add_menu( array(
     /*'parent'    => 'top-secondary',*/  // this is the original position
    	'id'        => 'bp-notifications',
    	'title'     => $menu_title,
    	'href'      => bp_loggedin_user_domain(),
    	) );
    	
    	if ( !empty( $notifications ) ) {
    		foreach ( (array) $notifications as $notification ) {
    			$wp_admin_bar->add_menu( array(
    			'parent' => 'bp-notifications',
    			'id'     => 'notification-' . $notification->id,
    			'title'  => $notification->content,
    			'href'   => $notification->href
    			) );
    		}
    	} else {
    		$wp_admin_bar->add_menu( array(
    		'parent' => 'bp-notifications',
    		'id'     => 'no-notifications',
    		'title'  => __( 'No new notifications', 'buddypress' ),
    		'href'   => bp_loggedin_user_domain()
    		) );
    	}
    	
    	return;
    }
    add_action( 'admin_bar_menu', 'bpfr_notification_ontheleft',30);
    /* other position # are 10, 20, 40, 50, 60, 70, 80, 90 */

    In your case, you also have to check this Codex page. And possibly do some research here.

    #179338
    Boone Gorges
    Keymaster

    Hi @zippykid – Thanks for the post and for the gist of the EXPLAIN.

    We’ve made some massive improvements for 2.0 in the activity query, but we haven’t really changed the way that this COUNT query works. In any case, forcing an index on a COUNT that doesn’t need sorting doesn’t really make much sense anyway, so we should probably remove it. If you get a chance, please open an enhancement ticket at https://buddypress.trac.wordpress.org with the suggestion. If not, I’ll try to get to it later.

    #179336
    shanebp
    Moderator

    The link to your gist:
    https://gist.github.com/vidluther/9370018

    You’ll probably get a better response by opening a ticket at:
    https://buddypress.trac.wordpress.org/

    #179328
    Vayu Robins
    Participant

    I’d be interested in finding out more about this too. 🙂 Maybe WordPress Network is necessary?

    #179324
    @mercime
    Participant
    #179317
    Nishant Kumar
    Participant

    @backpackersunion, you are welcome.

    As per the ticket status. It was already fixed in trunk.

    https://buddypress.trac.wordpress.org/changeset/7740

    Thanks community.

    #179278
    @mercime
    Participant

    @markbasisreclamenl if that page.php is really from the Twenty Eleven theme and not a theme which just copied Twenty Eleven’s theme files, then follow the instructions addressing different layouts at https://codex.buddypress.org/themes/bp-theme-compatibility-and-the-wordpress-default-themes/twenty-eleven-theme/

    #179277
    johnsag
    Participant

    I have tried to deavtivate all the plugins except Buddypress, but the problem still persists. I could really need some help with this, as I have put a lot of work into this site, and this issue is preventing from doing anything furher, and a deadline is looming.

    1. Which version of WordPress are you running?

    WordPress 3.8.1 running twentyelevenchild

    2. Did you install WordPress as a directory or subdomain install?

    directory

    3. If a directory install, is it in root or in a subdirectory?

    root

    4. Did you upgrade from a previous version of WordPress? If so, from which version?

    No, I think I grabbed the latest files.

    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.

    yes

    6. Which version of BP are you running?

    Version 1.9.2

    7. Did you upgraded from a previous version of BP? If so, from which version?

    I think it was a fresh install.

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?

    Right now, only Buddypress.

    9. Are you using the standard BuddyPress themes or customized themes?

    A customized twentyeleven.

    10. Have you modified the core files in any way?

    I have modified members-loop.php (to display slected fields) and functions.php (to exclude admin from being listed)

    11. Do you have any custom functions in bp-custom.php?
    Not any others

    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?

    I disabled bbPress, the problem persists.

    13. Please provide a list of any errors in your server’s log files.

    Not available, as far as I know.

    14. Which company provides your hosting?

    one.com

    15. Is your server running Windows, or if Linux; Apache, nginx or something else?

    Linux, Apache

    #179251
    Squirrel
    Participant

    The plugin author is this guy by the way: he wrote some plugins on wordpress.org including BuddyPress Groups Extras which is how I found him. Slava UA.

    #179245
    BackpackersUnion
    Participant

    @nishant_official I can confirm your fixed worked great!

    I cringed when modifying the core file outside of a child theme but needed the fix. Previously the delete link was redirecting me to the top of the page by adding “#” to the end of the page URL. Added the change you outlined in your ticket and it work flawlessly. Thanks for taking the time to look into and create a ticket!

    BuddyPress 1.9.2, WordPress with Multisite 3.8.1.

    #179199
    nlongtin
    Participant

    I am having the same problem. After I enter the group name and description and click submit the page goes to the next step but the form does not render.

    I have tried deactivating all plugins, using the twenty fourteen theme, and tried dozens of other fixes people have tried, nothing works. Editing groups works fine, only creating a new group does not work. Once my group is created and I can navigate to the groups list, choose the group I just made and administer it fine.

    Wordpress 3.8.1, bbPress 2.5.3, Rackspace virtual cloud hosting, dedicated server.

    Please help!

    #179198
    Ben Hansen
    Participant

    just curious what you are actually trying to schedule, group creation? i think everything else can be scheduled already with normal wordpress functionality.

    #179197
    Squirrel
    Participant

    You could try Justin Tadlocks plugin Members

    rossagrant
    Participant
    #179181
    Duke Taber
    Participant

    Ok I just read modernloopers list of questions so I want to make this as clear as possible. First this problem is not a plugin problem. I disabled and deleted all and it didn’t fix the problem. I also tried a different theme and it didn’t fix the problem so it is not a theme problem. TJ at Buddyboss tried valiantly to figure out the problem to no avail.

    Here are the questions that modernlooper wanted answered.

    Please try to supply answers to the following questions.

    1. Which version of WordPress are you running? 3.81

    2. Did you install WordPress as a directory or subdomain install? directory

    3. If a directory install, is it in root or in a subdirectory? root

    4. Did you upgrade from a previous version of WordPress? If so, from which version? every one for the last year

    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. Yes

    6. Which version of BP are you running? 1.92

    7. Did you upgraded from a previous version of BP? If so, from which version? Every one for the last year until 1.9 and then it broke. I just went back to my backup and waited. Upgraded to 1.92 and it is still broken. Went through all the normal troubleshooting processes until figuring out it was the notifications that is causing the error.

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
    Ads Manager WP/BB
    Akismet
    BBpress
    BB Force Profile
    BuddyPress Tiny group chat
    BuddyPress Links
    Easy Album
    Facebook Friends Inviter
    IFlyChat
    Invite Anyone
    Social Login
    Wanguard

    9. Are you using the standard BuddyPress themes or customized themes? BuddyBoss

    10. Have you modified the core files in any way? No

    11. Do you have any custom functions in bp-custom.php? No, or at least none I am aware of that was put in there personally

    12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? 2.5.3

    13. Please provide a list of any errors in your server’s log files.

    [Fri Feb 28 14:41:05 2014] [warn] [client xxx] mod_fcgid: stderr: PHP Fatal error: Call to undefined function bp_notifications_toolbar_menu() in /var/www/vhosts/xxx/httpdocs/wp-content/plugins/buddypress/bp-members/bp-members-adminbar.php on line 148, referer: xxx/wp-admin/options-general.php?page=bp-components

    14. Which company provides your hosting? Media Temple

    15. Is your server running Windows, or if Linux; Apache, nginx or something else? Linux and Apache

    #179169
    Squirrel
    Participant

    I saw this one a while back and it seemed to work well whwn I tested it last. It might need some tweaking regarding the css though as I remember. BuddyPress Portfolio

    But it would mean each user had their own gallery.
    A page can be created I think showing all pictures.

    #179168
    Squirrel
    Participant

    There is this plugin too for job board creation. WP Job Manager by Mike Jolley

    #179163

    In reply to: Make Content Private

    Squirrel
    Participant

    I developed a theme to do it. I’ve submitted it to the Depository but still waiting for response.

    #179161
    DennisBarkerCV
    Participant

    There is a WordPress plugin called Job Mamager written by scribu that can handle what you are looking for, or you could set up a group for each vacancy and let people join the group to express their interest and use extended profiles as a CV.

    i’m not a developer but am planning a site which matches people to jobs in a similar way using this plugin.

    #179147
    djsteveb
    Participant

    Maybe something like “bp-group blog” plugin and mixin one of the “front end uploader” type wordpress plugins… I played with this one on site and got the kind of functionality I think you are asking about.

    not sure if it was group blog, or maybe something else that auto-added new users to a multisite blog, I had another to copy over 300 users to the new photos blog.. and played with several fron end uploader plugins to find one that did most of what I was looking for…

    #179129

    In reply to: Make Content Private

    mrbirl
    Participant
    #179128

    In reply to: Make Content Private

    aces
    Participant

    It would help if you listed the plugins, and details about anything else you have tried such as code snippets.

    Did you try https://wordpress.org/plugins/private-bp-pages/ – if so what was the problem?

Viewing 25 results - 8,001 through 8,025 (of 22,685 total)
Skip to toolbar