Search Results for 'bbpress'
-
AuthorSearch Results
-
January 14, 2010 at 12:57 pm #60737
In reply to: What if I'm not running WordPress MU?
Xevo
ParticipantAnyone that can make an ordinairy wordpress template, can make a bbpress template, their theming is almost the same.
January 14, 2010 at 11:02 am #60732In reply to: What if I'm not running WordPress MU?
chengdu-living
ParticipantThanks for the info.
Maybe I should just stick with bbpress.
An unrelated question: If I want to make my blog and bbpress install look the same, how could I do that? Is there someone I can hire? I don’t know where to find someone who can do that.
January 14, 2010 at 10:43 am #60729In reply to: What if I'm not running WordPress MU?
D Cartwright
ParticipantSome pointers (check the other two threads in the forum directory 1st page for more info):
1) BP supports single WP in the latest trunk – http://trac.buddypress.org. Currently still in development but is due out fairly soon.
2) BP uses bbpress forums internally. If you don’t require the extra features of BP I’d suggest just using bbpress
January 14, 2010 at 2:31 am #60713r-a-y
KeymasterGlad you got it all sorted out!
For anyone else reading, this only applies for people upgrading from the BP 1.0 series.
For fresh BP installs circa v1.1 and up, don’t bother reading this thread!
January 14, 2010 at 12:23 am #60709af3
Participant@ray — that works superbly! thank you again, your help to clarify the structure, use of the modified hidden forum plugin and idea to set group forum category as ID=1 !! thx
January 13, 2010 at 7:14 pm #60691In reply to: Getting started with bbpress
r-a-y
KeymasterYou need to create a group in order to create a forum.
Create a group with discussion forum enabled and you’ll be able to see some forums.
FYI, there is no category structure for forums right now.
It’s basically flat.
January 13, 2010 at 7:00 pm #60689r-a-y
KeymasterOkay af3, this requires manipulating your forums in the bbPress backend.
For me, new group forums were being created as a child of forum ID #1.
So what I did was change forum ID #1 to a forum category, then I moved all existing group forums under forum #1. Lastly, in step #3 above, I changed the ID from 3 to 1.
Now all new BP group forums are created under forum category ID #1.
Report back and let me know if this works for you.
January 13, 2010 at 6:10 pm #60687r-a-y
KeymasterI think if you have your group forum category listed last, new group forums will automatically be tacked on to that forum category, might need to double check this though.
eg.
Generic forum (this is a forum category)
–generic sub forum #1
–generic sub forum #1
Generic forum 2(this is a forum category)
–generic sub forum #2
–generic sub forum #2
Group forums (forum category for BP forums)
–BP group #1
–BP group #2
I’m going to give this a quick try and report back.
[EDIT]
af3, you’re right, it doesn’t get created in the forum category! Will have to look into this.
If you figure it out before me, let me know.
January 13, 2010 at 12:51 pm #60677af3
Participant@ray – i really appreciate this. it’s all clear to me now. I can now manually hide the group forum in bbpress (irregardless of public or private or hidden group). Its quite basic but works fine i.e. group members must go their group site to have access to the group forum.. which is cool btw.
In step #2 above:
How do we make sure that all new group forums are automatically added into the forum category? At the moment, its added as another forum, so we have to manually change this as child to the bbpress forum category for group created in Step #2.
Thanks again for your meticulous help & instructions abv.
January 13, 2010 at 3:41 am #60667r-a-y
KeymasterThe way I see it, you have a couple of options:
1) Continue using your external bbPress setup for open, public discussions (similar to bp.org/forums), while hiding all group forums and group forum related discussions from your external bbPress install.
BP group forum discussions will now be using the new integrated forums in BP 1.1 only for group discussions. And you can retain all your external bbPress posts!
This essentially means you’ll have two forums.
2) Move everything over to the integrated BuddyPress forums (not something you want to do I’m guessing).
3) Move everything over to the external install of bbPress (requires BP core hacking, doable, but more work).
—
Option 1 is probably the most viable.
Here’s how to do it:
Step #1 (optional, depending on where you installed your external version of bbPress)
By default, BP group forums can be accessed at:
hxxp://example.com/forums/
If your external bbPress is also installed in /forums/, you’ll want to rename BP’s forums slug to something else.
You can do this by adding the following in your wp-config.php or bp-custom.php:
define( 'BP_FORUMS_SLUG', 'group-forums' );In the example above, your BP forums can now be accessed at hxxp://example.com/group-forums/
Step #2
In your external bbPress install, make sure all your group forums are under a forum category.
If you don’t have a forum category specifically for your group forums, go into your bbPress admin area and add one (you can call the forum category “Group Forums” or whatever you want), then place each group forum under this new category.
Note down the forum ID of the forum category. You can get the forum category ID by mousing over the “Edit” link and checking the “id” parameter.
Step #3
Now that you’ve created a forum category and noted down that forum category ID, we want to hide all group forum related stuff from access and view.
We’re going to be using _ck_’s Hidden Groups plugin to do this.
Since you’re using the BP Groups plugin by Burt Adsit, chances are you’re already using _ck_’s Hidden Forums plugin due to its usage with BP Groups.
Open up the plugin (hidden-forums.php) in a text editor.
Comment out this line:
$hidden_forums['hidden_forums']=array(500,501,502); // hide these forums, list by comma seperated numberUnderneath that line, add the following:
$bp_hide_group_forum_category_id = 3;
$hidden_forums['hidden_forums']=array();
$hidden_forums['hidden_forums'][] = $bp_hide_group_forum_category_id;
$forums = get_forums();
foreach ($forums as $forum) {
if ($forum->forum_parent == $bp_hide_group_forum_category_id)
$hidden_forums['hidden_forums'][] = $forum->forum_id;
}Change the $bp_hide_group_forum_category_id variable to the forum category ID you noted down in step #2.
—
And that should be it! By default, the admin can view every single forum post, so try viewing your bbPress install when you’re logged out!
January 13, 2010 at 1:49 am #60665af3
Participant@ray, i tested this again: enabled buddypress forum in the component setup, then reinstalled forum using existing bbpress installation setting ***.
I created a private group with forum enabled and posted a topic in this group forum. I then logout, used other browser to view the wpmu forum (bbpress), and I can still see the topic posted in the bppress that should have been a private post. When logged in as another user (non-group member), i can reply to that topic! That’s the privacy issue that I was talking abt.
*** would selecting new installation of bbpress overwrite my existing bbpress ?
January 13, 2010 at 12:43 am #60664af3
ParticipantThe obvious choice for me during that was to keep the existing installation; as bbpress was already installed in the same wpmu db (not an external db). I have abt 70,000 posts in the bbpress forum so most users are using them.
I would like the group discussion forums to be only accessible to group members.
January 12, 2010 at 8:46 pm #60644In reply to: Site Wide Activity stream not working
bbrian017
Participant1. Which version of WPMU are you running?
A. You are using WordPress MU 2.8.6.
2. Did you install WPMU as a directory or subdomain install?
A. Directory (initially a subdomain on accident)
3. If a directory install, is it in root or in a subdirectory?
A. Was a sub directory and is now moved to the root
4. Did you upgraded from a previous version of WPMU? If so, from which version?
A. Fresh Installation
5. Was WPMU functioning properly before installing/upgrading BuddyPress?
A. Seemed to be an issues from installation
6. Which version of BuddyPress (BP) are you running?
A. Latest available from download section
7. Did you upgraded from a previous version of BP? If so, from which version?
8. Do you have any plugins other than BuddyPress installed and activated?
A. Yes ( I removed all issues ramain) it’s not plugins
9. Are you using the standard BuddyPress themes or customized themes?
I’m using a paid theme from WPMU DEV
10. Have you modified the core files in any way?
A. not at all
11. Do you have any custom functions in bp-custom.php?
A. Not that I have added
12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
Running bbpress but ti’s not working showing blank screen with no options but to reinstall
13. Please provide a list of any errors in your server’s log files.
A. I don’t have any errors to show
14. Which company provides your hosting?
A. Godaddy Dedicated Server
FYI
My issue is basic. Old stuff is staying at the top of the activity stream and not moving down as it should.
Why is it stuck up top? All new activity is being placed below the bottom of the stream.
January 12, 2010 at 6:11 pm #60637r-a-y
KeymasterYou say you are using BP 1.1.3.
When you upgraded from the BP 1.0 series, what choice did you make when you upgraded the forums?
https://codex.buddypress.org/developer-discussions/buddypress-forum/
Did you choose to keep the existing installation?
Or did you choose to create a new installation?
—
Also how dependent are you on your external version of bbPress?
Besides the group forums, do your members post in other areas in your external bbPress?
After answering these questions, we’ll have a better idea on how to proceed.
January 12, 2010 at 4:12 pm #60633af3
Participant@ray, thanks for info; when i integrated wpmu and bbpress, bbpress was set to be in the same dbase as WPMU, and the bbpress was already with over 70k posts (not a new install). So when bp was installed, it’s also in the same db used by wpmu and bbpress. Even if I installed bp with the bbpress forum that came with it; wouldnt it be still using the bb tables that are already there in the existing db?
Should i install two different bbpress with separate db so I can solve this privacy issues? Its a bit confusing to me now on the whole architecture of bp+bbpress and bp group forums. Pls help.
January 11, 2010 at 9:33 pm #60608r-a-y
KeymasterThe first post in this thread was made 7 months ago when bbPress needed to be separately installed.
As of BP v1.1+, bbPress is now embedded into BuddyPress.
Privacy options for group forums now exist natively.
If you’re using an external bbPress install (which it sounds like you are), then you’re correct, privacy will still be an issue. I’m not even sure the BP Groups plugin by Burt Adsit even works with BP 1.1 / external bbPress.
January 11, 2010 at 8:43 pm #60604In reply to: Cannot post new topic on forum
michelle88
ParticipantI finally get a response
Thanks Bowe! I’ve tried to answer your questions below. I hope this helps:1. my version of WPMU is 2.8.6
2. I installed WPMU as a directory install?
3. I installed in the root
4. No. I did not upgrade from a previous version of WPMU
5. Yes. WPMU functioned properly before installing BuddyPress
6. My version of BuddyPress is 1.1.3
7. No. I did not upgrade from a previous version of BP
8. I have the following 16 plugins other than buddypress installed and activated:
-All in One SEO Pack
-Announcement and Vertical Scroll News
-bbPress Integration
-Competition Manager
-Contact Form 7
-Custom Admin Branding
-Image Widget
-JR_news
-Tags 2 Meta Generator
-Live Countdown Timer
-Ultimate Google Analytics
-Vertical Response Widget
-Wordpress Newsletter Subscription Opt-in for Sendblaster
-WP-Polls
9. I’m using the BuddyPress Default theme
10. The only core files modified is footer.php
11. No. I have no custom functions in bp-custom.php
12. I installed bbPress using the Forums Setup in Buddypress
13. List of errors in my server’s log:
[Mon Jan 11 15:04:52 2010] [error] [client 82.128.52.89] File does not exist: /home/ystars/public_html/wp-content/plugins/custom-admin-branding/images/login_youngstars_gray.jpg, referer: http://my-domain.org/wp-login.php
14. BYOhosting [dot]com provides my hosting
January 11, 2010 at 6:02 pm #60593In reply to: Cannot post new topic on forum
Bowe
ParticipantPlease answer these so we know a bit more about your setup:
1. Which version of WPMU are you running?
2. Did you install WPMU as a directory or subdomain install?
3. If a directory install, is it in root or in a subdirectory?
4. Did you upgraded from a previous version of WPMU? If so, from which version?
5. Was WPMU functioning properly before installing/upgrading BuddyPress?
6. Which version of BuddyPress (BP) are you running?
7. Did you upgraded from a previous version of BP? If so, from which version?
8. Do you have any plugins other than BuddyPress installed and activated?
9. Are you using the standard BuddyPress themes or customized themes?
10. Have you modified the core files in any way?
11. Do you have any custom functions in bp-custom.php?
12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
13. Please provide a list of any errors in your server’s log files.
14. Which company provides your hosting?
January 11, 2010 at 3:01 pm #60580danbpfr
ParticipantHidding your page with the CSS trick display:none is pure illusion.
It’s not by changing the wallpaper that you lock your door !

