Skip to:
Content
Pages
Categories
Search
Top
Bottom

Can you multi-site BuddyPress?


  • nocomment
    Participant

    @nocomment

    I have a feeling this was doomed to failure, but I had a play with:

    http://wpmudev.org/project/Multi-Site-Manager

    which allows you to run one Mu installation for serving multiple domains.

    It all seems to work, but you cannot – it seems – have BuddyPress working on any site other than the main one, at least at a first, quick look.

    Is it possible to run a multi-site BuddyPress from one installation of Mu, does anyone know, please?

    Many thanks and thank you to everyone who helps to make all of this stuff work.

Viewing 25 replies - 1 through 25 (of 31 total)

  • Xevo
    Participant

    @xevo

    No this is impossible or either not recommended. If you go look inside a database with wpmu/buddypress you’ll see that without even a second wpmu/buddypress install, it’s a total mess since you get a few new tables for every blog/user, now imagine that you have 200 wpmu/buddypress installs in one database and then have 10.000 users per install. It’ll be a huge mess and probably make your server/sites really slow.

    Only possible solution would be to make multiple databases, with one database per install. If your on a cheap host, this’ll be impossible, but if your on a dedicated or self hosted, you could get this to work. Still won’t recommend this though, since it’ll take a lot of resources.


    Andrea Rennick
    Participant

    @andrea_r

    So far, buddypress is not multi-site aware.

    There are situations where you may want it to be like that though, but as above, no way I’d do it on a shared host.

    This isn’t what you want, but thought I’d share as it’s sort of related and in case anyone comes across this post via Google at a later date – BP_ENABLE_MULTIBLOG:

    https://codex.buddypress.org/how-to-guides/changing-internal-configuration-settings/


    nocomment
    Participant

    @nocomment

    Thanks for the replies everyone.

    Xevo – The vague idea was for very many fewer sites and blogs than that, but your point is taken.

    Andrea – No, it is on a VPS. It was actually following some of your posts on other sites which made me have a look at Multi-Site Manager.

    DJPaul – Thanks for the link. Had not seen that and it has sparked off another idea. So, you can have BuddyPress sites within BuddyPress sites, eh?

    Is that OK to do?

    If I spent as much time actually writing blogs as playing with ideas, the database might actually be in danger of filling up.

    Thanks again everyone.


    Andrea Rennick
    Participant

    @andrea_r

    @nocomment yeah, we’ve fiddled and tested BP & multisite together.


    @DJPaul
    – will investigate right-quick! :D

    There are cases where clients have a use for multiple sites, each with its own distinct buddypress. So that would be cool. (I think we’re working on a trac ticket – don’t hold me to it yet tho)

    Edit: quick confer with Ron, and the multi-blog part is a seperate isue than on multiple sites. :) Still thinking.


    takuya
    Participant

    @takuya

    I have two installations of wpmu/buddypress, one for Japanese users and one for English users. For English users, I use the user tables of Japanese users. This requires both install to use the same database, but similar to what you want, perhaps.


    John James Jacoby
    Keymaster

    @johnjamesjacoby

    BP_ENABLE_MULTIBLOG basically allows BuddyPress to not look for the root domain, but instead just work on which-ever domain or blog that you’re on at the time. It isn’t really the answer to this question/issue, but rather a way to side-step the issue.

    At the moment, there is no kind of “BuddyPressMU” type setup, allowing multiple BP communities on one installation. But, this isn’t an impossible task to pull off, with some effort. :)

    The underlying problem is that BP uses 1 set of site-wide tables for all MU blogs regardless of site or association. It is coded to think that it has control over the entire MU setup. What would need to happen is for BP to look for which site it is occupying and enumerate its DB tables according to the site_id…

    However… If we’re using one MU installation, we’re still talking about sharing a userbase regardless, so even the above scenario might not be optimal. Ultimately the problem comes from the shared userbase, which means even a new “site” has no real way to say these 10 users only belong to this site, and these 12 users to this one, and these 20 users to this one…

    Something like this, in my opinion, is something that the core should be aware of, but not manage; similar to sunrise support in MU. As setups like this become more popular and the community need for it arises, I’m sure there will be a great solution to this.


    petronic
    Participant

    @petronic

    I made a little plugin that allows you to have different BP on each domain, but there are limitations.

    As jjj said, there is always one user base and plugin just adds different BP components on each site (like activities that user take, groups, messages..).

    I’m not using forum so I’m not sure if this plugin would made different forum instances.

    My plugin is basically making copies of tables for each site, e.g.

    for friends table which is “wp_bp_friends”, plugin makes copies like:

    wp_bp_1_friends (for site with id 1)

    wp_bp_2_friends (for site with id 2)


    John James Jacoby
    Keymaster

    @johnjamesjacoby

    That would be the way to do it. Polish up that plugin and put it in the plugin repo. :)


    Andrea Rennick
    Participant

    @andrea_r

    Oh yes please! If you’ve already whipped up the plugin, that’d be great.


    Anointed
    Participant

    @anointed

    Yes, please release this if you are willing.

    @JJJ [blockquote]Ultimately the problem comes from the shared userbase, which means even a new “site” has no real way to say these 10 users only belong to this site, and these 12 users to this one, and these 20 users to this one…[/blockquote]

    On my wpmu setup I am using a number of plugins from the premium site which was setup by Andrew. I am not sure which of his plugins does this, but on my setup, each blog does have it’s ‘own’ members.

    I had asked awhile back about how to properly go about allowing a user to register on a subdomain blog without ever leaving that blog. This way each blog can have it’s ‘own’ members.

    So when I look in my admin, I actually have a list of blogs, and the members belonging to each blog.

    Would this be what is needed in order to get bp to filter the activity for each blog, to only display members/blogs/forums/activity streams etc… from the given blog being displayed?

    For the life of me I cannot figure out exactly which plugin from Andrew is allowing this. Maybe Andrea would know…

    I have many blogs that have been bugging me non-stop to try and figure out how to bring social networking to their site, but have no solution for them. I know that I could simply install multiple copies of wpmu and give each blog their own complete setup with bp, but that destroys the concept of one codebase to have to update and maintain. It would quickly become a nightmare trying to manage multiple wpmu installs just to get bp working for each blog independent of each other.


    John James Jacoby
    Keymaster

    @johnjamesjacoby

    Blogs can have their own users in MU; they always can. The line gets blurry when you start talking about “sites” though, because a “site” is just another blog where users have roles and caps… The WordPress dashboard doesn’t really make this a clear thing visually, but at the end of the day you still only have 1 users table, regardless of how many sites or blogs you setup and how many users have what roles/caps on which blogs/sites.

    Dizzy yet?


    Anointed
    Participant

    @anointed

    I actually like the fact that all the users are in the same table. Down the road it would allow me to do like ning does, where they have individual sites, only displaying information pertinent to the members of that site. However every member also belongs to the ‘hub’ site should they choose to visit it.

    I guess the real ‘root’ of the problem for me is how to filter the activity on a per site basis, to give the appearance of a dedicated social group belonging to the site displayed.

    Is any of this even vaguely possible as bp stands now?


    Anointed
    Participant

    @anointed

    I actually like the fact that all the users are in the same table. Down the road it would allow me to do like ning does, where they have individual sites, only displaying information pertinent to the members of that site. However every member also belongs to the ‘hub’ site should they choose to visit it.

    I guess the real ‘root’ of the problem for me is how to filter the activity on a per site basis, to give the appearance of a dedicated social group belonging to the site displayed.

    Is any of this even vaguely possible as bp stands now?


    Andrea Rennick
    Participant

    @andrea_r

    “at the end of the day you still only have 1 users table, regardless of how many sites or blogs you setup and how many users have what roles/caps on which blogs/sites.”

    Yep, but they are still restricted by site. At least when you just have MU & a multi-site plugin (depending which one).


    John James Jacoby
    Keymaster

    @johnjamesjacoby

    @andrea_r:

    If that’s true (and I’m sure it is :) ), I’m willing to bet that BuddyPress doesn’t know the difference. I’ll need to do some testing around this, but I have a hunch that BP is just going to loop through all members not by site or blog, but just by what’s in the wp_users table, setting up the kind of situation Anointed mentions.

    The problem is that domain1.com/members will show the same users as domain2.com/members, regardless of where they signed up from or what “site” they think they belong to.

    So if they register at a website about puppies, and a “site” attached to that MU installation about kitties shows up, their profile will show up there too.


    Anointed
    Participant

    @anointed

    @jjj thanks so much for looking into this for us.

    I have not yet looked at my database to see what ‘extra fields’ are added which tells wpmu which blogs the user belongs to. There has to be something there otherwise wpmu could not display the members belonging to each individual blog like it does now.

    I’ll dig into it tomorrow and report back. Maybe we can somehow ‘hook’ into that extra field, and then use that to filter the members and activity etc…

    I”m curious:

    Is this something that was just not considered when bp was initially being built?

    One would have thought that many users would want bp-mu from the get go, like ning does.

    I’m only guessing, but to me it seems that eventually this functionality would have to be added to bp, if it’s ever going to run on wp.com. (At least I thought there were plans of adding bp to regular wp.com sites someday…. read that here somewhere a long time ago)


    John James Jacoby
    Keymaster

    @johnjamesjacoby

    BuddyPress, as it stands will work perfect for a single domain setup, like 99% of the typical audience will predictably use it for, and for wp.com if bits and pieces of it are used for that purpose.

    @anointed, this isn’t a “flaw” in the software so much as it is BP floating on top of MU’s infrastructure. With any of the multi-site plugins, when I look at my site-wide users, I still see ALL users registered from ALL domains/blogs/etc… When I look at a particular blogs users, then of course all that exists there are the users of that blog. Because a “site” is just another “blog” the terms here mean the same thing. 1 central user base, and all users rotate around them.

    There might be a few hacks and methods to counter this behavior, but they involve checking user-meta for a list of blogs that user “belongs” to above and beyond roles and caps, or adding additional tables to route users around… It just is a strange setup and something that needs to be built custom for that particular need.

    Think of how all the *press.org sites work. One central user base, yet you can login to all of bbpress.org, wordpress.org/com, buddypress.org, and all of their respective tracs and blogs, etc… That’s the same thing that BuddyPress does. The MU multi-site plugin does something a little extra, that none of the other platforms really do, and that’s allow multiple domains to use the same installation… bbPress has the power to do something similar, but no one has really explored how to do it yet, but even in that case you’re probably still sharing user tables and just mapping roles and caps again…

    Am I making sense yet? haha


    Anointed
    Participant

    @anointed

    @JJJ we are on the same page, and both talking about the same thing.

    Here is what I was hoping to accomplish:

    have a field in the database that says user ‘abc’ is a member of blogs/sites ‘1,2,3,78’

    (I think that is already in the database — shows up in admin which users are mapped to which blog)

    Then it would be a matter of ‘filtering’ the bp output to only display information from users belonging to the blog being displayed.

    I guess my question would be:

    Is it currently possible to use filters within bp to say:

    blog id#3 is being called upon for display…

    Member ‘abc’ belongs to blog #3 so display his/her profile,groups,forums, activity streams.

    Member ‘xyz’ does not belong to blog #3 so filter all that members information so it’s not displayed on blog #3…

    Not sure how else to pose the question…

    EDIT: I just re-read the title of this post, and realized that I am not talking at all about multi-site bp, which is probably causing the confusion. I was more talking about a single wpmu install with each blog within the one install having it’s own ‘filtered’ bp…. my bad… sorry about that


    Andrea Rennick
    Participant

    @andrea_r

    @jjj Yep, I think that’s pretty much the scoop.


    John James Jacoby
    Keymaster

    @johnjamesjacoby

    @anointed, I think the best way to do something like this would be to extend the existing multi-site plugin(s) and introduce a method to either serialize the sites that users belong to and add it to a _usermeta field, or insert/update/delete blog_id/site_id to the _usermeta every time a user is added or removed and check against those meta’s on every page load if the user is logged in.

    The problem comes from situations where site-admins technically are users on all sites, and how to deal with collisions where users can be added to blogs without being added to sites, if that makes sense?

    What you would need to do is hook into all of the places where users can be added/removed from blogs, and add your own actions to those functions to perform your special tasks, which-ever you choose to do.

    Then… Once that’s all done… You’ll need to modify the members directory to sniff out only the users that are in those _usermeta values that you assign them to. In my opinion, this is a modification of the kind of magnitude best left for professionals or tinkerers with lots of extra time to test and make sure you don’t corrupt the relationships between users, sites, and blogs.

    There are functions already to see which users are already part of which blog_id’s, but that doesn’t really work for all users across any particular group of blogs based on a site_id. I haven’t needed to do something like this myself so I can’t say for sure, but I haven’t seen a core function to find users belonging to particular sites… It would require first checking the wp_blogs table for all blog_id’s matching your site_id, and then checking the roles and caps for users that match.


    Ron Rennick
    Participant

    @wpmuguru

    @jjj I checked in the Aug-Sep timeframe and the hooks weren’t there in BP to do a true segregation by site. I have had a lot of requests for it from people using my multi-site plugin. I currently have 3 plugin releases/re-releases I’m working on. All 3 are at the tweaks & testing stages. Once those are done, I’ll be looking at BP & multisite.


    Mitch
    Participant

    @memitch06

    Has there been any progress on this in the last year?

    I have multi-network enabled with the latest WP platform. It works perfectly – except for the issue above. The funny thing is this:

    Main Site – pulls users from main site only
    Network Site – pulls users from main site only – not from network site. So all posts (even if made by admin on the network site do not show up in activity?

    Could buddypress simply pull users from: /wp-admin/users.php
    vs.
    /wp-admin/ms-users.php?

    That way as long as a member was subscribed to a particular site – it would show up in the BP activity for that site?


    takuya
    Participant

    @takuya

    Allow BuddyPress to function on multiple blogs of a WPMU installation, not just on one root blog:
    define ( ‘BP_ENABLE_MULTIBLOG’, true );

    More: https://codex.buddypress.org/extending-buddypress/changing-internal-configuration-settings/


    Mitch
    Participant

    @memitch06

    @ wpmubp.org – Thanks! I already have multi-blog enabled. The situation I’ve described above has multi-blog enabled?

Viewing 25 replies - 1 through 25 (of 31 total)
  • The topic ‘Can you multi-site BuddyPress?’ is closed to new replies.
Skip to toolbar