Search Results for 'test'
-
Search Results
-
Topic: bbPress bug with MultiSite
bbp_check_user_edit() appears to use the following condition:
if ( !is_user_logged_in() || ( is_multisite() && !current_user_can( ‘manage_network_users’ ) && bbp_is_user_home() && !apply_filters( ‘enable_edit_any_user_configuration’, true ) ) || !current_user_can( ‘edit_user’, bbp_get_displayed_user_id() ) ) {
The key portion of that being:
( is_multisite() && !current_user_can( ‘manage_network_users’ ) && bbp_is_user_home() && !apply_filters( ‘enable_edit_any_user_configuration’, true ) )
This appears to be written intending to disable the ability for site admins on a network to edit users. However the code here does not seam to do any tests for what the user id is and who’s currently logged in.
This has the unwanted effect of removing the ability for a normal non-superadmin user to edit their own profile because this code activates when multisite is enabled and doesn’t take the fact they are trying to edit their own profile into account.
I have one portal with 6 subdomains. All in wordpress multisite network. I have also install buddypress and bbpress all in the newest versions.
I want to have only one forum on main site where i will have forums for subdomains blogs. These forums i can create manualy.
The issue is.
How can i get the latest topics from each forum from main site on subdomain blog ?
Do I need to get it from databese or how ?
Please help me
Topic: bbPress Codex
Testing out the new bbPress codex at http://codex.bbpress.org.
I’ll be adding some documents and moving things around soon. Wanted to give a heads up that it’s coming and I’m working on it before officially announcing anything on the blog.
If for some reason you’re not able to edit pages and would like to, drop me a note here and I’ll add you.
Topic: Why bbPress sucks!
Topic: Very confused! Menu Links
Hi,
Apologies, I’m a total noob at this… Sorry also if this is a bit long winded, not sure how best to explain it.
this is my site: http://www.fluvaledgeforum.com
…and this is where my forums lived: http://www.fluvaledgeforum.com/forums/forum/fluval-edge-journals-and-photos/
I am getting really confused…
I had a page on the site titled ‘Forum’ which I was going to redirect, using the redirect plugin, to the bbpress page listing all the forums…
Now for the hard part.
For some reason when you click on the ‘forum’ in the bbpress breadcrumb… it was taking you to the page I was going to redirect. I was thinking that should take you to the root of the forums…. i.e. a list of all of them
At first I thought it was because it had the same URL…. so I changed the page that I was going to redirect, and the assoc. link title to ‘redirect’ – just to test this theory. Alas the root of the forums breadcrumb still took you to this page…http://www.fluvaledgeforum.com/redirect/
Then I thought I might have messed a setting up, so I deleted bbpress and reinstalled the plugin.
Now I have tried adding another forum… according to the admin page it’s published at the following location: http://www.fluvaledgeforum.com/forums/forum/general-aquarium-discussion/
But that comes up as page not found when you click ‘view forum’ in the admin area.
Now I am stumped.
Questions then:
1) how do I get the forums working again with a top level that lists all the forums on the site?
2) how do I add forums to the menu?
Thanks for your help with this…
Hello,
I have one question about forum bbpress on multisite.
I have community site about few games and i have the main site where are buddypress and 6 subsites in subdirectories.
On main site I have 7 forums for each subsite, and I would like to know how to show latest active topics from each section on specific subsite.
Is that possible ?
For example: main site have forums for subsites: Blizzard and EA Games. I want to show on Blizzard subsite latest active topics from specific section on main site forum.
Please help me
I’m uploading a new bbpress theme to:
wp-content/plugins/bbpress/bb-templates
Now what? I go into my admin panel of the site, and go to themes, and see these errors:
1. Your active theme does not include bbPress template files. Your forums are using the default styling included with bbPress.
2. Broken Themes
The following themes are installed but incomplete. Themes must have a stylesheet and a template.
bbPress (Twenty Ten)
The parent theme is missing. Please install the “twentyten” parent theme.
Where do I go to activate the new theme? Am I putting it in the right place?
Site is running the latest wordpress and the latest bbpress plugin.
Please help.
Thanks and god bless.
Hi. I am using BBpress to add a community component to my mostly informational site. What I want is for my forums to:
1) be hidden from nonlogged in members;
2) require members to be able to login and check the 1 forum that I assign to them for updates, WITHOUT having access to someone elses forum.
Is this at all possible through an existing plugin or through some code modification?
I am using wp-members for registration/login stuff. That plugin does have the ability to lock access to pages and posts, but currently, I don’t use those features.
I am also using latest BBpress and WordPress software.
Thank you.
i have done an extensive search on this manner but i have not found anything (so i am hoping its just user error!).
i am using the latest version of bbpress as a plugin with the latest version of wordpress.
I LOVE IT!
however…
i have a privet area (category) in the root of my forum with private forums within. sounds reasonable!
but when i navigate to my forum root, my privet category shows 0 topics and 0 posts (yes i have added topics and posts). even worse, when i click on my privet category, it just says “This category contains 0 topics and 0 replies.” and doesn’t show the forums that live there. (sadface)
even more curious, if a make one of the privet forums with in my privet category, public… then they all show up (both in the root and in the category view)!
this is the case for all roles and accessibility.
can anyone shed some light on what i may be doing wrong?
mike
After finding a lot I have not found a solution for showing more than 1 depth sub forums. So I made some coding.
I changed “<?php bbp_list_forums(); ?>” on file loop-single-forum.php to:
<?php
$before = ‘<ul class=”bbp-forums”>’;
$after = ”;
$link_before = ‘<li class=”bbp-forum”>’;
$link_after = ”;
if ($sublist = bbp_forum_get_subforums($forum_id)) {
echo $before;
foreach ( $sublist as $sub_forum ) {
// Get forum details
$permalink = bbp_get_forum_permalink( $sub_forum->ID );
$title = bbp_get_forum_title( $sub_forum->ID );
echo $link_before . ‘‘ . $title . ‘‘ . $link_after;
if ($sublist2 = bbp_forum_get_subforums($sub_forum->ID)) {
echo $before;
foreach ( $sublist2 as $sub_forum ) {
// Get forum details
$permalink2 = bbp_get_forum_permalink( $sub_forum->ID );
$title2 = bbp_get_forum_title( $sub_forum->ID );
// Build this sub forums link
echo $link_before . ‘‘ . $title2 . ‘‘ . $link_after;
}
}
echo $after;
}
}
echo $after;
?>
So my question is, Is there any way to do that little easier ? Or someone who is looking in the same issue and want give a hand to clean up this code.
A example of the struture I’m looking:
TEST
-TEST_CHILD_1
-TEST_CHILD_2
–TEST_CHILD_CH1
–TEST_CHILD_CH2
-TEST_CHILD_3
Any help will be aprecieted. Thank you.
Hello,
I decided to test out bbPress; unfortunately, I was unable to post a new topic in the first forum I created. I kept on encountering this error each time…
Fatal error: Call to undefined function akismet_get_user_roles() in …/wp-content/plugins/bbpress/bbp-includes/bbp-extend-akismet.php on line 146
Is there any reason this is happening?
I’m having a problem where Admin is able to see their user information and all forum data but all other accounts are directed to a blank page.
This is the “local” address users get sent to http://pcocs/forums/users/skingsford/
This is where admins are directed. http://pcocs/forums/users/admin/
They have “gform_full_access”
I’m using the latest version of wordpress(3.3.1) and bbpress (2.02). I nuked everything related to bbpress including the db entries. reinstalled, and the same issue is occurring.
Disabled all plugins, and re-activated the plugin. Still unable to access user profile as another user. Able to access profile in dashboard.
Rebuilt the permalinks.
No themes, no plugins, just default data.
Any thoughts on what would cause this to occur?
Is there anything I need to do to get the aforementioned caching plugins to invalidate topic pages, forum indexes and so forth when a new reply is posted?
I’ve tried both 2.0.2 and the latest bbPress plugin version from svn and as it stands, posting a new reply does not clear the topic page (or any other forum pages) from the cache so you and nobody else sees your replies.
Just wanted to check if it’s currently a bug / feature or I’m missing something obvious!
