Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 65,576 through 65,600 (of 69,039 total)
  • Author
    Search Results
  • #44443
    Kunal17
    Participant

    Ok, I did find an error_log file in my base domain’s directory. I am trying to parse through that but its been tracking for weeks and I have 5 running addon domains so a lot of info. I will try to find anything relavent to the buddypress domain and post it here.

    #44436
    arghagain
    Participant

    Removing fix, but don’t u need these lines at all? I had attempted to integrate bbPress before, but it wasn’t working, so I remove bbPress altogether. Is this why this is a problem? How to fix?

    #44430
    wickedbob
    Participant

    Cool. I thought I wasn’t going mad.

    I’ll stop bothering you Andy so you can make more cool stuff. :P

    Jeff, I tried installing Nicola’s plugins on a clean BP installation but some of them seem to break my plugins page and then make the database dirty, so I’m unable to reinstall them again without plugins functionality breaking again.

    I’m gonna wait until his work is a little bit more stable.

    Jeff Sayre
    Participant

    As the first step in helping you solve this issue, please go back and read the section entitled “Upgrading the Theme files” in the first post of this thread and verify that you have taken the proper steps.

    #44429
    Jeff Sayre
    Participant

    WillPCG-

    Okay a few additional questions:

    1. Are you logging into WPMU’s backend as the site administrator, and not just as a user with administrator privileges?
    2. You’ve mentioned 404 erros in your other thread. Are there any errors in your log files? If so, what are they?
    3. Did you go to “BuddyPress > General Settings”, re-select the member theme, and then hit save? Do this even if the theme is already selected.

    #44426
    TheEasyButton
    Participant

    I swear that you\’re talking about 2 separate things.

    When activating the home theme, you will first use \”Themes\” to enable it. Then, you go to Appearance, click the theme and you get the big popup where you click activate.

    When activating the profile (member) theme, there is no screen shot. Only a pull down menu.

    So your statement of \”whenever I try to load the BP theme itself after activating it the large screenshot that comes up just says \”You do not have any BuddyPress themes installed.\” seriously confuses me.

    That error should only be coming up on the profile page. i.e. nacdb.com/members/members/admin

    Also, could you enable registration of username & blogs so that anyone attempting to help can sign up for an account if need be.

    Jeff Sayre
    Participant

    WillPCG-

    This is the same issue as the one being discussed in another thread. To get the best support, the discussion should be kept to that single thread. Otherwise, new people joining in will not see what has previously been discussed and tried.

    So as not to spread this identical support issue over multiple threads, I’m closing this thread. Please visit the original thread here: https://buddypress.org/forums/topic.php?id=2511

    #44417

    In reply to: Events?

    abcde666
    Participant

    I am interested in an “events-calendar” per BP-group.

    people should be able to say “I will join this event” and “I may join this event”. Then you can see a list of people who will join this event or might join this event.

    It should alos be possible to invite users to this event..

    also, integration into the photo-album (which will be released by BuddyPress later this year) would give this a great tool.

    also, it should be possible to attach a .pdf-file or an image or a link to post details of the event.

    Would like to see a plug-in for this which is also officially approved by the official developers like Andy.

    Please let me know if and when anything like this will become available.

    I am ready to pay $$$ if it´s working properly…..

    Thanks,

    Erich

    #44416
    belogical
    Participant

    Jeff, did the code for the icon, heart_bullet.png, get stripped out? I can’t seem to find it.

    #44415
    jugoretz
    Participant

    The Google Maps Quicktags plugin

    http://www.remotesensingtools.com/2007/08/22/wordpress-plugin-google-maps-quicktag/

    takes care of this problem (which would also affect embedded Google Maps).

    #44414

    In reply to: Site Wide Widget error

    dbascent94
    Participant

    Before I installed a custom theme I tried the default theme and had the same problems. I did solve the group wire problem following Andy\’s advice in another thread. https://buddypress.org/forums/topic.php?id=2339

    If I can solve this widget problem I am good to go.

    #44412
    Will White
    Participant

    I think I’ve narrowed down the problem. The installation isn’t recognizing the fact that bp-themes is in the wp-content directory.

    Even though the two options for Member and Skeleton themes are available through the buddypress settings panel, whenever I try to load the BP theme itself after activating it the large screenshot that comes up just says “You do not have any BuddyPress themes installed.

    Please move “/wp-content/plugins/buddypress/bp-themes/” to “/wp-content/bp-themes” and refresh this page. “

    However I’ve verified, and re-verified, and re-verified again that bp-themes is, in fact, in the wp-content folder along with themes plugins mu-plugins etc.

    Anyone know what could be causing this?

    #44407
    Will White
    Participant

    I just removed BP from the WMU completely, then reinstalled it following the directions at https://codex.buddypress.org/getting-started/installing-buddypress/ to the T and the same problem is still happening.

    #44398
    belogical
    Participant

    i gave up and did it my own way :) i basically looked at the URL and checked to see if it matched, if so, then use the selected class, if not, then a dummy class. use if you like:

    <?php

    global $current_user;
    $username = $current_user->user_login;

    function curPageURL() {
    $pageURL = 'http';
    if ($_SERVER["HTTPS"] == "on") {$pageURL .= "s";}
    $pageURL .= "://";
    if ($_SERVER["SERVER_PORT"] != "80") {
    $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"];
    } else {
    $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
    }
    return $pageURL;
    }

    $currentURL = curPageURL();

    if ( $currentURL == "http://domain.net/members/$username/mystuff/stuff-home" ) {
    $dynamicClass = 'selected';
    } else {
    $dynamicClass = 'NOTselected';
    }

    ?>

    <li class="<?php echo $dynamicClass; ?>"><a href="<?php echo 'http://domain.net/members/'.$username.'/mystuff/stuff-home' ?>" title="<?php _e( 'My Stuff', 'buddypress' ) ?>"><?php _e( 'My Stuff', 'buddypress' ) ?></a></li>

    #44397
    Will White
    Participant

    To answer both questions the setup/directory listing for buddypress is

    nacdb.com/members/wp-content/plugins/buddypress/

    nacdb.com/members/wp-content/themes/bphome/

    nacdb.com/members/wp-content/bp-themes/bpmember/

    members/ contains all of WMU – its not in the root directory.

    #44394
    Roy McKenzie
    Participant

    That’d be cool.

    #44393
    TheEasyButton
    Participant

    I swear you keep editing your initial post – Quit it. LMAO

    I see what you’re saying. All of your links have an extra directory in them.

    members/admin is what you want

    member/members/admin is what you’re getting.

    Is your buddypress stuff in

    wp-content >> plugins >> buddypress

    #44392
    Will White
    Participant

    You installed BuddyPress in http://www.example.com/members ?

    That was just an example of the structure that the links seem to follow – not the actual url.

    The actual url is nacdb.com/members

    #44390
    Will White
    Participant

    No Luck.

    I tried removing the duplicate files, then reactivating the theme.

    When I went to reactivate the theme the screen that pops up that should you the screenshot of the theme and has the “Activate This Theme” at the top right had this message:

    You do not have any BuddyPress themes installed.

    Please move “/wp-content/plugins/buddypress/bp-themes/” to “/wp-content/bp-themes” and refresh this page.

    However, I’m staring at my ftp screen and its already there!

    #44387

    You installed BuddyPress in http://www.example.com/members ?

    Jeff Sayre
    Participant

    Here is a great introduction by Trent Adams to the HyperDB plugin.

    As far as this issue is concerned:

    If there are other blogs/sites created within the WPMU installation (but not BuddyPress) and other BBPress installations as well, is it recommended that everything reside in the same database, or should things like the additional BBPress installations use a separate database?

    I don’t want to completely kill whatever server this could potentially end up running on, but quick response times and user integration between all platforms is key. The higher-ups estimate that there would be about 1,000 or so users for the duration of the event,

    In this scenario, splitting WPMU data between multiple databases on the same database server will not give you much of an advantage. In fact, it could even slow read/write down slightly. But, if this is a temporary site, which it sounds like it might be, then splitting the load between multiple DB servers is probably not realistic.

    The biggest issue will be how many web server and DB server cycles are dedicated to your domain and how many to other people’s domains. If you have a small hosting account, then you’ll absolutely need to upgrade to a decent VPS.

    Dang! jjj beat me by 45 seconds!

    Too slow Camopants! :)

    Jeff Sayre
    Participant

    Dang! jjj beat me by 45 seconds!

    Jeff Sayre
    Participant

    Tony-

    I had this issue as well about a month ago. The solution is simple. You need to create a new account.

    Why? Because, like me, you created an account with a space in your account name (username). Also like me, you choose to use your real name. Logically enough, you put a space between your first and last name. You can see that by hovering your cursor over your name. Do you see the “%20”? That is the space.

    This is not a BuddyPress issue. This is an issue with the way that WPMU processes new registrations, allowing spaces in usernames. Unfortunately, this can cause issues.

    Andy knows more about this issue than I do, but suffice it to say, when creating your new username, do not put a space in it.

    Problem is because your username has a space in it and is using capital letters. Where did you originally register your account and how?

    If you click on Create a Group, you will see that it’s currently disabled, however groups are essentially harmless and are meant to be ways for users to get together on their own and discuss whatever they want to discuss.

Viewing 25 results - 65,576 through 65,600 (of 69,039 total)
Skip to toolbar