Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 68,001 through 68,025 (of 69,060 total)
  • Author
    Search Results
  • #36981
    Andy Peatling
    Keymaster

    Did you wipe your database? The first 20 lines of your logs should be enough. Make sure you wipe anything sensitive.

    #36979

    In reply to: How to fix database

    Geordee
    Participant

    I had problems before. My earlier post was on one such problem https://buddypress.org/forums/topic.php?id=1019, which I worked around by fixing the db.

    My concern is that there could be many more such db issues (which I did not expect when I rolled out Buddypress), and these need to be fixed. I should not wait until the users come back and tell me they’ve got problems.

    #36976
    jfcarter
    Participant

    I’ve gotten the php log files (still waiting on apache), but don’t know what to look for specifically. Any help would be appreciated.

    #36974

    In reply to: How to fix database

    Geordee
    Participant

    That’s for the blogs. I face with problems such as Buddypress says there are notifications or messages for a user, and when I click on links such as Notifications or My Account > Messages > Inbox there is nothing out there. Then I need to go to PHPMyAdmin, find out which entry is causing the problem and delete it. This does not happen with every users. Just some users, and fixing it on a case-to-case basis is tough. There should be some way to figure out and entry in this table means an entry in another table, which will then ensure consistency across tables.

    #36973

    In reply to: How to fix database

    Trent Adams
    Participant

    If you visit the main WPMU blog dashboard as site-admin, it will run the upgrade check on your buddypress plugins. It should update them that way (at least it is supposed to).

    Trent

    #36971
    Trent Adams
    Participant

    Each function has to have a different name or else php will break plugin into errors. Every function on your install has to have a unique name, so I was just saying each little function has has the button created needs a unique names, yes. You can put as many as you want in there as long as they have different function names.

    ‘add_forum_link’

    ‘add_about_link’

    ‘add_download_link’

    ‘add_buddypresslove_link’

    ‘add_donate_link’

    etc

    Trent

    #36969
    jfcarter
    Participant

    @Trent, there is no error on the screen–it is totally blank.

    This is the first anyone has asked for Apache logs (which I’ve requested from my webhost).

    I only posted my question early this morning; when I said the response wasn’t satisfactory, I was referring to the other post which was never answered (and which may have helped me).

    P.S. I had buddypress working at first, but deleted the blog by mistake. So I removed all the files from my server and reinstalled them and now they aren’t working (but WordPress MU is working fine). Does this help?

    #36967

    In reply to: BuddyPress Beta 2

    Andy Peatling
    Keymaster

    There are no feature enhancements other than you can now edit a group avatar.

    There have been over 140 bugs fixed in this version, you can see all the bugs fixed by clicking the link below. Every bug with the date back to Dec 15th has been fixed since beta 1.

    https://trac.buddypress.org/report/9?asc=0&sort=created&USER=anonymous

    You should find the second beta has far less bugs.

    @cikguazleen You can change it back to news with the following code:

    function blog_to_news() {
    return 'news';
    }
    add_filter( 'bp_home_blog_slug', 'blog_to_news' );

    Add that to a new file and drop it into mu-plugins.

    #36959
    Trent Adams
    Participant

    It might be due to the language pack that you have for bbPress itself. Maybe do a check over at https://bbpress.org/forums/ to see if you can find something out for the Thai language for bbPress as buddypress and WPMU won’t affect if bbPress (forum backend) has the language pack or not.

    Trent

    #36958
    Trent Adams
    Participant

    In fact, it would be nice to “widgetize” profile pages so you can move things around like facebook anyway. I created a ticket:

    https://trac.buddypress.org/ticket/421

    Trent

    #36957
    Trent Adams
    Participant

    The order of what is displayed is done through the following if I am not missing something.

    /buddypress-theme/member-themes/buddypress-member/profile/index.php

    Just move the following”

    <?php if ( function_exists('bp_wire_get_post_list') ) : ?>
    <?php bp_wire_get_post_list( bp_current_user_id(), bp_word_or_name( __( "My Wire", 'buddypress' ), __( "%s's Wire", 'buddypress' ), true, false ), bp_word_or_name( __( "No one has posted to your wire yet.", 'buddypress' ), __( "No one has posted to %s's wire yet.", 'buddypress' ), true, false), bp_profile_wire_can_post() ) ?>
    <?php endif; ?>

    Put it closer to the top, maybe under:

    <?php else : ?>
    <?php bp_core_get_wp_profile() ?>
    <?php endif; ?>

    Trent

    #36956

    In reply to: What Host Do You Use?

    Trent Adams
    Participant

    I know people that have buddypress running on almost every host. It might be easier to come up with a list that is doesn’t work ;) All kidding aside, I have seen buddypress working fine on Media Temple, Futurehosting.com, Slicehost, any dedicated server, all VPS servers, etc.

    Trent

    #36955
    Trent Adams
    Participant

    @jfcarter Andy has told you that you need to provide the error that you are getting. Check your apache error logs and tell us what the error you have. It could be many different things and is not a widespread issue, so we need to know the error. You haven’t had a satisfactory response yet because you haven’t given any information to provide such a response.

    Trent

    #36953
    jfcarter
    Participant

    I’ve checked with my service provider to see what they can tell me. As I mentioned before, others are experiencing this and there hasn’t been a satisfactory response yet.

    I have checked all my permissions, and my WPMU install is fine. It’s just the buddypress that isn’t working properly.

    #36952
    Andy Peatling
    Keymaster

    If you can’t check your logs or turn on error reporting then fixing this will be like finding a needle in a haystack.

    #36949
    Trent Adams
    Participant

    Yeah, that is what I mean. If adding things like “embed” or “object” code scares you to death, you can always include something like Anarchy Media Player where you can include the javascript in the buddypress theme header and then it will parse the page for the plugin quickcode and display the media that way. That is a way some are already doing it with things like bbPress where the media plugin doesn’t exist yet.

    Andy put a filter on the tags used in wire. It allows common HTML now, but with a plugin can also be used to change the allowed tags to anything you want. I am going to do this on an extremely private install, but thinking about Anarchy as well. Just haven’t had time.

    Trent

    #36948
    Wardee
    Participant

    @dug — Try manually creating these pages in the main blog: “Groups” and “Register” and “Members” and “Blogs”. Just title them and publish. No content. See if that helps.

    #36947
    jfcarter
    Participant

    Apparently this is happening to others, but no one has resolved it: https://buddypress.org/forums/topic.php?id=404

    #36946
    jfcarter
    Participant

    I did check the mu-plugins folder (it’s at 755) and it’s in /wp-content.

    #36945
    Wardee
    Participant

    Did you check the permissions of the actual mu-plugins folder? Is the /mu-plugins folder in /wp-content?

    #36944
    Wardee
    Participant

    Have you read this:

    About

    Those are the features in this version. No new features being added, they’re just getting it stable.

    #36938

    In reply to: BuddyPress Beta 2

    massao
    Participant

    WPMU 2.7 and BuddyPress 1.0b2 installed without problems on my blog, for Portuguese-Brazilian accent in the old topics were lost, but the forum is much faster now.

    #36937

    In reply to: BuddyPress Beta 2

    gpo1
    Participant

    What are the improvements made in beta2?

    #36932
    jfcarter
    Participant

    When I type my domain, nothing comes up as long as the mu-plugins directory is there. Once I delete it, I can see the WordPress blog (but then I don’t have the buddypress stuff and themes). I don’t know how to check the logs or how to turn on error reporting in Php

    #36930
    Andy Peatling
    Keymaster

    Please check your logs, there is no such thing as a blank screen. You can also turn on error reporting in PHP. Once you know what’s wrong, it’s usually simple to diagnose.

Viewing 25 results - 68,001 through 68,025 (of 69,060 total)
Skip to toolbar