Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 38,226 through 38,250 (of 69,106 total)
  • Author
    Search Results
  • #116653
    kangenguru
    Member

    Sorry guys. I was just testing a Youtube url that i wanted to post on my buddypress site but does not work over there. The previous post I cannot edit or delete?

    #116651
    @mercime
    Participant

    Upload bp-custom.php to wp-content/plugins/ folder (NOT in buddypress folder) and it’s going to work.
    e.g.
    `<?php
    define( ‘BP_ACTIVATION_SLUG’, ‘activate’ );
    define( ‘BP_ACTIVITY_SLUG’, ‘activity’ );
    ?>`

    #116648
    Jam
    Member

    Are you sure you meant ” wp-content/plugins/” or wp-content/plugins/buddypress/?

    I already uploaded it to wp-content/plugins/buddypress with the define code

    (<?php

    define( ‘BP_ACTIVATION_SLUG’, ‘activate’ );
    define( ‘BP_ACTIVITY_SLUG’, ‘activity’ );

    etc) But with my changes…. Nothing’s changed.

    Any thoughts?

    #116647
    @mercime
    Participant
    #116646
    @mercime
    Participant

    Create bp-custom.php and upload it to wp-content/plugins/ folder and no, the file won’t be wiped out be future updates. Include bp-custom.php whenever you make a backup of server files.

    #116644
    Jam
    Member

    Quick question:

    So I create Bp-Custom (I am editing the slugs), but will this file be wiped out by future updates?

    #116643
    igeekout
    Member

    I dont think there is anyway around the this. I would suggest sending a message to all users saying the site will be down from xx:00 – xx:00.

    #116642
    ewebber
    Participant

    Do you know of a guide that includes locking down the database so that my users can’t write to it during the dns changes?

    #116640

    In reply to: Frisco Child Theme

    @mercime
    Participant

    “so that BuddyPress users have a solid (and free) option for a theme that looks different than the default theme. “

    Cool! Will you be submitting this to the WP Theme Repository?

    Cheers.

    @mercime
    Participant

    bbPress the plugin is still in beta, so I wouldn’t install it in live site. The Lead Developer of BuddyPress is the same Lead Dev for bbPress so you can be sure it will be made fully compatible in the near future.

    As to your first question, groups has around 4 tables so I suggest you leave them be even if you disable the groups. As always, before making drastic changes, backup DB and server files.

    #116631
    @mercime
    Participant

    It happened to a test site when I installed WP 3.2. Upgraded to WP 3.2.1 and BP 1.2.9 and all’s well. Do you have any error messages coming up on screen?

    Well I don’t know if this a bug or not, but I found (almost) the root of the problem and a relatively simple fix.

    I discovered that the recipients table had entries for threads that were not in the messages tables. I don’t know where these threads came from, but they were definitely there. So I changed the messaging code to generate the thread_id from the recipients table rather than the messages table.

    If this was some sort of database corruption, this was a reasonable fix for me. We don’t have enough messages for it to be a performance issue and if something else is inserting into that recipients table we shouldn’t conflict with it (assuming it is generating thread_ids in the same way).

    I really don’t know enough about BuddyPress to know if this is a core bug or some other issue related to our theme (I can’t find any other references to that table so it’s kinda wierd).

    bp-messages-classes.php:

    /* If we have no thread_id then this is the first message of a new thread. */
    if ( empty( $this->thread_id ) ) {
    $this->thread_id = (int)$wpdb->get_var( $wpdb->prepare( “SELECT MAX(thread_id) FROM {$bp->messages->table_name_recipients}” ) ) + 1;
    $new_thread = true;
    }

    cupid4
    Participant

    Thanks @modemlooper I know :) but will that uninstall and delete the groups tables from my database?

    I still have the question, will bbpress plugin cause any conflict with buddypress?

    #116621

    In reply to: File upload

    Tammie Lister
    Moderator

    Not sure how updated this is but… : https://buddypress.org/community/groups/buddypress-group-documents/ – more for groups though.

    https://wordpress.org/extend/plugins/buddypress-activity-plus/ may also be something useful to you.

    Whatever method you go it’s going to be a plugin route really to get that working for all you list.

    #116620

    In reply to: BuddyPress Members

    Tammie Lister
    Moderator

    Could you provide a link to your site please so we can see?

    You should be able to see all members under the members tab however could depend on your theme and / or plugins you have along with your install.

    Could you also please try using the BuddyPress default theme as that may be a good gauge – I understand if that isn’t possible?

    #116614

    In reply to: Profile rating system

    modemlooper
    Moderator

    There isn’t a profile rate plugin but this one could possibly be adapted

    https://wordpress.org/extend/plugins/buddypress-rate-forum-posts/screenshots/

    modemlooper
    Moderator

    in admin under BuddyPress components link you can disable groups component.

    candy2012
    Member

    This buddypress installation here has some buggs bugging around for quite some time – impossible to edit post (try it!), search does not work etc.

    Anyways, wanted to add a link to a plugin which might at least solve some of the issues (make sure you read the FAQs):

    https://buddypress.org/community/groups/buddypress-no-mentions

    #116606
    Jam
    Member

    Awesome, thank you! I will look into this.

    I may come back for a few questions

    #116605
    webeditor
    Member

    Hey Everyone,

    I wanted to give everyone an update as to the troubles I was experiencing and how they were resolved.

    First–the email problem seems to have been fixed with the SMTP plugin. Thanks again mercime!

    The Parse error and warning message we were receiving have been rectified by a server-side fix. We run a VPS with Lunarpages and come to find out a component called suPHP was not installed (suPHP is apparently what shared servers run, and seems to be pretty important in ensuring the basic functionality in WordPress and Buddypress actually works by allowing web users to write to the directories without changing the directory permissions to the dreaded, unsecure 777). By installing and setting up suPHP in addition to running PHP 5.2.11, the parse errors, warnings, and image uploading permission problems have been fixed, as well our WordPress-writable file/directory permissions are functioning perfectly at 755 and more sensitive file permissions are at 644.

    So overall, most of the fix was rooted in our VPS not running suPHP and needing to get it installed and configured correctly.

    I hope this helps someone else out there experiencing the same problems as we were!

    #116600
    Boone Gorges
    Keymaster

    @roman – As long as you are running BP 1.2.9, you shouldn’t experience the WPDB error described above.

    #116598
    Andrea Rennick
    Participant

    There’s built in hooks to change slugs and other things.

    BuddyPress Codex

    #116597
    roman
    Participant

    hi, did the same stupid thing by mistake. updated to wp 3.2.1.
    which is the best known way to just get back to the latest known as working version of wp?
    thanks!

    #116596
    Andrea Rennick
    Participant

    Would be the same as moving a WordPress site. because that’s what you have. ;) Your new host will probably even move it for you. Good ones do.

    #116582

    In reply to: Can’t create groups

    DJsix
    Participant

    Yes, I’ve enabled groups, and everything else works fine.

    The theme is the latest version, and I’m using Buddypress Template Pack with the theme.

    I’ve tried the default, and I have the same problem.

    Where are my PHP logs located, so I can check them?

    Thanks.

Viewing 25 results - 38,226 through 38,250 (of 69,106 total)
Skip to toolbar