The screen is effectively blank, but the datas are all visible by using right-click “view page source”.
Demo link to “a blank screen”: http://www.netajour.com/buddytest/test.html
If your datas need privacy, you have to use something better as display:none;
January 11, 2010 at 11:15 am #60570af3
ParticipantErcih, if you set your bp groups to be PRIVATE, the forum in that group is actually using bbpress; and will be visible to users that go directly to bbpress itself — they can read, post new topics, edit, delete their topics — just like a normal bbpress stuffs
that really defeats the purpose of having a privacy option for BP Groups, i.e. those that is setup with forum.I hope I am completely wrong; but this is what I am seeing with my wpmu2.8.6+bp1.1.3+bbpress1.0.2
January 11, 2010 at 11:03 am #60568abcde666
ParticipantI am not sure I understand:
are you saying, that if you create a “Private Group” within BP, then the associated “Group-Forum” is not private ?
So when creating a private Group, the Forum-posts are still visible by everybody ?
January 11, 2010 at 10:38 am #60567af3
ParticipantI think this capability is something important that is missing in bp groups. The concept of group and its integration with bbpress are certainly expanding the users interaction within bp groups; yet the privacy of groups discussion is not assured.
Firstly, is there a quick fix to autohide all bp groups forum from bbpress forum? I have not enabled group forum support because of this issue; and currently only using a separate install of bbpress integrated with wordpress as a place for general forum discussion. Hiding the whole forum is certainly not a totally acceptable solution especially when there are thousands of existing topics that are already there and not associated with any groups.
Secondly, what is the code to check if the logged user is a member of a group with forum id that can be done from bbpress with deep integration; this could be added in bbpress to limit access to group topics where the logged in user is not a member.
rgds
January 9, 2010 at 6:22 pm #60477In reply to: BBpress duel install
John James Jacoby
KeymasterIf you install a fresh copy of bbPress in a forum on your server called “forums” then it will override the slug in most installations. At that point you would need to theme your bbPress installation to look like the rest of your website.
January 8, 2010 at 8:36 pm #60393In reply to: BBpress duel install
r-a-y
KeymasterYou can’t install bbpress in the “forums” folder if you enable buddypress group forums, since buddypress will then use “forums” as its permalink for its build in group forums.
You can redefine the BP forums slug to something else in wp-config.php or bp-custom.php:
define( 'BP_FORUMS_SLUG', 'group-forums' );That way, you can install bbPress in /forums/ if you wanted to.
This is what I’ve done on my test environment and it works.
January 8, 2010 at 8:29 pm #60391In reply to: BBpress duel install
carpconnect
ParticipantSo i would have to turn off group forums?
If i have standard bbpress install in /forums will that allow group forums as well as normal layout?
cheers
-
AuthorSearch Results