Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 5,701 through 5,725 (of 7,447 total)
  • Author
    Search Results
  • #54236

    Think of something like Usenet, which was basically just a group of people talking back and forth inside their own little forum. Since BuddyPress is a community centric, user centric plugin for WordPress, the focus is on the interaction between people inside their respective groups. Forums are currently a feature of groups, but forums could be a feature of other things later too if plugins choose to support them, since bbPress is included and a great example of an API exists within BuddyPress.

    Events could have their own discussion forums, blogs, users, activity feed items could be topics, etc…

    #54195
    wordpressfan
    Participant

    The key to streamlining the forums = groups = forums path is to remove the groups metaphor, at least for users. There are two BP metaphors that get the most user attention: profiles and forums. From profiles, people can interact with other users: friending and joining groups. From forums, people can interact with other users: reading and writing topical posts. Having groups as a separate metaphor, which is sort of like forums and sort of like profiles creates confusion.

    A quick solution would be creating a separate bbpress installation, integrating it with the bp forums and deactivating the bp groups.

    #54189
    Paul Wong-Gibbs
    Keymaster

    Please usehttps://buddypress.org/forums/topic/how-to-create-a-forum-that-isnt-associated-with-a-group/ to continue this

    discussion

    #54188
    zageek
    Participant

    Precisely. What I am needing is a standalone forum with a little bit of integration with groups. There should be better configuration options for the forums that allow you to choose how you want to use it. The one click set up is a bit too simplistic.

    #54161
    Tore
    Participant

    I’ve been thinking about using the integrated forums with 1.1 and rebuild the groups to only mean forum categories. Strip the groups feature of everything that’s not forums. Also make it easier to read. The layout of a forum in groups is a bit simplistic. Perfect for groups but not for stand alone forums.

    #54153
    zageek
    Participant

    I tried reading through and searching the forum before posting this. Unfortunately there isn’t a detailed description of everything for BP like the WordPress Codex, its a bit frustrating. Reading through the code usually works but that takes a lot of time and coffee :)

    https://codex.buddypress.org/developer-discussions/buddypress-forum/ that link doesn’t really say much except describe what the forum plugin is all about.

    I have been playing around with the integrated forum and I don’t like the way you have to associate forums with groups and stuff. I want to have something like this forum on this site, like the standard forum structure you get.

    A forum with a root thread in which categories can be made and child threads can be started. Like what Vbulletin, Phpbb and SMF et al has.

    What I am trying to figure out is if its possible to do this with the integrated forums or should I go to the standalone Bbpress installation.

    #54146
    Tore
    Participant

    Can’t do it right now, perhaps on saturday. Will love to test it! This is extremely interesting in my opinion! Great work!

    #54139
    danbpfr
    Participant

    Try this plugin (works with 1.1)

    https://wordpress.org/extend/plugins/bbpress-latest-discussion/

    number of post and forums can be set in plugin option

    #54135
    danbpfr
    Participant

    Forums are are now fully integrated and attached to groups that can be created and controlled by any registered user.

    https://codex.buddypress.org/developer-discussions/buddypress-forum/

    By default, there is no need to be registered in a (public) group to post. You must only be on the group page to access to his forum.

    If you are admin, you can create a hidden group of course and invite all members you want.

    @ The thing is I want a site wide forum like this site has. I you want you have to create it. This iste use a custom page as far as i know.

    @ So does that mean I have to create a group and add everyone to it ?

    i think you’re going to do things twice if you don’t read this forum first before asking :)

    .

    #54131

    In reply to: Forum at front page?

    danbpfr
    Participant

    @david lewis

    it’s not hard: the plugin still exist.

    https://wordpress.org/extend/plugins/bbpress-latest-discussion/

    And works with 1.1 new forum integration. Even if not necessary because latest post appearing in the side wide activity. So the plugin is only interesting if you don’t use SWA or if you use a custom homepage or an external bbpress install…

    If you use it, don’t forget to set the right DB table prefix in the plugin option (default is bb_, but now it’s wp_bb_)

    select the forum you want to exclude, enter connection infos and that’s it !

    Have fun !

    #54116
    mfd
    Participant

    Hello,

    over here i encountered this problem too.

    I am using wpmu 2.8.4 with Buddypress 1.1.1 and an BBPress Forum (not the integrated version, cause i want to use it as standard forum too).

    So since i changed from the old “Two-Theme” system to the new one where the member theme is inside my wp-maintheme, i have this Problem and cant get rid of it.

    Step 1:

    Everything is in DB and seems correct

    Step 2:

    after clicking “Next Step” there is another group created without base data but with status.

    There is no new groupforum created.

    Step 3:

    Sometimes i get here and if so i have a correct group(or so it seems in database), but after choosing the avatar i get another error saying “try again”.

    Step 4:

    Long time no see ^^ I have not seen this step since i changed the theme -.-

    Hopefully someone will find out what causes this error :(

    #54106
    r-a-y
    Keymaster

    Funny I was talking about assumptions and I assumed that your bbPress install was sharing the same DB ;)

    #54098
    Boone Gorges
    Keymaster

    Hi Ray,

    I’m glad you got it figured out. The reason I didn’t do this in the first place, though, is that BBDB_USER and those other global variables refer (if I’m not mistaken) to the bbPress db credentials, not the BP credentials that are necessary. If you’ve got the two installed in the same database, it’s not an issue and the globals will work. But I’m running bbPress and BP in separate DBs. $bb->user_bbdb_user and the like store the WP db info that the admin enters in the bbPress admin > WP integration settings.

    So I guess all this is to say that I’m glad you got your situation figured out (I think I already said that :) ) but the very same solution might not work for all installations.

    @Mike – Yes, I noticed the other day that Brent had posted the plugin, and I thought it was hilarious that we had come out with the plugins at almost the exact same time. Please feel free to pick apart my code, as I’m planning to do with your code in the near future, so that we can communicate about the best way to merge, or at least not unnecessarily duplicate work. I’ve got some ideas for making the plugin better in the future (daily digests in place of individual emails would be a big improvement but is probably pretty difficult) and we should definitely help each other!

    #54085
    r-a-y
    Keymaster

    Boone:

    These lines will fix the problem I was having in the bbPress trigger plugin:

    $con = mysql_connect("localhost",constant("BBDB_USER"),constant("BBDB_PASSWORD"));
    mysql_select_db(constant("BBDB_NAME"), $con) or die(mysql_error());

    This will work for all bbPress installs; no more assumptions ;)

    To be safe, you could probably switch out “localhost” for constant(“BBDB_HOST”).

    #54082
    Mike Pratt
    Participant

    Perhaps we should join forces, Boone but my partner in crime Brent Layman (westpointer) and I have a working plugin that does the same thing (albeit w/o the elegant options you have)

    https://wordpress.org/extend/plugins/buddypressbbpress-email-notification/

    Are you aware and maybe we can share code.

    #54080
    Boone Gorges
    Keymaster

    Hi Ray,

    Here’s what I think is going on. When you create a new topic, bbPress has to go to the BP tables to find out who’s in the topic’s group and then subscribe them to the new topic. It looks like I wrote the code with the assumption that your BP db is accessible by the same mysql user as your bbPress db. I guess that’s probably not the case in some situations. That could be the problem.

    On the other hand, the fact that your error says “using password: NO” suggests that no password is being sent at all, i.e. that $bb->user_bbdb_password is coming up blank. I’m not sure what that’s about.

    In either case, a quick workaround is to hardcode your bp mysql db username/pw into the plugin. In

    $con = mysql_connect(“localhost”,$bb->user_bbdb_user,$bb->user_bbdb_password);

    replace $bb->user_bbdb_user with the user and …password with the pw.

    Hope that works.

    #54074
    r-a-y
    Keymaster

    Hey Boone,

    Just trying out the bbPress companion trigger plugin and I’m encountering this problem when creating new topics:

    Warning: mysql_connect() [function.mysql-connect]: Access denied for user ‘www-data’@’localhost’ (using password: NO) in /var/www/example.com/forums/my-plugins/bb-group-forum-subscription.php on line 22

    Warning: mysql_select_db(): supplied argument is not a valid MySQL-Link resource in /var/www/example.com/forums/my-plugins/bb-group-forum-subscription.php on line 24

    Replying to already created topics works fine.

    There’s also a noticeable delay when posting with the bbPress plugin; I’m guessing it’s the database queries that the plugin is doing.

    #54016
    Jeff Sayre
    Participant

    Make sure the “bbPress Forums” is enabled in “BuddyPress > Component Setup”. Also, make sure that you have bbPress 1.0.2 installed in /buddypress/bp-forums/bbpress/

    #53921
    4772092
    Inactive

    Well. My version is this: WPMU 2.8.4a bp 1.1, no bbPress.

    The installation is in the root directory site.com/

    No updates, installation made from the latest versions.

    No plugin installed now, and use the default theme.

    No changes to the files.

    No errors reported in the file.

    #53875

    In reply to: Blogs List

    Kailas
    Participant

    @DJPaul: Thanks. Here is the info you want:

    1. Which version of WPMU are you running?

    2.8.4

    2. Did you install WPMU as a directory or subdomain install?

    As a directory (mywebsite.com/blogs)

    3. If a directory install, is it in root or in a subdirectory?

    Sub directory (mywebsite.com/blogs)

    4. Did you upgraded from a previous version of WPMU? If so, from which version?

    2.6 -> 2.7 -> 2.8.4

    5. Was WPMU functioning properly before installing/upgrading BuddyPress?

    Yes

    6. Which version of BuddyPress (BP) are you running?

    BP 1.1

    7. Did you upgraded from a previous version of BP? If so, from which version?

    I removed previous version 1.0.x and did fresh install of 1.1. Steps I followed:

    – (Forgot to disable BP plugin and Profile field setup)

    – Removed wp-content/bp-themes

    – Removed wp-content/plugins/buddypress

    – Uploaded BP 1.1 to wp-content/plugins

    – Copied BP themes to wp-content/themes

    – Activated BP plugin

    – Set bp-default theme for root blog

    8. Do you have any plugins other than BuddyPress installed and activated?

    Yes many of them including Akismet, SI-Captcha, Profile Field Setup, etc

    9. Are you using the standard BuddyPress themes or customized themes?

    Standard: bp-default

    10. Have you modified the core files in any way?

    No

    11. Do you have any custom functions in bp-custom.php?

    No

    12. If running bbPress, which version?

    No

    13. Please provide a list of any errors in your server’s log files.

    None

    Thanks

    #53873
    travellection
    Participant

    I would like to ask if I can use simple press instead of bbpress? if so how would I be able to configure it?

    Thanks?

    #53871
    lewbell
    Participant

    Thanks DJ

    Reinstalled bbpress once again and it seems to respond now.

    Still can’t get the Profile Field questions to show up for new users.

    I think I’m missing something small.

    #53847
    Paul Wong-Gibbs
    Keymaster

    Sounds like your MySQL database connection details aren’t proper. However, if the rest of your WPMU site works…

    Was your previous bbpress install in a seperate database? (i.e. not in the same one as wpmu/buddypress)

    Peter Kirn
    Participant

    Hi John – thanks for the detailed response. I did read the documentation. The problem is – and I didn’t realize this until after my first attempt at the upgrade was finished – that documentation doesn’t appear to cover the scenario of an existing, integrated bbPress setup with bbPress stored in a *different* database. So, initially, I tried to choose the existing installation. When that didn’t work, I went back into admin and chose the option that allows you to try again with a fresh installation. What I’m trying to fix now is a *new* bbPress installation – but with existing groups.

    Certainly, what you describe makes absolute sense. So now, I’m just looking for a resolution. I’m not concerned about existing forum posts; I think we can start fresh.

    I’m looking now at the database. In wp_bp_groups_groupmeta, I see id and group_id.

    In wp_bp_groups, I see id and enable_forum.

    But enable_forum is the boolean for that checkbox. I don’t see where the forum_id is stored; it’s not listed as a field in either of those tables. Do I need to look at the bbpress table? How is the forum id matched up with the group id, since that seems to be the issue? Presumably if I delete the fields for that metadata, then disable the forum option for each of the groups, then re-enable, it should create new forums, yes? But where do I find that forum ID metadata, or can I actually simply delete the metadata for each of the groups that has a forum?

    I recommend reading https://codex.buddypress.org/developer-discussions/buddypress-forum/ if you haven’t already…

    Peterkirn, did you choose a new installation or an existing one when you updated?

    Here’s what’s happening, and how to fix it.

    Since you picked new installation, your existing groups forums won’t work, because the forum_id’s they want to post to don’t exist in your new installation.

    Basically, New installation = New database tables

    If your old forums don’t have any important or relevent topics, or any at all, go back and forth between your “wp_bp_groups” table and your “wp_bp_groups_groupmeta” table, and remove the groupmeta entries with the group_id’s of your existing groups, that have any forum_id.

    When you disable and enable the forums, it isn’t creating a new forum for them, it’s just turning off the ability. If you created a forum for an old group, and then create a new installation, the new database tables will be empty and your BuddyPress forums will look at those tables for data. If you use an existing installation, then BuddyPress will continue to use the old bbPress tables and allow an external bbPress installation to access them on its own, while letting the bbPress included with BuddyPress use it for its own purposes.

Viewing 25 results - 5,701 through 5,725 (of 7,447 total)
Skip to toolbar