Search Results for 'test'
-
Search Results
-
Hello, I have several categories, with subforums. When a user clicks on the category they are taken to a page that shows the subforums for that category. I would also like to add a “Latest Discussions” listing that pulls recent posts from that category to this page. Any idea how how this can be done? Thanks.
Greetings,
I just installed BBPress today and was totally psyched because I have heard such great things about the WordPress products.
But . . . I am having major problems:
– New user testing – password doesn’t work. Login failed.
– I created forums and when I select the topic I get a “The requested document was not found on this server.” error.
– When I select a user profile (including mine) I get the same error.
– This is where it is strange and makes me think that maybe I need to reinstall the whole thing. I can’t create a new post. Nowhere does it say “Create post” on the forums.
I did install the Approve User Registration plugin by Aditya Naik, but I deactivated it and I am still having the above problems.
Thoughts?
thanks in advance,
Jeff
Just made a query in my forum functions.php to display the 5 latest stories from WordPress. Pretty basic but it may help someone:
// get WP news
function wpnews() {
global $bbdb;
$stories = $bbdb->get_results("SELECT post_title, guid, post_date_gmt FROM wp_posts WHERE post_type='post' AND post_status='publish' ORDER BY post_date_gmt DESC LIMIT 0,4");
foreach ($stories as $story) {
if ($i <= 4) {
echo '<li><a href="' . $story->guid . '">' .$story->post_title . '</a></li>';
$i++;
}
}
}then call it on your forum with <?php wpnews() ?> and style to suit.
Topic: Instant Password
Hey All,
I posted this here…
http://bbpress.org/plugins/topic/instant-password/
but was wondering if anyone else had the same problem. I set up the instant password plugin and tried to set up a test accound but kept on getting a ‘password is too short’ message – no matter what I type in.
Thanks!
I’ve got this plugin up to something testable and releaseable. v0.21
Description
Enable BuddyPress group forum features in bbPress.
BuddyPress has three types of groups. Public, Private and Hidden. In all three cases users must be members of a group to participate in group forum conversations.
These two plugins modify a standard bbPress forum installation to allow BuddyPress group members to carry on discussions in bbPress.
BuddyPress public groups will be read only in bbPress. Anyone wishing to participate in a public group discussion must be a member of that group in bp.
BuddyPress private and hidden groups will be hidden in bbPress. Only members of these groups will see the forums and be able to participate.
BuddyPress group admins and mods have moderator privileges in bbPress. The moderator role is restricted to their group forum.
Read more and download:
http://code.ourcommoninterest.org/2009/02/14/buddypress-group-forums-for-bbpress/
Hi all
After upgrading:
WP2.5 -> 2.7
BBPress 0.9.4 -> 1.0 alpha 6
WP is running badly.
In order to get access to functions of BBPress, I have these lines at the end of wp-config.php:
if ( !defined('BBDB_NAME') )require_once(ABSPATH.'forum/bb-load.php');
Into the index.php of my WP theme, I wish to display the last topics of the forums, by doing:
<?php$forums = get_forums();
$topics = get_latest_topics();
$super_stickies = get_sticky_topics();
for ($i=0;$i<3;$i++){
$topic = $topics[$i];
?>
" title="See the message of <?php topic_author();?>"><?php topic_title();
<?php } ?>
The display of the latest messages was working well and still working well after the upgrade, BUT WORDPRESS GETS INTO TROUBLE:
– the css style for the back admin of WP is not working
– the hooks into the plugins are not called anymore (add_action(‘wp_head’, ‘init_js’); where init_js() is never run)
– custom query vars are not detected into the url
Well, when I remove the require_once into the wp-config.php (see below), the trouble disappear.
//if ( !defined('BBDB_NAME') )//require_once(ABSPATH.'forum/bb-load.php');
How to get it working with the bbpress function without trouble in WP ?
I think this is a very important point for the BBPress integration in WordPress
Thanks