<?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 User Favorites: _ck_</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums User Favorites: _ck_</description>
<language>en</language>
<pubDate>Sat, 30 Aug 2008 07:04:15 +0000</pubDate>

<item>
<title>_ck_ on "Privacy Forum - is it really private?"</title>
<link>http://bbpress.org/forums/topic/privacy-forum-is-it-really-private#post-18772</link>
<pubDate>Fri, 29 Aug 2008 04:39:14 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">18772@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Cookies have nothing to do with reading the forum (unless there's a hidden/private forum). Cookies are about identifying yourself as a registered member and giving you the ability to post. But a secure login method and cookie means that no-one else can pretend to be you.&#60;/p&#62;
&#60;p&#62;The mini-plugin is to prevent Google from showing a &#34;cache&#34; link on your pages when people find results from your website. They'll have to visit your site directly, and if it's a hidden/private forum, they won't be able to just read it through Google's cache (which can't see it anyway, unless someone changes &#34;Hidden Forums&#34; behaviour).
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Privacy Forum - is it really private?"</title>
<link>http://bbpress.org/forums/topic/privacy-forum-is-it-really-private#post-18764</link>
<pubDate>Thu, 28 Aug 2008 20:00:49 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">18764@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I don't see how the cookie has anything to do with google indexing your pages.    Forums hidden with the &#34;Hidden Forums&#34; plugin won't be indexed either.  If you want to prevent anyone (including search engines) from seeing certain forums, protect them with the Hidden Forums plugin.  If you want to prevent search engines from &#60;strong&#62;caching&#60;/strong&#62; public forums, then use the mini-plugin that _ck_ posted.&#60;/p&#62;
&#60;p&#62;To use it as a plugin, just create a plugin file.   The only difference between what _ck_ posted and a full blown plugin is the header.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
/*
Plugin Name: No Archive
Description: Prevent some search engines from caching your forum
*/

