Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 63,701 through 63,725 (of 69,054 total)
  • Author
    Search Results
  • Burt Adsit
    Participant

    In 1.0.2 the support for the bbpress helper plugin was pulled out. This ticket: https://trac.buddypress.org/ticket/853 has the essentials for re-enabling the helper plugin support in 1.0.2.

    I stuck the ticket’s attached code into bp-custom.php and it works from there fine. I don’t see any need to hack up a bunch of core files. This is going to be a temporary situation.

    We need to still run the bbpress helper plugin and the support code in bp 1.0.2. Nothing is gonna work right otherwise.

    #49330
    developdesign
    Participant

    Omgitsrfb – you said your domain was just blank then site up and running. What did you do to get it working again?

    I’d also like to know if tables need to be deleted and if that will affect a re-install of BP in the future?

    tsalagi_red
    Participant

    The problem is, I want “Home” for the logged in user to be their personal chosen blog page, instead of the main blog. I don’t know how to do this except to call the url with a wordpress php function.

    I don’t see how Buddypress is using this field. When I change it to a different url in the backend, Buddypress member links still take me to their profile. Or, is it used in some other way?

    #49321
    Kunal17
    Participant

    I just wanted to add that I am using the following plugins:

    SiteWide

    bppicture-album

    Welcome Pack

    Bp-dev core

    BP-dev groups extra

    Others:

    Most Active Blogs

    Seo for buddypress

    As well as the following in the mu-plugins folder:

    bp-events

    bp-featured members-widget

    blog_defaults

    plugin-commander

    typepadAntiSpam

    restrictprofiles

    #49316
    3483983
    Inactive

    Could you maybe explain to us how? Because this is a feature that I really miss in buddypress now.

    r-a-y
    Keymaster

    Hey Mohit,

    Check out “wp-content/plugins/buddypress/bp-core/bp-core-adminbar.php”

    All the function calls are there.

    #49310
    r-a-y
    Keymaster

    Try this:

    https://buddypress.org/forums/topic.php?id=1478&page=2#post-7670

    It worked for me when I had a similar problem that you’re experiencing, although not identical regarding the IXR class.

    However I’m using WPMU 2.7.1 and not 2.8.1.

    r-a-y
    Keymaster

    A couple of considerations here.

    If you use this login panel, you’ll most likely want to disable the BuddyBar. Just something you might want to think about.

    Secondly, play around with that jQuery script. When you have the script actually toggling, then the next step is to implement the BP login form.

    For this, you’ll want to examine the bp_login_bar() function (found in wp-content/plugins/buddypress/bp-core/bp-core-templatetags.php – line 589 and on).

    You can either call this function directly or create a copy of the function and modify it for your needs.

    You’ll probably also need to style it so it works the way you want it.

    Hope that helps!

    #49308

    In reply to: BuddyBar for bbPress

    Brian Neil Katz
    Participant

    Woo Hoo! Thank you for everyones help : @JJJ and @Rohan

    http://www.wpmeetups.com

    http://www.wpmeetups.com/forums/

    Fully Integrated with the following:

    1) 2.8.1 WPMU (latest trunk – 1867)

    2) BuddyPress 1.1

    3) bbPress 1.01 (latest trunk – 1361)

    4) BuddyBar 1.03

    5) Modification of of two core files

    a) wpmu-functions.php b) capabilities.php

    Thanks Again

    #49306

    In reply to: BuddyBar for bbPress

    nielowait
    Participant

    @the wall:

    I spent most of the day trying to figure out (like many others) why buddypress groups and bbpress wasn’t integrating. In the end I managed to track down that, in my instance, the xmlrpc wasn’t working for some reason. The connection seems to be closed prematurely. When I eventually tracked down the fault to where the buddybar plugin gets included, and once I deactivated it, the xmlrpcs (and thus the integration) started functioning properly.

    Please excuse if this has already been addressed in this thread, it’s been a long day, so don’t have the energy to read through everything right now, but I wanted to share what I found out in case it could help anyone else.

    As soon as I can, I’ll try using the bleeding edge version and see if I can’t figure out what’s happening with the particular setup I’m working with to cause this to happen. The odds are good that it might even work without any fuss using the above-mentioned version.

    #49302
    Donnacha
    Participant

    @diego-r

    Please do let us know how Milan, the developer, responds. GD StarRating is a pretty major plugin, it would be a great pity if it was incompatible with BuddyPress.

    plrk
    Participant

    The hack:

    <?
    // Fulhack for fixing obscure [p] bug: see
    // https://buddypress.org/forums/topic/p-showing-up-in-group-forums-and-activity-with-bp-102-and-latest-phplibxml

    function fulhack_for_fixing_p_bug($string) {
    $string = preg_replace("#\[a href=\"([^<]+)\"\]([^<]+)\[/a\]#i", "<a href=\"\\1\" target=\"_blank\">\\2</a>", $string);
    $string = str_replace("[p]", "<p>", $string);
    $string = str_replace("[/p]", "</p>", $string);
    $string = str_replace("[ol]", "<ol>", $string);
    $string = str_replace("[/ol]", "</ol>", $string);
    $string = str_replace("[ul]", "<ul>", $string);
    $string = str_replace("[/ul]", "</ul>", $string);
    $string = str_replace("[li]", "<li>", $string);
    $string = str_replace("[/li]", "</li>", $string);
    $string = str_replace("
    ", "<br />", $string);
    return $string;
    }
    add_filter( 'bp_get_the_topic_post_content', 'fulhack_for_fixing_p_bug' );
    ?>

    #49299
    omgitsrfb
    Participant

    so i removed the premium avatart plugin but still can’t upload from the registration page of buddypress. can anyone please help me out with my question above. what impact would commenting out

    RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*

    RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]

    have on the rest of my site? why would this be in .htaccess if it’s ok to just comment them out?

    thanks

    #49298
    3474163
    Inactive

    …other than maybe a PHP memory limit error? Or maybe the comment.php file is corrupt?

    Are you using deep integration by chance?

    hey,

    thanks for your quick answer, i don’t do anything special, the message appears at the top, when i click on the forum setup.

    i downloaded the wpmu package again and inserted the comment.php in the wp.includes folder, to see if the file is corrupt, but the error message is still there…

    what is a php memory limit error and how do i fix it?

    what do you mean with deep integration?

    i installed wpmu, than added buddypress vía the plugin page, than installed bbpress manually (in a wpmu subfolder called “forums”) and added some other plugins…

    ah, and wpmu and bbpress share the database…

    but, so far i haven’t used any special integration plugin.

    greets

    loligco

    #49291
    Jeff Sayre
    Participant

    That makes sense. I believe BP 1.0.3 will be out soon.

    #49289
    kipperman
    Participant

    Thanks,

    sorry about the posting on old post.

    Since I already have WPMU 2.8.1 installed I may as well stick it out and wait for the BP upgrade, I’m quite new to WP and don’t want the hassle to winding back versions.

    cheers

    #49286

    In reply to: nginx re-write rules

    Jeff Sayre
    Participant

    @Indojepang

    This is not a BuddyPress issue nor a WPMU issue. It has to do with properly setting up a Nginx web server. But, your best bet is to go search the WPMU forums. If you can’t find an answer, post a new thread.

    #49284

    In reply to: Widget Bugs

    Paul Wong-Gibbs
    Keymaster

    Andy Peatling has said he plans an interim of BuddyPress soon to improve compatibility with WPMU 2.8.1 (via twitter). If this isn’t on the bug tracker, please post it so that he is aware – thanks.

    #49281

    In reply to: Widget Bugs

    stellakreis
    Participant

    I’m haveing exactly the same issue when I updated WPMU from 2.7.1 to 2.8.1.

    I’ve tried to install another buddypress by using newly installed 2.8.1 and the same problem appears.

    More precisery, all the text fields from welcome message to “how many xxs do you want to have” fields retains only one letter in a field.

    I haven’t touched the core files of neither WPMU nor Buddypress. I’ve just put them on the server and installed/activated.

    However, when activating Buddypress on 2.8.1, I’ve got an error massage saying that Buddypress could not be activated, although it IS activted in the plugin list (and working fine, except this widget issue.)

    Running under PHP5.2.8 and MySQL 5.0.77.

    #49280
    Jeff Sayre
    Participant

    @Jatinder

    First of all, since this post has not seen any activity for 3 months, it is better to start a new thread as most people that can help you will often ignore posts marked resovlved, preferring to spending their time focusing on threads that stll are unresolved. Please read this for more information.

    Second, read this and see if you can find your answer.

    #49278
    Jeff Sayre
    Participant

    You need to contact the developer of that 3rd-party plugin and ask them when the plan to support WPMU 2.8.1 and BP 1.0.2.

    This is not a BuddyPress issue.

    #49277
    Jeff Sayre
    Participant

    It is up to each widget (plugin) developer to determine whether or not their widgets are compatible with the new widget API. In theory, WPMU 2.8.1 should offer backwards compatibility with older widgets. But, it is not always the case.

    In term of BuddyPress’ widgets, I’m not sure when they will be updated. If we get sufficient number of reports of their improper functioning, then we will of course fix the issue. So, if you are having issues with the widgets that come with BP, please let us know. This post is a good example!

    In general, if you have a 3rd-party widget that is not working in 2.8.1, please contact the developer directly and ask when they plan to upgrade.

    #49276
    Indojepang
    Participant

    Coool.. can’t wait for this! great M!

    #49275

    In reply to: BuddyBar for bbPress

    argyris
    Participant

    @Rohan

    The other programs (mu and buddypress) have indeed the correct language. Only bbpress has the problem after the deep integration.

    Any ideas?

    #49274
    Jeff Sayre
    Participant

    @kipperman

    I’m sorry that your having issues getting BuddyPress up and running.

    One request first: since this post is marked as resolved and is a month old, in general it is better to start a new thread as most people that can help you will often ignore posts marked resovlved, preferring to spending their time focusing on threads that still are unresolved. Please read this for more information.

    Concerning your issue, this is a known bug that has been discussed here. Basically, BuddyPress 1.0.3, the next release coming very soon, will take care of this issue. So, in the meantime, you may need to stick with WPMU 2.7.1 and BP 1.0.2.

    Also, before upgrading BuddyPress and WPMU, it is very important that you first deactivate all BuddyPress-dependent plugins. Then deactivate BuddyPress itself. Finally, it is recommended that you deactivate all other non-BP related sitewide plugins as well. Once finished upgrading WPMU, you then upgrade and reactivate BP. Then, you reactivate the other BP-dependent plugins.

Viewing 25 results - 63,701 through 63,725 (of 69,054 total)
Skip to toolbar