Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 24,826 through 24,850 (of 68,949 total)
  • Author
    Search Results
  • #147643
    Stefano Colarelli
    Participant

    I have the same problem: with buddypress & nginx, a 404 error occurs in groups/create/step/group-avatar/

    #147637
    Jchamp311
    Participant

    I deleted the plugins one by one. After deleted the buddypress plugins I could log into wordpress.

    I have just re-installed the latest version of buddypress as I was running 1.6.1 so now I am running 1.6.2

    I logged out and could log back in? Should I keep doing this till I find the faulty plugin?

    What else could it be?

    #147633
    danbpfr
    Participant

    Hi,

    not exactly a response but see this awsome tutorial for bbPress 2.2 and BP 1.6.2 setup.

    http://labzip.com/the-definitive-guide-to-buddypress-bbpress-configuration/

    #147632
    danbpfr
    Participant

    @imath provided another solution for single or multisite here 2 days ago after the same question on bp-fr.net

    https://gist.github.com/4310524

    #147631
    danbpfr
    Participant

    Hi,

    don’t try to prevent spammers. They already know how WP is working. 😀

    So you have many unconfirmed subscriber anyway. In such case, you could resend the activation email or delete the unconfirmed account. A small plugin do this very easely:

    https://wordpress.org/extend/plugins/unconfirmed/

    I use it regularly on my 1.6.2 network without problems. 😉

    #147630
    danbpfr
    Participant

    Hi,

    you haven’t to rename it ! bbPress is part of buddypress as the integrated group-forum software and as is, use the BP theme or child theme.

    bbPress themes are here: wp-content/plugins/buddypress/bp-forums/bbpress/bb-templates/kakumei

    If you want to use bbPress separatly as standalone forum, you have to activate the bbPress plugin. The forum activation lets you choose for such an install. (group-forum and/or separate forum) and install the plugin automatically.

    The buddypress theme (bp-default) sits in wp-content/plugins/buddypress/bp-themes/bp-default

    WP themes are in wp-content/themes/

    If you use any other theme, it must be placed in the same directory like this:

    wp-content/themes/your-theme

    or

    wp-content/themes/your-child-theme

     

     

     

    #147628

    @Paul is there any general rule of thumb for minimum server configuration size?

    @all here is some info about my experience for others that would like to know more about size issues in advance:

    I’m using the smallest VPS on http://www.kimsufi.com/fr/vks/index.xml (512MB) with 64bit Debian. With hindsight I should probably have chosen a 32bit install because that is said to consume less memory but still it is enough for one WordPress Multi-site and some of the bigger plugins like Jetpack with not too many sites and average traffic on the network. Installed Nginx/PHP5-FPM instead of Apache and for caching I added APC and WP Super Cache (in PHP mode) which did help a lot in getting the max out of the little machine. Pretty high speeds I must say, but loading BuddyPress on top of that and the thing started squeaking.

    I have removed BuddyPress and cleared the completely fragmented opcode cache (had to restart PHP service because it refused to be cleared through the manager) and all is well again.

    Maybe it would be possible to run a single site WP installation with BuddyPress on such a small server… or even multi-site but without any other memory-hungry plugins… or maybe some more tweaking of the APC settings (cache size and ttl) might make it pass… but I’m not going to try that on a live install 😉

    #147625

    In reply to: Locked out of site

    Jchamp311
    Participant

    Hi There

    I increased the memory and everything was running fine. I also upgraded to wp 3.5 I unplugged the plugins one by one logged out most of the times and everything was running fine. a day later I tried to log back into the site from another device and it just redirects back to the landing page.

    I noticed on my laptop I was till logged in and could navigate around the admin area and work on the site for a while but then it said my time was up and it logged me out to which I could not be logged back in. Although I am not getting the error 500 message on the screen anymore I just cannot log into the admin area?

    I am running alot of plugins with quite a few buddypress plugins could this be killing the site?

    I am running a plugin called ultimate coming soon page. Could this plugin be conflicting with the login to the admin area?

    I have been having this issue for about 5 weeks now so its getting tiring 🙁

    #147623
    Paul Wong-Gibbs
    Keymaster

    If you need help, we need to see where and how you’ve put the code. Please tell us where you’ve put the bp-custom.php file, and if you can, share a copy of the contents of that file on pastebin.com

    #147622
    Paul Wong-Gibbs
    Keymaster

    > once they find out that they have to activate their accounts etc then they just don’t bother any more

    Unfortunately, time has shown this not to be true; it certainly lowers the amount of spam accounts, which is why activation is on by default. Spammers are either automated or just won’t bother to read any notices you show them.

    Paul Wong-Gibbs
    Keymaster

    I thought we fixed this in a previous release, but maybe not fully. Please submit a bug report on https://buddypress.trac.wordpress.org, and you can use your name/password from this site. Thanks

    #147620
    Paul Wong-Gibbs
    Keymaster
    #147619
    Paul Wong-Gibbs
    Keymaster

    I’ve happened to done some work on this for BuddyPress 1.7. See the commits and discussion on https://buddypress.trac.wordpress.org/ticket/4661

    You’ll have to wait for 1.7 for this to work. I can’t guarantee that making those changes on a 1.6 install will work or be safe: YMMV.

    #147618
    Paul Wong-Gibbs
    Keymaster

    This is very much a server configuration question, and there’s probably not many people on this forum that know enough to offer meaningful advice (I certainly don’t). If you’re on a Linode 512, there just mightn’t be enough power on your server, especially if you are running other services, too (e.g. MySQL).

    #147617
    manohark
    Participant

    Hi Everyone,

    Here is the solution on half part of the saving custom value in the user meta table:

    /* Add sign-up field to BuddyPress sign-up array */

    function bp_custom_user_signup_field( $usermeta ) {
    $usermeta[‘expertise’] = $_POST[‘expertise’];
    return $usermeta;
    }

    add_filter( ‘bp_signup_usermeta’, ‘bp_custom_user_signup_field’ );

    /* Add field_name from sign-up to usermeta on activation */
    function setMeta($user_id, $password, $meta)
    {
    global $wpdb;
    $signup_tbl = $wpdb->prefix.”signups”;
    $users_tbl = $wpdb->prefix.”users”;

    //Query to get the custom field store in the signup table here I have set it to expertise
    $metadata = $wpdb->get_var(“SELECT meta FROM “.$signup_tbl.” WHERE user_login=(SELECT user_login FROM $users_tbl WHERE ID=”.$user_id.”)”);

    $user_exprts = unserialize($metadata);
    update_usermeta( $user_id, ‘expertise’, $user_exprts[‘expertise’] );
    }
    add_action( ‘wpmu_activate_user’, ‘setMeta’, 10, 3);

    #147612
    macgamer
    Participant

    No it’s a linode system. However, I did follow the steps outlined here to reduce the Mysql cache, which seems to have helped immensely.

    #147611
    davewright
    Participant

    okay – so, here’s an example of the kind of code i’m using. hopefully this can help people in the future!

    http://pastebin.com/rR7qgXKy

    keywords people might use to find this post: buddypress extended profile fields, buddypress members loop, buddypress members-loop.php, bp_member_profile_data( ‘field=the field name’ );, bp_get_member_profile_data.

    modemlooper
    Moderator
    #147608
    modemlooper
    Moderator
    #147605
    @mercime
    Participant

    @prabhat1205 do stop posting in year-old topics. Closing this.

    #147604
    @mercime
    Participant

    @prabhat1205 please do not post in year-old topics. Closing this.

    #147603
    @mercime
    Participant

    What exactly do you mean “get a page in my menu”? Do you mean links in your menu instead? If you mean the latter, then check out https://wordpress.org/extend/plugins/buddypress-custom-profile-menu/

    #147602
    prabhat1205
    Participant

    Hi Tina,
    Prabhat here again, Would you like to have some help from me?
    I’m a professional WordPress developer & BuddyPress is my personal favorite. 
    regards,
    Prabhat Bhati

    #147601
    prabhat1205
    Participant

    Hi Tina,

    Would you like to have some help from me?

    I’m a professional WordPress developer & BuddyPress is my personal favorite. 🙂

    regards,

    Prabhat Bhati

    #147600
    @mercime
    Participant

    Maybe I’m misunderstanding what WPMS with BP gives me so figured I’d ask here.

    Create a Network, make sure that user and blog creation is enabled in network options and test that you can indeed create subsites. When all is in working order with your WPMS install, you can then install and activate BuddyPress.

    One other thing that has been perplexing me is trying to find information showing how a user could either set up their blog when registering or, be able to set up their blog later on if they have already become a registered user.

    If you allow user account and blog creation as I mentioned above, then the default registration will show fields for blog(subsite) creation. If you want your users to be able to create a blog only after registration, then you remove the blog creation test/fields in the register.php file. The Create a Blog link will show up in the Blogs Directory page for logged in users.

Viewing 25 results - 24,826 through 24,850 (of 68,949 total)
Skip to toolbar