Do you need Wordpress in order to use this plugin? I tried using it, and I don't use Wordpress on my forum web site. It gave me an error when I tried activating the plugin.
bbPress plugin browser »
Bbpress Latest Discussion (0.9)
Download
Version: 0.9
Last Updated: 2007-4-25
Requires bbPress Version: 0.8 or higher
Compatible up to: 0.8
Average Rating





Your Rating
Author: Atsutane Shirane
-
Posted: 4 months ago #
-
does this plugin still work for wp2.5/bbpress 0.9.1?
Posted: 3 months ago # -
Anda barbaro esto!
Muchas Graciasse puede ver en funcionamiento en http://www.argentinoZ.com
nice dude!!
working correctly at http://www.argentinoZ.com
Regards from Argentina!
Posted: 2 months ago # -
It's a WordPress widget to display the Latest Discussion of BBPress
Posted: 2 months ago # -
Is it working with WordPress Mu?
Posted: 1 month ago # -
great plugin thanx.
Posted: 3 weeks ago # -
Hello,
I have a website wp running on root and bbpress on /forum.
I like to have latest topics on my wp front page, on the sidebar.
I have tried to use this plugin but can't have it activated !?! There is a problem and does not activate.
As I understand, I have to make changes here:
function bbld_install() {
if (get_option('wpbb_status') == FALSE) {
$bbpath = '/bbpress'; // Adjust the path to suit your bbpress location. Example: '/forums'
$wpbburl = get_settings('home') . $bbpath;
update_option('wpbb_path', $wpbburl);
$forum_slimit = '10'; // Adjust the limit to show
update_option('wpbb_limit', $forum_slimit);
$bbdb_prefix = 'bb_'; // Set Bbpress Prefix
update_option('wpbb_bbprefix', $bbdb_prefix);
$limit = '100';
update_option('wpbb_slimit', $limit);
update_option('wpbb_permalink', false);
update_option('wpbb_intergrated', false);
update_option('wpbb_exdb', false);
update_option('wpbb_dbuser', DB_USER);
update_option('wpbb_dbpass', DB_PASSWORD);
update_option('wpbb_dbname', DB_NAME);
update_option('wpbb_dbhost', DB_HOST);
$install_status = 'install';
update_option('wpbb_status', $install_status);
update_option('wpbb_lastposter', true);
update_option('wpbb_inside', true);
}
}### Function: Add Option Page
add_action('admin_menu', 'wpbb_add_pages');
function wpbb_add_pages() {
add_options_page(__("BBpress Latest Discussions Option"), __('BbLD Option'), 8, __FILE__, 'wp_bb_option');
}### Function: Trim some text
function wpbb_trim($paragraph, $limit) {
$original = strlen($paragraph);
if ($original > $limit) {
$text = substr($paragraph, 0, $limit) . " [...]";
}
else {
$text = $paragraph;
}
return $text;
}### Function: BBpress Latest Discussions Option
function wp_bb_option() {
global $wpdb,$BbLD_version;
$ori_url = $_SERVER['REQUEST_URI'];
if ($_POST['wpbb_save']){
$test = $_POST['bburl'];
update_option('wpbb_path', $test);
update_option('wpbb_slimit', $_POST['bbslimit']);
update_option('wpbb_limit', $_POST['bblimit']);
update_option('wpbb_permalink', $_POST['wpbb_permalink']);
update_option('wpbb_intergrated', $_POST['wpbb_intergrated']);
update_option('wpbb_bbprefix', $_POST['bbprefix']);
update_option('wpbb_exdb', $_POST['use_outdb']);
update_option('wpbb_dbuser', $_POST['bbuser']);
update_option('wpbb_dbpass', $_POST['bbpass']);
update_option('wpbb_dbname', $_POST['bbname']);
update_option('wpbb_dbhost', $_POST['bbhost']);
update_option('wpbb_lastposter', $_POST['wpbb_lastposter']);
update_option('wpbb_inside', $_POST['wpbb_inside']);
update_option('wpbb_exclude', $_POST['wpbb_exclude']);
$update_msg = "<div id='message' class='updated fade'><p>BBpress Latest Discussions options saved successfully.</p></div>";
}But when I enter all the necessary info here, the plugin does not work?!!
Can someone please help? I am using wordpress 2.3.3 and bbpress 8.3 version.
Posted: 2 weeks ago # -
I forgot to mention that, bbpress and wp are separate and have different databases.
Website: www.Trabzonspor.mobi
Posted: 2 weeks ago #
Add a Comment
You must log in to post.