function noarchive() {
	echo &#38;quot;\n&#38;quot;.&#38;#39;&#38;lt;meta NAME=&#38;quot;robots&#38;quot; CONTENT=&#38;quot;noarchive&#38;quot;&#38;gt;&#38;#39;.&#38;quot;\n&#38;quot;;
}
add_action(&#38;#39;bb_head&#38;#39;, &#38;#39;noarchive&#38;#39;);
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;&#38;nbsp;&#60;br /&#62;
Now, save that as a file, something like &#34;noarchive.php&#34; and save it in your my-plugins folder.  Active the plugin in the admin and then load a forum page and check the headers to see if it worked.&#60;/p&#62;
&#60;p&#62;_ck_ likes to create one plugin called tweaks.php that contains all these little function tweaks.  Then you just need one header and all the little functions can be dropped into the one file.
&#60;/p&#62;</description>
</item>
<item>
<title>kannued on "Privacy Forum - is it really private?"</title>
<link>http://bbpress.org/forums/topic/privacy-forum-is-it-really-private#post-18759</link>
<pubDate>Thu, 28 Aug 2008 19:21:04 +0000</pubDate>
<dc:creator>kannued</dc:creator>
<guid isPermaLink="false">18759@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;CK, if the password/cookie in 1.0 is the most secure, than that means I wouldn't need the miniplug for the private area to restrict from Google and other search engines like Alexa?&#60;/p&#62;
&#60;p&#62;I have installed Human Test. Now, to the task of deleting all those bozos.&#60;/p&#62;
&#60;p&#62;The miniplug, do I put that into my template header.php? Or does it go into the directory/folder that I want as strictly private?
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Privacy Forum - is it really private?"</title>
<link>http://bbpress.org/forums/topic/privacy-forum-is-it-really-private#post-18753</link>
<pubDate>Thu, 28 Aug 2008 17:39:07 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">18753@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Oh and as far as the rest of bbPress security, the bbPress password/cookie method has never been more secure than the method used in 1.0  (and WP 2.6) It's based on a security researcher's design (first implimented incorrectly in WP 2.5 and bbPress 0.9)
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Privacy Forum - is it really private?"</title>
<link>http://bbpress.org/forums/topic/privacy-forum-is-it-really-private#post-18752</link>
<pubDate>Thu, 28 Aug 2008 17:26:30 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">18752@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;If you don't want Google to make a cached copy of any your forum pages, use this mini-plugin (Google will still scan and return results for your site, it just won't show the &#34;cache&#34; link)&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function noarchive() {echo &#38;quot;\n&#38;quot;.&#38;#39;&#38;lt;meta NAME=&#38;quot;robots&#38;quot; CONTENT=&#38;quot;noarchive&#38;quot;&#38;gt;&#38;#39;.&#38;quot;\n&#38;quot;;
} add_action(&#38;#39;bb_head&#38;#39;, &#38;#39;noarchive&#38;#39;);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Note that some search engines won't obey &#34;noarchive&#34; and give away a cached copy anyway. This includes Alexa  and others. Also note that installing this plugin doesn't make existing &#34;cache&#34; links disappear instantly, Google has to re-scan your site (eventually) and &#60;em&#62;then&#60;/em&#62; &#34;cache&#34; will disappear.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Privacy Forum - is it really private?"</title>
<link>http://bbpress.org/forums/topic/privacy-forum-is-it-really-private#post-18750</link>
<pubDate>Thu, 28 Aug 2008 17:19:11 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">18750@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;There's no hacking involved in that process.&#60;br /&#62;
It's just a simple workaround.&#60;/p&#62;
&#60;p&#62;The foolish forum operators are allowing anyone with the user-agent of &#34;GoogleBot&#34; into their private forums. And/or they are allowing Google to cache their private forums. The reason why they do this is they want Google to send them traffic and the only way they can do that is to let google see the content of the hidden forums.&#60;/p&#62;
&#60;p&#62;bbPress doesn't do this by default and no known plugin does it either, certainly not my &#34;hidden forums&#34; plugin.&#60;/p&#62;
&#60;p&#62;My Mini-Track plugin can tell you the difference between real Google and people pretending to be Google. It's very easy, you just do a rDNS on the ip and see if it goes to a google owned ip block. rDNS is very slow (1-5 seconds) so people don't normally do it by default.&#60;/p&#62;
&#60;p&#62;You wouldn't have to delete the spammer profiles if you didn't let them on in the first place. Install my &#34;Human Test&#34; plugin and 99.9% of them will never register.
&#60;/p&#62;</description>
</item>
<item>
<title>kannued on "Privacy Forum - is it really private?"</title>
<link>http://bbpress.org/forums/topic/privacy-forum-is-it-really-private#post-18747</link>
<pubDate>Thu, 28 Aug 2008 16:50:58 +0000</pubDate>
<dc:creator>kannued</dc:creator>
<guid isPermaLink="false">18747@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I came across these articles that says usernames and passwords do not necessarily mean privacy thanks to Google's cache system. If you have the knowledge, these private areas are easy to hack. I'm wondering how bbpress's privacy plugin stacks up against this hacking. &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://hackforums.net/showthread.php?tid=25040&#34; rel=&#34;nofollow&#34;&#62;http://hackforums.net/showthread.php?tid=25040&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.theregister.co.uk/2008/08/22/accessing_restricted_sites/&#34; rel=&#34;nofollow&#34;&#62;http://www.theregister.co.uk/2008/08/22/accessing_restricted_sites/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;On a slightly related issue:&#60;br /&#62;
I have noticed that ALL profiles in any forum are public. If you keep sequencing then, you can see each person's profile, which means even the spammers that are blocked can still be viewed with their websites, emails, and interests. This unintended promotion bothers me. If I start deleting the spammers profiles, I will just have a lot of work to do. The perfect world is that profiles that are approved should be the only ones available by sequencing.&#60;br /&#62;
ie.&#60;br /&#62;
&#60;a href=&#34;http://www.example.com/forums/profile/1042&#34; rel=&#34;nofollow&#34;&#62;http://www.example.com/forums/profile/1042&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>karlo on "WordPress + bbPress Integration 101"</title>
<link>http://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101/page/3#post-18676</link>
<pubDate>Tue, 26 Aug 2008 17:59:50 +0000</pubDate>
<dc:creator>karlo</dc:creator>
<guid isPermaLink="false">18676@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I've been trying to install and integrate wp 2.5.1 and bbPress 0.9 a couple of times to have both cookie- and userdata integrated, but after removing all databases and configfiles two times in a row and reinstalling I still get this error in my bbPress-installation:&#60;/p&#62;
&#60;p&#62;Duplicate key name 'user_nicename'&#60;br /&#62;
&#38;gt;&#38;gt;&#38;gt; User tables will already exist when performing a database integrated installation.&#60;/p&#62;
&#60;p&#62;What causes this error?
&#60;/p&#62;</description>
</item>
<item>
<title>karlo on "WordPress + bbPress Integration 101"</title>
<link>http://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101/page/3#post-18623</link>
<pubDate>Sun, 24 Aug 2008 16:21:02 +0000</pubDate>
<dc:creator>karlo</dc:creator>
<guid isPermaLink="false">18623@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;*couldn't edit my previous post anymore - hence the double*&#60;/p&#62;
&#60;p&#62;Hehe, I'm mighty proud now! I figured I'd check the config-files for both installation and see whether the information was matched or not (not having any idea what so ever if that could be the problem) and I found the different security-keys wasn't identical - so I fixed that.&#60;/p&#62;
&#60;p&#62;Now I have commenced mapping the role-maps and everything seems to be on track again. Thanks a lot for this guide and for making the systems compatible, saved me (well probably) an immense amount of time!
&#60;/p&#62;</description>
</item>
<item>
<title>karlo on "WordPress + bbPress Integration 101"</title>
<link>http://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101/page/3#post-18620</link>
<pubDate>Sun, 24 Aug 2008 15:14:25 +0000</pubDate>
<dc:creator>karlo</dc:creator>
<guid isPermaLink="false">18620@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Well, the installation (with full wp-integration) went as smooth as it could have, but the index.php doesn't want to load. Not even when fully referred to in the URL (/forums/index.php).&#60;/p&#62;
&#60;p&#62;My ftp-client sees the full installation and the content of the file seems to be ok. What settings could cause this error other than the URL actually not being valid, though I can't figure out why that should be? :P&#60;/p&#62;
&#60;p&#62;EDIT: I found that Firefox can open and read the readme.txt and licence.txt just fine, but it wont execute the php-files properly... this is just wierd?? What the heck did I miss here?
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "WordPress + bbPress Integration 101"</title>
<link>http://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101/page/3#post-18618</link>
<pubDate>Sun, 24 Aug 2008 14:17:29 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">18618@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;If beta is the new stable (thanks Google) then alpha is the new beta?&#60;/p&#62;
&#60;p&#62;In a test installation (just copy all your WordPress files and database) you can't really hurt anything.  Just use it and see if it works enough for you.
&#60;/p&#62;</description>
</item>
<item>
<title>karlo on "WordPress + bbPress Integration 101"</title>
<link>http://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101/page/3#post-18617</link>
<pubDate>Sun, 24 Aug 2008 14:15:59 +0000</pubDate>
<dc:creator>karlo</dc:creator>
<guid isPermaLink="false">18617@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I guess I'll try then, &#34;beta&#34; is the new &#34;stable&#34; nowdays anyway, how bad could it get ^^&#60;/p&#62;
&#60;p&#62;EDIT: wp is installed in /blog, what is the recommended path for the bbPress in that case, if any?
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "WordPress + bbPress Integration 101"</title>
<link>http://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101/page/3#post-18615</link>
<pubDate>Sun, 24 Aug 2008 14:13:52 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">18615@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;My advice would be to install it in a test instance and use it.  See how unstable it is for yourself.  Only you can make the determination if it's ready enough for you or not.
&#60;/p&#62;</description>
</item>
<item>
<title>karlo on "WordPress + bbPress Integration 101"</title>
<link>http://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101/page/3#post-18613</link>
<pubDate>Sun, 24 Aug 2008 14:07:26 +0000</pubDate>
<dc:creator>karlo</dc:creator>
<guid isPermaLink="false">18613@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have a fresh installation of the latest release of Wordpress and integrating it with an installation of bbPress seems to be easy enough for a non-hacker like myself.&#60;/p&#62;
&#60;p&#62;But, how unstable is the 1.0 alpha of bbPress really? The site I'm working on is to be a soon-to-be-released homepage for a choir that will use it mainly for news, recruiting and general talk. Would you rather advice me to go for the wp 2.5.1 + bbPress 0.9 version?
&#60;/p&#62;</description>
</item>
<item>
<title>cesarvirtual on "En español"</title>
<link>http://bbpress.org/forums/topic/en-espanol/page/2#post-18607</link>
<pubDate>Sun, 24 Aug 2008 05:46:02 +0000</pubDate>
<dc:creator>cesarvirtual</dc:creator>
<guid isPermaLink="false">18607@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;tengo un problema, y es que no se me permite el registro de usuarios, me arroja el siguiente mensaje:&#60;/p&#62;
&#60;p&#62;Registration is closed for a while... sorry!&#60;/p&#62;
&#60;p&#62;Cómo habilito la opción?&#60;/p&#62;
&#60;p&#62;aquí la dirección para que vean: &#60;a href=&#34;http://alumnosutalca.syslive.com.ar/register.php&#34; rel=&#34;nofollow&#34;&#62;http://alumnosutalca.syslive.com.ar/register.php&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Agradecería respuesta por este medio y a &#60;a href=&#34;mailto:cesar.rivera.martinez@gmail.com&#34;&#62;cesar.rivera.martinez@gmail.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Saludos.&#60;br /&#62;
Nos estamos topando por aquí.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "how to detect plugins incompatible with bbPress 1.0"</title>
<link>http://bbpress.org/forums/topic/how-to-detect-plugins-incompatible-with-bbpress-10#post-18498</link>
<pubDate>Wed, 20 Aug 2008 11:02:55 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">18498@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I've found another incompatibility&#60;br /&#62;
 in how &#34;tags&#34; are now &#34;terms&#34;.&#60;/p&#62;
&#60;p&#62;Any plugin that accesses tags directly will fail.&#60;/p&#62;
&#60;p&#62;Old plugins can be found by searching for  &#34;-&#38;gt;tags&#34;&#60;br /&#62;
(without the quotes)&#60;/p&#62;
&#60;p&#62;So essentially there are two &#34;dead&#34; tables after upgrading from 0.9 to 1.0  &#34;bb_topicmeta&#34; and  &#34;bb_tags&#34;. But I wouldn't delete them until 1.0 is final/gold.
&#60;/p&#62;</description>
</item>
<item>
<title>matthijs on "WordPress + bbPress Integration 101"</title>
<link>http://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101/page/3#post-18497</link>
<pubDate>Wed, 20 Aug 2008 10:40:14 +0000</pubDate>
<dc:creator>matthijs</dc:creator>
<guid isPermaLink="false">18497@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I've integrated the 1.0 alpha release of BBpress together with WP2.61 successfully in 2 places now. Works great so far. &#60;/p&#62;
&#60;p&#62;What I did: install wp in root the normal way. Then put bb files in subdirectory /forums/. Install bb. Follow instructions carefully. I also made my bb-config file writable, that prevented some errors as well.
&#60;/p&#62;</description>
</item>
<item>
<title>brianbrey on "WordPress + bbPress Integration 101"</title>
<link>http://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101/page/3#post-18491</link>
<pubDate>Wed, 20 Aug 2008 01:46:31 +0000</pubDate>
<dc:creator>brianbrey</dc:creator>
<guid isPermaLink="false">18491@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I can not figure out where i went wrong.. I'm using the latest 1.0 alpha release at 2.6. Everything apperas to work as expected (users exist in both systems, etc). However, the auto login is not working. I believe i followed the instructions to the &#34;T&#34;. Heres the stored cookie for both systems.&#60;/p&#62;
&#60;p&#62;Wordpress cookie after login:&#60;/p&#62;
&#60;p&#62;/r30ab08c19a56be384114b23c09751029b7cf0de2e632d894d28d72e65f7f9f4=paul%7C1219369085%7Cc34a82349db07b4910c7910f399a9524&#60;br /&#62;
wordpress_=brian%7C1219369051%7Cf203245956a5b6a1e75d245128f85ced&#60;br /&#62;
wordpress_test_cookie=WP+Cookie+check&#60;br /&#62;
wordpress_logged_in_=brian%7C1219369051%7C3738545f5bdb765f9ba4f5696e435ff9&#60;br /&#62;
wordpress_logged_in_57ff593b3dd6a2c72983ec37fa6fbe1a=paul%7C1219369085%7C6abf020fe1dc18102166be4e3a709ab1&#60;/p&#62;
&#60;p&#62;BBpress immediatly after logging into wordpress:&#60;/p&#62;
&#60;p&#62;/rwordpress_test_cookie=WP+Cookie+check&#60;br /&#62;
wordpress_logged_in_=brian%7C1219369051%7C3738545f5bdb765f9ba4f5696e435ff9&#60;br /&#62;
wordpress_logged_in_57ff593b3dd6a2c72983ec37fa6fbe1a=paul%7C1219369085%7C6abf020fe1dc18102166be4e3a709ab1&#60;/p&#62;
&#60;p&#62;BBpress (already logged into wordpress, now manually logging into BBPress:&#60;/p&#62;
&#60;p&#62;/rwordpress_test_cookie=WP+Cookie+check&#60;br /&#62;
wordpress_logged_in_=brian%7C1219369051%7C3738545f5bdb765f9ba4f5696e435ff9&#60;br /&#62;
wordpress_logged_in_57ff593b3dd6a2c72983ec37fa6fbe1a=brian%7C1219369533%7C9bc6a13aa1062a28d82bf0c30680253d&#60;/p&#62;
&#60;p&#62;any ideas?&#60;/p&#62;
&#60;p&#62;Cheers!&#60;/p&#62;
&#60;p&#62;Brian
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "WordPress + bbPress Integration 101"</title>
<link>http://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101/page/3#post-18428</link>
<pubDate>Mon, 18 Aug 2008 17:17:51 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">18428@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Good point.  If I could clarify the instructions, I would.  We'll leave the information here 1) for others to see and 2) so the chiefs can see the difficulty some are having and clarify the instructions for all.&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>keress on "WordPress + bbPress Integration 101"</title>
<link>http://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101/page/3#post-18427</link>
<pubDate>Mon, 18 Aug 2008 17:14:51 +0000</pubDate>
<dc:creator>keress</dc:creator>
<guid isPermaLink="false">18427@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Chris wrote:  &#34;Using the same database is how the bbPress directions are written now; I think it's assumed. &#34;&#60;/p&#62;
&#60;p&#62;I thought the installation instructions were vague on this point.  It wasn't at all apparent to me which way I should go, and how o safely proceed with installing it into the wordpress database.  A little editing could be very helpful to others in the future.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "WordPress + bbPress Integration 101"</title>
<link>http://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101/page/3#post-18426</link>
<pubDate>Mon, 18 Aug 2008 16:57:25 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">18426@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This is what it is supposed to mean:&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;&#60;br /&#62;
*one users table in the DB and one login (you write&#60;br /&#62;
 name and password once, and you are logged in the places)&#60;br /&#62;
&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;Seems lots of people lately are having trouble with that.  They idea behind integration is that you can log into either bbPress or WordPress, and you'll be logged in on the other side.  The two installations appear &#34;integrated&#34;, at least from a user login perspective.
&#60;/p&#62;</description>
</item>
<item>
<title>wiseacre on "WordPress + bbPress Integration 101"</title>
<link>http://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101/page/3#post-18423</link>
<pubDate>Mon, 18 Aug 2008 15:11:21 +0000</pubDate>
<dc:creator>wiseacre</dc:creator>
<guid isPermaLink="false">18423@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;What exactly means &#34;WordPress + bbPress Integration&#34;?&#60;br /&#62;
* one users table in the DB&#60;br /&#62;
*one users table in the DB and one login (you write user name and password once, and you are logged in the places)&#60;br /&#62;
* or something else?
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "WordPress + bbPress Integration 101"</title>
<link>http://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101/page/2#post-18415</link>
<pubDate>Mon, 18 Aug 2008 14:20:55 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">18415@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;To install in the same database, you just specify that database's connection details in bb-config.php.  The important thing is to be sure you use a different table prefix for the bbPress installation.  By default, it's bb_ for bbPress and for wp_ for WordPress. Use different table prefixes and you can install as many applications into one database as you want.  Just keep the table prefixes unique.&#60;/p&#62;
&#60;p&#62;To uninstall, yes, just delete the directory with bbPress in it, then &#60;strong&#62;drop the bbPress tables&#60;/strong&#62; from the database.  DO NOT delete the database since you have WordPress in that database as well, right?&#60;/p&#62;
&#60;p&#62;You're probably overthinking it.  Using the same database is how the bbPress directions are written now; I think it's assumed.  The key is to just keep the table prefixes unique and you can put as much stuff in one database as you want.
&#60;/p&#62;</description>
</item>
<item>
<title>keress on "WordPress + bbPress Integration 101"</title>
<link>http://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101/page/2#post-18410</link>
<pubDate>Mon, 18 Aug 2008 13:28:30 +0000</pubDate>
<dc:creator>keress</dc:creator>
<guid isPermaLink="false">18410@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;_ck_ said: &#34;I recommend against separate databases unless you have some kind of weird configuration that demands it.&#34;&#60;/p&#62;
&#60;p&#62;Could you, or someone else, please outline any special instructions on how to go about installing bbpress to the same database that wordpress is already living on?  Or is it just that simple as designating the wp database in the installation?   What can go wrong?  I have visions of destroying our wp installation and losing all our posts and pages.  &#60;/p&#62;
&#60;p&#62;Also, to uninstall bbpress, do I just delete its folder and database?  &#60;/p&#62;
&#60;p&#62;I would suggest adding a paragraph in the installation instructions recommending the single database installation and whatever instructions are necessary on how to properly do this.
&#60;/p&#62;</description>
</item>
<item>
<title>imam.azhari on "WordPress + bbPress Integration 101"</title>
<link>http://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101/page/2#post-18368</link>
<pubDate>Sun, 17 Aug 2008 01:12:13 +0000</pubDate>
<dc:creator>imam.azhari</dc:creator>
<guid isPermaLink="false">18368@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I can log in only through WP for both BB and WP, and also log out: only through WP. I need help how to log in either in WP or BB for both BB and WP, and log out too?
&#60;/p&#62;</description>
</item>
<item>
<title>amnion on "WordPress + bbPress Integration 101"</title>
<link>http://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101/page/2#post-18365</link>
<pubDate>Sat, 16 Aug 2008 15:18:07 +0000</pubDate>
<dc:creator>amnion</dc:creator>
<guid isPermaLink="false">18365@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Is there any way to &#34;undo&#34; an integration?  I integrated WP 2.6 with version 9 before I found this thread and now I can't log into BB press at all.  Just wondering if I can hack in and do something to revert it back.
&#60;/p&#62;</description>
</item>
<item>
<title>jbbrwcky on "WordPress + bbPress Integration 101"</title>
<link>http://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101/page/2#post-18356</link>
<pubDate>Sat, 16 Aug 2008 07:51:11 +0000</pubDate>
<dc:creator>jbbrwcky</dc:creator>
<guid isPermaLink="false">18356@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Just a quick question here, not sure if this is the right thread though.&#60;/p&#62;
&#60;p&#62;I have WP 2.6.1, and last night installed bbpress 1.0 alpha.&#60;/p&#62;
&#60;p&#62;Now when I log in this morning I click the button to 'Log in' and it redirects me back to the login page. The bbpress installation however, I can login to as normal.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "WordPress + bbPress Integration 101"</title>
<link>http://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101/page/2#post-18320</link>
<pubDate>Fri, 15 Aug 2008 15:12:40 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">18320@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Sorry I posted some incorrect/incomplete info. Until  recently, it was only possible to have one database with both the wordpress tables and bbpress tables shared inside.&#60;/p&#62;
&#60;p&#62;It's now possible to force separate databases since 0.9&#60;/p&#62;
&#60;p&#62;However I recommend against separate databases unless you have some kind of weird configuration that demands it. It's just more overhead, more configuration, more to backup and worry about. Some hosts even limit the number of databases you can have (though tables inside are not restricted).
&#60;/p&#62;</description>
</item>
<item>
<title>keress on "WordPress + bbPress Integration 101"</title>
<link>http://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101/page/2#post-18317</link>
<pubDate>Fri, 15 Aug 2008 14:12:43 +0000</pubDate>
<dc:creator>keress</dc:creator>
<guid isPermaLink="false">18317@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I was confused on this issue, reading the installation instructions.  It may be helpful to others to add an explanation there on whether it's preferred to use separate databases and why.  Thanks much.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "WordPress + bbPress Integration 101"</title>
<link>http://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101/page/2#post-18310</link>
<pubDate>Fri, 15 Aug 2008 04:59:49 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">18310@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;In all methods of integration, they both have their own [databases] (correction, &#60;strong&#62;tables&#60;/strong&#62;) and simply share the user table (and usermeta).
&#60;/p&#62;</description>
</item>

</channel>
</rss>
