Search Results for 'test'
-
Search Results
-
Topic: Caching
I’m trying to setup a really basic forum for the first time i WordPress, but I must admit that it has shown more difficult than first expected.
Well after hours of bug finding I’m down to one problem, which is that BBpress doesn’t refresh when you make a post. The problem seems to be related to caching, cause when I disable caching in Chrome it works. No matter what I do I however just can’t seem to figure our how to make my browsers (firefox + Chrome) not cache the page in the first time.
The test forum is located here:
http://www.big-data-forum.org/?forum=big-data-3bbPress Version 2.2.4
Wordpress Version 3.5.1To post you have to login with:
Usr: Test
Passw.: 123456Hope that somebody can help me out 🙂
Best regards
TobiasHey everyone,
I’ve been trying to figure this out for quite some time, but it seems that I still need your help.
This error appears on creating new topics on every version of bbPress after 2.0.3. As this seems to be a nonce related issue, would you be so kind to tell me if there were any major changes in the nonce handling for versions after 2.0.3? I’m stuck with this version and I’d like to benefit from all the nice features these latest versions came with.
Please let me know what kind of details you need in order to help me sort this out. Thanks a lot!
Hi all,
New install: WordPress 3.5.1 MU joint Network with x7 Mapped domains
New install: Buddypress 1.6.4 Running all sites on Dynamix WP/BP theme
New install: BBPress 2.2.4 With Network & Group forums configured.
Buddypress has been installed ‘without’ the discussion forums tab enabled.
<code>define( ‘BP_ENABLE_MULTIBLOG’, true );</code> Is located in wp-config.
Other plugins installed all network enabled: Â WP SEO (Yoast), WPMU Domain Mapping, Ultimate coming soon page & Join my multisite.
Followed all Buddypress and BBPress latest instructions to the letter!
I can create new forums, and group forums with no problems. All forums and groups are traceable throughout all MU sites with no problems and I have used bp-custom-php with;
<code><?php
/* This fixes the MULTIBLOG avatar problem */
function nfm_bp_avtar_upload_path_correct($path){
if ( bp_core_is_multisite() ){
// Â $path = ABSPATH . get_blog_option( BP_ROOT_BLOG, ‘upload_path’ );
$path = ABSPATH . ‘wp-content/uploads/’;
}
return $path;
}
add_filter(‘bp_core_avatar_upload_path’, ‘nfm_bp_avtar_upload_path_correct’, 1);
function nfm_bp_avatar_upload_url_correct($url){
if ( bp_core_is_multisite() ){
$url = get_blog_option( BP_ROOT_BLOG, ‘siteurl’ ) . “/wp-content/uploads”;
}
return $url;
}
add_filter(‘bp_core_avatar_url’, ‘nfm_bp_avatar_upload_url_correct’, 1);
?></code>
To carry user and group avatars throughout all networks.
Problem being, once a forum post is created I’ as keymaster cannot Edit, Close, Stick, Merge Trash or Spam “Any” forum posts. The page just refreshes without any actions taking place.
I have read two other posts relating to this similar/same issue, one from over a year ago, and one from as little as two weeks ago, both without solution, one without any replies.
Further to the above, I have noted that BBPress is not sending emails out on replies to forum posts with the Notify me of follow-up replies via email tab checked.
I sincerely hope someone may be able to help shed some light on this issue as it is really going to render my project useless if I can’t manage to resolve it.
I’m happy to offer a bbpress admin, administrative access to my site if they feel they may be able to assist in some way.
Here’s hoping .. !
Regards,
Sped
Hey all,
I am looking to launch my project very shortly:
REMOVED URLcurrently i am only working on my localhost but am looking to start working / testing on a live server.Currently i am using the latest stable release.. but am considering installing the latest beta version.. I am looking to do several customizations to my bbpress installation so basically i was wondering if i do install the latest beta version and begin working / modifying templates etc.. will i be able to upgrade to bbPress 2.3 easily enough once it is released ?
Thanks in advance for any assistance on this topic.
Regards, Darren
I’m testing bbPost, so obviously I do not know it! I made a tryal here: http://www.coalize.it/wordpress2/
In the sidebar on the right, one can see a link to the forum(s): when you click it not being a User you may read the simple test message of the Forum, while if you enter as a User (via facebook, or Google), you can see nothing more! No message, no Forum, nothing.
Strange enough, the title of the Forum says “Comments Disabled”, and I didn’t willing disable them!
Where do I’m doing wrong?
Thank you.I have a few questions that I was hoping one of the bbPress developers would be able to give me a quick hint about offhand.
I’m getting results that leave me completely puzzled, as I try to hook into or directly modify the `bbp_get_caps_for_role()` function in `/core/capabilities.php`.
The `bbp_get_caps_for_role` filter
My purpose is to try and return an array with true on all caps for any role, because I need to find out why only the keymaster gets to upload images.My first attempt is just to use the `’bbp_get_caps_for_role’` filter provided by the function. This is where the mysterious stuff starts…
I can add the filter, and when I check the `$wp_filters` global afterwards, I can verify that the filter has been added correctly. However it doesn’t fire. When I check the `$wp_filters` array inside the `bbp_get_caps_for_role()` function, just before the hook is applied, my filter has vanished. So somewhere there must be a function removing my filter. But where, and why!?
Testing by returning the `$caps` array with all caps set to `true`
So giving up on the filter for now, I simply try to hardcode the all-true `$caps` array directly into the `bbp_get_caps_for_role()` function and returns this, regardless of role. What then happens is even weirder. – Now my user can not even post a reply in the forum.How can setting all caps to true end up giving my user less rights in the forum?!
Thanks in advance guys!
For reference, here is the bottom part of my hacked `bbp_get_caps_for_role()` function:
`
…
‘assign_topic_tags’ => true,
);break;
}$caps = array(
// Keymasters only
//’keep_gate’ => true,// Primary caps
‘spectate’ => true,
‘participate’ => true,
‘moderate’ => true,
‘throttle’ => true,
‘view_trash’ => true,// Forum caps
‘publish_forums’ => true,
‘edit_forums’ => true,
‘edit_others_forums’ => true,
‘delete_forums’ => true,
‘delete_others_forums’ => true,
‘read_private_forums’ => true,
‘read_hidden_forums’ => true,// Topic caps
‘publish_topics’ => true,
‘edit_topics’ => true,
‘edit_others_topics’ => true,
‘delete_topics’ => true,
‘delete_others_topics’ => true,
‘read_private_topics’ => true,// Reply caps
‘publish_replies’ => true,
‘edit_replies’ => true,
‘edit_others_replies’ => true,
‘delete_replies’ => true,
‘delete_others_replies’ => true,
‘read_private_replies’ => true,// Topic tag caps
‘manage_topic_tags’ => true,
‘edit_topic_tags’ => true,
‘delete_topic_tags’ => true,
‘assign_topic_tags’ => true
);return $caps;
//return apply_filters( ‘bbp_get_caps_for_role’, $caps, $role );
}
`Hoping someone can confirm this bug to avoid this issue being skipped for the 2.3 release since it is considered critical
———————–
john the admin creates group1 – jane creates group2 (private)when jane visits group2 to create a forum post, it is posted to group1 and everyone can view the private forum post.
tested twice with new installs wordpress 3.5.1 + buddypress trunk-6779 + bbpress trunk 4761
jane is a standard user (participant)
I am trying to do something which i feel should be pretty simple.
I want to make forum/topics that are only visible and accessible by certain users i can determine myself.
For instance one forum/topic that only 2 forum users say “john” and “paul” have access to along with our admin.
There does not appear to be a way of doing this and i have tried most of the plugins the last 4 days of googling have provided.
Surely im missing something simple?
Im using the latest versions of wordpress and bbpress, just downloaded this week.
The forum in question – though not live, can be seen here: http://69.195.124.85/~youngmo7/12/shortcode-forums/
Any help or advice is greatly appreciated.
Thanks
Topic: BBpress Post Editor
Hey all,
How would one go about extending the default BBpress post editor ? I would like my users to be able to add images and links.. the current editor seems very basic (I am using the latest version of BBpress)..
Even the editor used here on bbpress.org is much better than the default one.
Thanks in advanced for any assistance on this matter.
Regards, Darren
Topic: Shortcodes don't work
Topic: Limit of the latest topics
Hi,
I want to display recent 5 topics on the sidebar so I used bbp_has_topics() loop but I don’t know how to display only 5 posts. On the forums I have 20 topics per page.
Topic: Links in posting
Whenever I create a post in a forum and add a web link, the link disappears (as does the text enclosed in the tags) from the post.
See here for example http://c3wales.org/forums/topic/test/
The site is WP 3.5.1, BBpress is 2.2.4
Theme is convention by WPZoomThanks