<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>bbPress support forums: Forum: Plugins - Recent Posts</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums: Forum: Plugins - Recent Posts</description>
<language>en</language>
<pubDate>Thu, 24 Jul 2008 05:03:15 +0000</pubDate>

<item>
<title>csseur3 on "Adapt the "remove max width in admin" for bbPress"</title>
<link>http://bbpress.org/forums/topic/adapt-the-remove-max-width-in-admin-for-bbpress#post-17596</link>
<pubDate>Wed, 23 Jul 2008 20:46:55 +0000</pubDate>
<dc:creator>csseur3</dc:creator>
<guid isPermaLink="false">17596@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I speak about that:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;div.updated,&#60;br /&#62;
div.error,&#60;br /&#62;
div.wrap {&#60;br /&#62;
	margin: 0 1.5em;&#60;br /&#62;
	max-width: 98em;&#60;br /&#62;
}&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;so, i want to add in my plugin the function for put:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;div.updated,&#60;br /&#62;
div.error,&#60;br /&#62;
div.wrap {&#60;/p&#62;
&#60;p&#62;		max-width: none !important;&#60;/p&#62;
&#60;p&#62;}&#60;br /&#62;
&#60;/code&#62;&#60;br /&#62;
it's a little modification but i want to make a plugin for that, and not manually editing the files in bb-admin :)
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Adapt the "remove max width in admin" for bbPress"</title>
<link>http://bbpress.org/forums/topic/adapt-the-remove-max-width-in-admin-for-bbpress#post-17593</link>
<pubDate>Wed, 23 Jul 2008 20:16:20 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">17593@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You want to remove the max width of the whole admin section?  In my installation, the admin section appears to be at max width already (my monitor is at 1280px wide right now.)  It doesn't look like there's any restriction, unless it shows up at wider than 1280px.  Did you look at the css for the admin section?&#60;/p&#62;
&#60;p&#62;&#60;code&#62;~/bbpress/bb-admin/style.css&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "bb_register_view - from SQL to array"</title>
<link>http://bbpress.org/forums/topic/bb_register_view-from-sql-to-array#post-17583</link>
<pubDate>Wed, 23 Jul 2008 16:15:49 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">17583@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I've never figured out how to do direct query setup for views, so what I do is just short-circuit the internal function and write my own.  For example:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;bb_register_view(&#38;quot;highest-rated&#38;quot;,&#38;quot;Topics with the highest rating&#38;quot;,array(&#38;#39;append_meta&#38;#39;=&#38;gt;false,&#38;#39;sticky&#38;#39;=&#38;gt;false));
add_action( &#38;#39;bb_custom_view&#38;#39;, &#38;#39;highest_rated&#38;#39; );

function highest_rated( $view ) {
if ($view==&#38;#39;highest-rated&#38;#39;)  {
        global $bbdb, $topics, $view_count, $page;
	$limit = bb_get_option(&#38;#39;page_topics&#38;#39;);
	$offset = ($page-1)*$limit;
	$where = apply_filters(&#38;#39;get_latest_topics_where&#38;#39;,&#38;quot;WHERE topic_status=0 &#38;quot;);
	$query = &#38;quot; FROM $bbdb-&#38;gt;topics $where &#38;quot;;
	$restrict = &#38;quot; ORDER BY cast(topic_posts as UNSIGNED) DESC LIMIT $limit OFFSET $offset&#38;quot;;

	$view_count  = $bbdb-&#38;gt;get_var(&#38;quot;SELECT count(*) &#38;quot;.$query);
	$topics = $bbdb-&#38;gt;get_results(&#38;quot;SELECT * &#38;quot;.$query.$restrict);
	$topics = bb_append_meta( $topics, &#38;#39;topic&#38;#39; );
}
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;.&#60;br /&#62;
Obviously change the query to your own and that might work for you.   Don't forget to use &#60;code&#62;$bbdb-&#38;gt;bb_ratings&#60;/code&#62; the $bbdb part is critical.
&#60;/p&#62;</description>
</item>
<item>
<title>poioioing on "bb_register_view - from SQL to array"</title>
<link>http://bbpress.org/forums/topic/bb_register_view-from-sql-to-array#post-17568</link>
<pubDate>Wed, 23 Jul 2008 13:33:40 +0000</pubDate>
<dc:creator>poioioing</dc:creator>
<guid isPermaLink="false">17568@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I work with bbPress 0.9.&#60;br /&#62;
Been trying for hours to get this SQL into a view?&#60;br /&#62;
How should the array for bb_register_view() look like?&#60;/p&#62;
&#60;p&#62;SELECT bbt.*, (SELECT COUNT(*) FROM bb_ratings WHERE topic_id=bbt.topic_id) AS counts&#60;br /&#62;
FROM bb_topics bbt, bb_ratings bbr&#60;br /&#62;
WHERE bbt.forum_id = 2 AND bbt.topic_status = 0&#60;br /&#62;
GROUP BY bbt.topic_id&#60;br /&#62;
ORDER BY counts DESC
&#60;/p&#62;</description>
</item>
<item>
<title>csseur3 on "simple way to add TinyMCE to BBpress"</title>
<link>http://bbpress.org/forums/topic/simple-way-to-add-tinymce-to-bbpress#post-17565</link>
<pubDate>Wed, 23 Jul 2008 12:31:42 +0000</pubDate>
<dc:creator>csseur3</dc:creator>
<guid isPermaLink="false">17565@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;hello, i have do that, and i have the buttons at the bottom of the textarea :/&#60;/p&#62;
&#60;p&#62;So, how to habe the buttons in top?&#60;/p&#62;
&#60;p&#62;And the code producted is &#38;lt;p&#38;gt;TEST&#38;lt;/p&#38;gt;  , how to fix that?&#60;/p&#62;
&#60;p&#62;bye,&#60;br /&#62;
and i think it is great if the tinymce is integrated in bbpress, like an option for example :)
&#60;/p&#62;</description>
</item>
<item>
<title>csseur3 on "Adapt the "remove max width in admin" for bbPress"</title>
<link>http://bbpress.org/forums/topic/adapt-the-remove-max-width-in-admin-for-bbpress#post-17564</link>
<pubDate>Wed, 23 Jul 2008 12:13:41 +0000</pubDate>
<dc:creator>csseur3</dc:creator>
<guid isPermaLink="false">17564@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;the original plugin is here: &#60;a href=&#34;http://dd32.id.au/wordpress-plugins/remove-max-width/&#34; rel=&#34;nofollow&#34;&#62;http://dd32.id.au/wordpress-plugins/remove-max-width/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>csseur3 on "Adapt the "remove max width in admin" for bbPress"</title>
<link>http://bbpress.org/forums/topic/adapt-the-remove-max-width-in-admin-for-bbpress#post-17563</link>
<pubDate>Wed, 23 Jul 2008 12:12:28 +0000</pubDate>
<dc:creator>csseur3</dc:creator>
<guid isPermaLink="false">17563@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;i want to add at bbPress the 100% width in admin, like this plugin for wordpress:&#60;/p&#62;
&#60;p&#62;So, the code is:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#60;br /&#62;
add_filter('tiny_mce_before_init', 'rmw_tinymce');&#60;/p&#62;
&#60;p&#62;function rmw_tinymce($init){&#60;/p&#62;
&#60;p&#62;	$init['theme_advanced_resize_horizontal'] = true;&#60;/p&#62;
&#60;p&#62;	return $init;&#60;/p&#62;
&#60;p&#62;}&#60;/p&#62;
&#60;p&#62;add_action('admin_head','rmw_head',99); //Hook late after all css has been done&#60;/p&#62;
&#60;p&#62;function rmw_head(){&#60;/p&#62;
&#60;p&#62;	global $is_IE; ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;style type=&#34;text/css&#34; media=&#34;all&#34;&#38;gt;&#60;/p&#62;
&#60;p&#62;	.wrap, &#60;/p&#62;
&#60;p&#62;	.updated,&#60;/p&#62;
&#60;p&#62;	.error,&#60;br /&#62;
	.widefat,&#60;/p&#62;
&#60;p&#62;	#the-comment-list td.comment {&#60;/p&#62;
&#60;p&#62;		max-width: none !important;&#60;/p&#62;
&#60;p&#62;	}&#60;/p&#62;
&#60;p&#62;&#38;lt;?php if( $is_IE ){ ?&#38;gt;&#60;/p&#62;
&#60;p&#62;	* html #wpbody { &#60;/p&#62;
&#60;p&#62; 		_width: 99.9% !important; &#60;/p&#62;
&#60;p&#62; 	}&#60;/p&#62;
&#60;p&#62;&#38;lt;?php } ?&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;/style&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;?php } ?&#38;gt;&#60;br /&#62;
&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;but not works for bbPress... what can i do for the plugin works?&#60;/p&#62;
&#60;p&#62;bye
&#60;/p&#62;</description>
</item>
<item>
<title>kapre on "trick to fix some email problems with 0.8.x plugins on 0.9.x"</title>
<link>http://bbpress.org/forums/topic/trick-to-fix-some-email-problems-with-08x-plugins-on-09x#post-17503</link>
<pubDate>Tue, 22 Jul 2008 00:52:52 +0000</pubDate>
<dc:creator>kapre</dc:creator>
<guid isPermaLink="false">17503@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Does this plugin available? I hope you may also include Swift Mailer.  I can not put my bbpress on due to this problem.  I'm just using a free hosting.  Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>kapre on "Is there an Approve Registration plugin?"</title>
<link>http://bbpress.org/forums/topic/is-there-an-approve-registration-plugin#post-17498</link>
<pubDate>Tue, 22 Jul 2008 00:07:19 +0000</pubDate>
<dc:creator>kapre</dc:creator>
<guid isPermaLink="false">17498@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;hi my server does not have a smtp server is there anyone here who do have something for this? Maybe a plugin where the password can be shown after the registration is made&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>Detective on "User Based Capabilities"</title>
<link>http://bbpress.org/forums/topic/user-based-capabilities#post-17450</link>
<pubDate>Sun, 20 Jul 2008 17:07:56 +0000</pubDate>
<dc:creator>Detective</dc:creator>
<guid isPermaLink="false">17450@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This would be great!
&#60;/p&#62;</description>
</item>
<item>
<title>Detective on "Ajax Quote (or "Quote Extended"):"</title>
<link>http://bbpress.org/forums/topic/ajax-quote-or-quote-extended#post-17449</link>
<pubDate>Sun, 20 Jul 2008 17:07:14 +0000</pubDate>
<dc:creator>Detective</dc:creator>
<guid isPermaLink="false">17449@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I found a bug (or perhaps a missing feature). In multipage topics, the plugin works only in the last page. I'll try to fix this...
&#60;/p&#62;</description>
</item>
<item>
<title>Detective on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-17448</link>
<pubDate>Sun, 20 Jul 2008 17:06:26 +0000</pubDate>
<dc:creator>Detective</dc:creator>
<guid isPermaLink="false">17448@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I don't know how to do it on the same, but you could easily make a &#60;code&#62;$bbdb-&#38;gt;query&#60;/code&#62; call with your own query.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "User Based Capabilities"</title>
<link>http://bbpress.org/forums/topic/user-based-capabilities#post-17445</link>
<pubDate>Sun, 20 Jul 2008 05:11:13 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">17445@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I am working on a plugin for this.&#60;br /&#62;
It's fairly straightforward and would appear in the same profile edit area as the &#34;throttle&#34; override option.
&#60;/p&#62;</description>
</item>
<item>
<title>njsuperfreak on "Create a text area or drop down in the User Registration Signup"</title>
<link>http://bbpress.org/forums/topic/create-a-text-area-or-drop-down-in-the-user-registration-signup#post-17375</link>
<pubDate>Thu, 17 Jul 2008 01:46:10 +0000</pubDate>
<dc:creator>njsuperfreak</dc:creator>
<guid isPermaLink="false">17375@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Nevermind I figured it out using    if ( $key == '' ){
&#60;/p&#62;</description>
</item>
<item>
<title>njsuperfreak on "Create a text area or drop down in the User Registration Signup"</title>
<link>http://bbpress.org/forums/topic/create-a-text-area-or-drop-down-in-the-user-registration-signup#post-17374</link>
<pubDate>Thu, 17 Jul 2008 01:33:55 +0000</pubDate>
<dc:creator>njsuperfreak</dc:creator>
<guid isPermaLink="false">17374@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hello all,&#60;/p&#62;
&#60;p&#62;I have downloaded and installed the plug-in &#34;Required Fields In bbPress&#34; and that works great but how can I create a text area, or drop down list instead of a input? Any ideas ?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Open BBPress in a WP page? Possible?"</title>
<link>http://bbpress.org/forums/topic/open-bbpress-in-a-wp-page-possible#post-17346</link>
<pubDate>Wed, 16 Jul 2008 18:44:52 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">17346@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I think you can download ThemePress here:&#60;br /&#62;
&#60;a href=&#34;http://www.adityanaik.com/integratepress-part-i/&#34; rel=&#34;nofollow&#34;&#62;http://www.adityanaik.com/integratepress-part-i/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>agentmaximus on "Open BBPress in a WP page? Possible?"</title>
<link>http://bbpress.org/forums/topic/open-bbpress-in-a-wp-page-possible#post-17340</link>
<pubDate>Wed, 16 Jul 2008 12:47:17 +0000</pubDate>
<dc:creator>agentmaximus</dc:creator>
<guid isPermaLink="false">17340@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I can vouch for ThemePress. It is an excellent solution imho. I am using it on a site that is still in the development stage. It is quite easy to use. It is also much better than trying to make separate bbPress and wordpress themes similar.
&#60;/p&#62;</description>
</item>
<item>
<title>Null on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-17304</link>
<pubDate>Tue, 15 Jul 2008 16:49:58 +0000</pubDate>
<dc:creator>Null</dc:creator>
<guid isPermaLink="false">17304@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Ok (just asking this cause i am working on a plugin myself), but how about the next step. I have this to create a table if it doens't excist:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;bb_register_activation_hook(__FILE__, &#38;#39;bbmenu_install_check&#38;#39;);

function bbmenu_install_check() {
	global $bbdb;

	$bbdb-&#38;gt;hide_errors();
	$installed = $bbdb-&#38;gt;get_results(&#38;quot;show tables like &#38;quot;.$bbdb-&#38;gt;prefix.&#38;quot;bbmenu&#38;quot;);

	if ( !$installed ) :
		$bbdb-&#38;gt;query(&#38;quot; CREATE TABLE IF NOT EXISTS &#38;lt;code&#38;gt;&#38;amp;quot;.$bbdb-&#38;gt;prefix.&#38;amp;quot;bbmenu&#38;lt;/code&#38;gt; (
			&#38;lt;code&#38;gt;item_id&#38;lt;/code&#38;gt; INT(3) NOT NULL AUTO_INCREMENT,
			&#38;lt;code&#38;gt;item&#38;lt;/code&#38;gt; varchar(50) NOT NULL default &#38;#39;&#38;#39;,
			&#38;lt;code&#38;gt;set&#38;lt;/code&#38;gt; varchar(50) NOT NULL default &#38;#39;&#38;#39;,
			&#38;lt;code&#38;gt;page&#38;lt;/code&#38;gt; varchar(50) NOT NULL default &#38;#39;&#38;#39;,
			&#38;lt;code&#38;gt;location&#38;lt;/code&#38;gt; varchar(50) NOT NULL default &#38;#39;&#38;#39;,
			&#38;lt;code&#38;gt;order&#38;lt;/code&#38;gt; int(9) NOT NULL default &#38;#39;0&#38;#39;,
			PRIMARY KEY  (&#38;lt;code&#38;gt;item_id&#38;lt;/code&#38;gt;)
			)&#38;quot;);
	endif;
	$bbdb-&#38;gt;show_errors();
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;But I also want to put some data in it:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;quot;INSERT INTO&#60;/code&#62;$bbdb-&#38;gt;menu` VALUES&#60;br /&#62;
	(DEFAULT, 'Forums', 'active', 'index.php', 'front-page', 0),&#60;br /&#62;
	(DEFAULT, 'Search', 'active', 'search.php', 'search-page', 1),&#60;br /&#62;
	(DEFAULT, 'Statistics', 'inactive', 'statistics.php', 'stats-page', 0);&#34;;`&#60;/p&#62;
&#60;p&#62;How to do this in the same query?
&#60;/p&#62;</description>
</item>
<item>
<title>Detective on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-17300</link>
<pubDate>Tue, 15 Jul 2008 14:25:45 +0000</pubDate>
<dc:creator>Detective</dc:creator>
<guid isPermaLink="false">17300@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Because that tries to get the instance variable 'privatemessages' from $bbdb. As that variable doesn't exists, it returns null.
&#60;/p&#62;</description>
</item>
<item>
<title>Null on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-17294</link>
<pubDate>Tue, 15 Jul 2008 10:51:00 +0000</pubDate>
<dc:creator>Null</dc:creator>
<guid isPermaLink="false">17294@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;So why not use:&#60;br /&#62;
&#60;code&#62;$bbdb-&#38;gt;privatemessages&#60;/code&#62; or doesn't this work anymore?
&#60;/p&#62;</description>
</item>
<item>
<title>Detective on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-17281</link>
<pubDate>Mon, 14 Jul 2008 20:56:35 +0000</pubDate>
<dc:creator>Detective</dc:creator>
<guid isPermaLink="false">17281@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#60;code&#62;$bbdb-&#38;gt;prefix&#60;/code&#62; is a string containing your installation db prefix.
&#60;/p&#62;</description>
</item>
<item>
<title>Null on "Private Messaging Extended"</title>
<link>http://bbpress.org/forums/topic/private-messaging-extended#post-17274</link>
<pubDate>Mon, 14 Jul 2008 12:50:40 +0000</pubDate>
<dc:creator>Null</dc:creator>
<guid isPermaLink="false">17274@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;HI,&#60;/p&#62;
&#60;p&#62;The installation file contains:&#60;br /&#62;
&#60;code&#62;$bbdb-&#38;gt;prefix.&#38;quot;privatemessages&#38;quot;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;What does this prefix. do? Or where does it stand for? Is prefix the bb_ in the database? I believe not since $bbdb doest this already, so what is it?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>parthatel on "Adding First Post to the Topic Information?"</title>
<link>http://bbpress.org/forums/topic/adding-first-post-to-the-topic-information#post-17257</link>
<pubDate>Sun, 13 Jul 2008 20:38:02 +0000</pubDate>
<dc:creator>parthatel</dc:creator>
<guid isPermaLink="false">17257@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;By default, when a user creates a new topic, it becomes the first post in that topic. At the top of each topic is the area where the title, last poster, add to favorites, etc.. are. I want to add that first post into that area. How do I do this or where is the place to get the initial post.&#60;/p&#62;
&#60;p&#62;In this case, there would be no replies when the topic is first created. How do I make it so that if there are no replies, it would say &#34;Be the first to reply&#34;?&#60;/p&#62;
&#60;p&#62;Thank You.
&#60;/p&#62;</description>
</item>
<item>
<title>dgallinat on "Open BBPress in a WP page? Possible?"</title>
<link>http://bbpress.org/forums/topic/open-bbpress-in-a-wp-page-possible#post-17194</link>
<pubDate>Fri, 11 Jul 2008 15:00:02 +0000</pubDate>
<dc:creator>dgallinat</dc:creator>
<guid isPermaLink="false">17194@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Themepress seems to be the easiest way. Working under wp 2.5.1 and bb 0.9.0.2. I found it &#60;a href=&#34;http://adityanaik.com/integratepress-part-i/&#34;&#62;here&#60;/a&#62;.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Automated Backup Plugin?"</title>
<link>http://bbpress.org/forums/topic/automated-backup-plugin#post-17171</link>
<pubDate>Thu, 10 Jul 2008 07:50:42 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">17171@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It's great that you have shell access.  You can backup all the files with something like rsync, and you can use a shell script to backup the database tables you want.  Since there are no wildcards in mysqldump, you will need to explicitly name all the tables in your installation; just separate them with spaces.&#60;/p&#62;
&#60;p&#62;You can put something like this into a bash script and run it daily (or whenever) from cron:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;mysqldump --add-drop-table -h host -u user -p password dbname \
( bb_forums \
bb_meta \
bb_posts \
bb_tagged \
bb_tags \
bb_terms \
bb_term_relationships \
bb_term_taxonomy \
bb_topics \
bb_topicmeta \
bb_users \
bb_usermeta ) &#124; bzip2 -c &#124; bbpress.bak.sql.bz2&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#38;nbsp;&#60;/p&#62;
&#60;p&#62;You would have to consider putting the password into the script and hiding that from prying eyes.  Alternatively, you could create a user with limited privileges and no password, and use that in the backup script.&#60;/p&#62;
&#60;p&#62;You should also verify the table prefix, and that those are all your bbPress tables.  I think there are different tables for different bbPress versions.&#60;/p&#62;
&#60;p&#62;Good luck.
&#60;/p&#62;</description>
</item>
<item>
<title>ashes999 on "Automated Backup Plugin?"</title>
<link>http://bbpress.org/forums/topic/automated-backup-plugin#post-17148</link>
<pubDate>Wed, 09 Jul 2008 16:24:13 +0000</pubDate>
<dc:creator>ashes999</dc:creator>
<guid isPermaLink="false">17148@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Yeah, I have shell access...&#60;/p&#62;
&#60;p&#62;I had a shell script before to back up my whole schema; but I just want to back up the bbpress schema now, not the wordpress schema.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Automated Backup Plugin?"</title>
<link>http://bbpress.org/forums/topic/automated-backup-plugin#post-17144</link>
<pubDate>Wed, 09 Jul 2008 14:17:38 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">17144@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Do you have access to a shell at your host?  If so, you can do it pretty easily.  If not, I don't know of an automatic backup plugin for bbPress.
&#60;/p&#62;</description>
</item>
<item>
<title>ashes999 on "Automated Backup Plugin?"</title>
<link>http://bbpress.org/forums/topic/automated-backup-plugin#post-17142</link>
<pubDate>Wed, 09 Jul 2008 13:27:51 +0000</pubDate>
<dc:creator>ashes999</dc:creator>
<guid isPermaLink="false">17142@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Wordpress has a great plugin called wp-backup that allows you to schedule a nightly backup of your database.  Is there something similar for bbPress?  If not, how should I back up my data regularly?
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "WP/BB Integration Admin problem"</title>
<link>http://bbpress.org/forums/topic/wpbb-integration-admin-problem#post-17138</link>
<pubDate>Wed, 09 Jul 2008 02:57:19 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">17138@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;chrishajer speaks truth.&#60;/p&#62;
&#60;p&#62;We should probably check for this and stop it on install/integration.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "WP/BB Integration Admin problem"</title>
<link>http://bbpress.org/forums/topic/wpbb-integration-admin-problem#post-17124</link>
<pubDate>Tue, 08 Jul 2008 21:21:43 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">17124@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;To anyone reading in the future:&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Please&#60;/strong&#62; use different table prefixes for bbPress and WordPress.   bb_ for bbPress and wp_ for WordPress are the defaults, for good reason.  You can change them to something else if you like, but make sure they are different for WordPress, bbPress, and anything else you might install in that database.&#60;/p&#62;
&#60;p&#62;Integration does not require the same table prefix, and using the same table prefix means bbPress will try to use WordPress tables (of the same name) that have already been created.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
