<?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 Tag: MU</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Tag: MU</description>
<language>en</language>
<pubDate>Wed, 03 Dec 2008 00:17:21 +0000</pubDate>

<item>
<title>matjack1 on "wpmu 1.5.1 + bbpress 0902 Login Cookie Solved!"</title>
<link>http://bbpress.org/forums/topic/wpmu-151-bbpress-0902-login-cookie-solved#post-17323</link>
<pubDate>Tue, 15 Jul 2008 21:48:52 +0000</pubDate>
<dc:creator>matjack1</dc:creator>
<guid isPermaLink="false">17323@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;thank you!!&#60;/p&#62;
&#60;p&#62;works also for me! :-P
&#60;/p&#62;</description>
</item>
<item>
<title>caesarsgrunt on "wpmu 1.5.1 + bbpress 0902 Login Cookie Solved!"</title>
<link>http://bbpress.org/forums/topic/wpmu-151-bbpress-0902-login-cookie-solved#post-17151</link>
<pubDate>Wed, 09 Jul 2008 18:34:46 +0000</pubDate>
<dc:creator>caesarsgrunt</dc:creator>
<guid isPermaLink="false">17151@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thank you so, &#60;em&#62;so&#60;/em&#62; much, &#60;strong&#62;sepidol&#60;/strong&#62;! You've made my day! I've spent hours trawling the bbPress and WPMU forums for this...&#60;/p&#62;
&#60;p&#62;For what it's worth, my problem was the SECRET_SALT. I'd done everything else right, but each time I logged into either bb or wp I was logged out of the other 'cause of the cookie value being encrypted differently... I thought the salt may have been the problem, but I wasn't quite sure what it did. This is the first thread I've found which even mentions it!&#60;/p&#62;
&#60;p&#62;Thanks...&#60;br /&#62;
Caesar
&#60;/p&#62;</description>
</item>
<item>
<title>tdjcbe on "wpmu 1.5.1 + bbpress 0902 Login Cookie Solved!"</title>
<link>http://bbpress.org/forums/topic/wpmu-151-bbpress-0902-login-cookie-solved#post-16586</link>
<pubDate>Tue, 03 Jun 2008 00:19:37 +0000</pubDate>
<dc:creator>tdjcbe</dc:creator>
<guid isPermaLink="false">16586@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks for this.  It fixed our issue with the login cookies.
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "wpmu 1.5.1 + bbpress 0902 Login Cookie Solved!"</title>
<link>http://bbpress.org/forums/topic/wpmu-151-bbpress-0902-login-cookie-solved#post-16509</link>
<pubDate>Thu, 29 May 2008 11:42:32 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">16509@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Actually, the bbPress secret can live in the database. But you are right that the WPMU one cannot, mostly for login compatibility between blogs within WPMU.&#60;/p&#62;
&#60;p&#62;Obviously you should choose your own secret and salt values, not the one's given above.
&#60;/p&#62;</description>
</item>
<item>
<title>sepidol on "wpmu 1.5.1 + bbpress 0902 Login Cookie Solved!"</title>
<link>http://bbpress.org/forums/topic/wpmu-151-bbpress-0902-login-cookie-solved#post-16508</link>
<pubDate>Thu, 29 May 2008 09:38:52 +0000</pubDate>
<dc:creator>sepidol</dc:creator>
<guid isPermaLink="false">16508@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;my mistake,&#60;br /&#62;
make sure your BB_SECRET_KEY and BB_SECRET_SALT value on your bb-config.php are the same with SECRET_KEY and SECRET_SALT value on your wp-config.php&#60;/p&#62;
&#60;p&#62;cheers,&#60;/p&#62;
&#60;p&#62;--&#60;br /&#62;
rh
&#60;/p&#62;</description>
</item>
<item>
<title>sepidol on "wpmu 1.5.1 + bbpress 0902 Login Cookie Solved!"</title>
<link>http://bbpress.org/forums/topic/wpmu-151-bbpress-0902-login-cookie-solved#post-16507</link>
<pubDate>Thu, 29 May 2008 09:35:09 +0000</pubDate>
<dc:creator>sepidol</dc:creator>
<guid isPermaLink="false">16507@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;i just solved my login cookie issue after one night debugging...&#60;br /&#62;
i found these things:&#60;br /&#62;
- by default, wpmu generate auth_cookie as &#34;wordpress&#34;, but bbpress generate as &#34;wordpress_xxxxx(hash)&#34;&#60;/p&#62;
&#60;p&#62;- wpmu not using &#34;database secret&#34; for cookie hashing, but it use the SECRET_SALT constant defined in the wp-config.php, bbpress using &#34;database secret&#34;. so the cookie result will never be the same.&#60;/p&#62;
&#60;p&#62;you need to update your bb-config.php file to meet these situations.&#60;br /&#62;
assumed you've successfully install wpmu + bbpress, then edit your bb-config.php and add these line:&#60;/p&#62;
&#60;p&#62;define('BB_SECRET_KEY', 'yourreallysecretkey');&#60;br /&#62;
define('BB_SECRET_SALT', 'yourreallysecretsalt');&#60;/p&#62;
&#60;p&#62;$bb-&#38;gt;authcookie = 'wordpress';&#60;br /&#62;
$bb-&#38;gt;cookiedomain = '.yourdomain.com';&#60;br /&#62;
$bb-&#38;gt;cookiepath = '/';&#60;br /&#62;
$bb-&#38;gt;sitecookiepath = '';&#60;/p&#62;
&#60;p&#62;and try to login... voila.. you can switch to bbpress and wpmu without re-login... :)&#60;/p&#62;
&#60;p&#62;good luck,&#60;/p&#62;
&#60;p&#62;--&#60;br /&#62;
rh
&#60;/p&#62;</description>
</item>
<item>
<title>codymckibb on "Slashes being added in front of apostrophes"</title>
<link>http://bbpress.org/forums/topic/slashes-being-added-in-front-of-apostrophes/page/2#post-15248</link>
<pubDate>Thu, 10 Apr 2008 21:36:43 +0000</pubDate>
<dc:creator>codymckibb</dc:creator>
<guid isPermaLink="false">15248@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Sweet solution, thanks guys!
&#60;/p&#62;</description>
</item>
<item>
<title>citizenkeith on "Slashes being added in front of apostrophes"</title>
<link>http://bbpress.org/forums/topic/slashes-being-added-in-front-of-apostrophes#post-13081</link>
<pubDate>Wed, 09 Jan 2008 21:46:29 +0000</pubDate>
<dc:creator>citizenkeith</dc:creator>
<guid isPermaLink="false">13081@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have tried baptiste's changes, but I'm still getting backslashes when quoting text (using the Quote plugin).&#60;/p&#62;
&#60;p&#62;I am integrating with WordPress, but I don't use a WordPress Integration plugin, as referred to by RCanine. I'm using the bbPress Integration plugin.
&#60;/p&#62;</description>
</item>
<item>
<title>fooddude on "Slashes being added in front of apostrophes"</title>
<link>http://bbpress.org/forums/topic/slashes-being-added-in-front-of-apostrophes#post-13055</link>
<pubDate>Mon, 07 Jan 2008 05:39:39 +0000</pubDate>
<dc:creator>fooddude</dc:creator>
<guid isPermaLink="false">13055@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;RCanine - that code works perfectly! Fixed the problem in titles and posts. Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>RCanine on "Slashes being added in front of apostrophes"</title>
<link>http://bbpress.org/forums/topic/slashes-being-added-in-front-of-apostrophes#post-12563</link>
<pubDate>Wed, 12 Dec 2007 04:37:22 +0000</pubDate>
<dc:creator>RCanine</dc:creator>
<guid isPermaLink="false">12563@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Wouldn't a better fix for this be to apply a filter in the &#34;WordPress Integration&#34; plugin? I'm not sure the exact syntax but something like:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if (function_exists(&#38;#39;wp_head&#38;#39;)) {
  // or another check to see if WordPress has been included
  add_filter(&#38;#39;get_topic_title&#38;#39;, &#38;#39;stripslashes&#38;#39;);
  add_filter(&#38;#39;get_post_text&#38;#39;, &#38;#39;stripslashes&#38;#39;);
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;To me this is &#60;strong&#62;exactly&#60;/strong&#62; what a WordPress Integration plugin should do.
&#60;/p&#62;</description>
</item>
<item>
<title>beaulebens on "Slashes being added in front of apostrophes"</title>
<link>http://bbpress.org/forums/topic/slashes-being-added-in-front-of-apostrophes#post-12368</link>
<pubDate>Fri, 30 Nov 2007 02:07:08 +0000</pubDate>
<dc:creator>beaulebens</dc:creator>
<guid isPermaLink="false">12368@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Any updates on this being handled &#34;properly&#34; to avoid having to hack core code (or add filters just to do &#34;normal&#34; stuff)?&#60;/p&#62;
&#60;p&#62;I'm still seeing it in 0.8.3 with WP (MU) integration.
&#60;/p&#62;</description>
</item>
<item>
<title>WPITn2shape on "login-form.php template doesn't work"</title>
<link>http://bbpress.org/forums/topic/login-formphp-template-doesnt-work#post-10703</link>
<pubDate>Sun, 02 Sep 2007 14:42:36 +0000</pubDate>
<dc:creator>WPITn2shape</dc:creator>
<guid isPermaLink="false">10703@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It works now to style login.php in my template folder, NOT login-form.php, but I swear it didn't work before. I had put the same code in both of those template files. Weird.
&#60;/p&#62;</description>
</item>
<item>
<title>WPITn2shape on "login-form.php template doesn't work"</title>
<link>http://bbpress.org/forums/topic/login-formphp-template-doesnt-work#post-10702</link>
<pubDate>Sun, 02 Sep 2007 14:20:50 +0000</pubDate>
<dc:creator>WPITn2shape</dc:creator>
<guid isPermaLink="false">10702@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;If when I put my WP log in form into bb-login.php and when that redirects to wp-login.php but shows a 404 (when the file is there), should I go to WordPress MU forums to ask for help?&#60;/p&#62;
&#60;p&#62;&#38;gt;&#38;gt;&#38;gt;&#38;gt;&#60;br /&#62;
OK It also happens when I put bb-login.php into the code instead of wp-login.php, but I'm sure it's still a WP/MU thing.&#60;/p&#62;
&#60;p&#62;Putting my WP login box on the sidebar of the main page of the forum works however, so what I really need is to be able to change the log in message at the bottom of those pages.
&#60;/p&#62;</description>
</item>
<item>
<title>WPITn2shape on "login-form.php template doesn't work"</title>
<link>http://bbpress.org/forums/topic/login-formphp-template-doesnt-work#post-10701</link>
<pubDate>Sun, 02 Sep 2007 14:17:45 +0000</pubDate>
<dc:creator>WPITn2shape</dc:creator>
<guid isPermaLink="false">10701@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I can't change the login styling by editing the template file, I have to change the bb-login.php.&#60;/p&#62;
&#60;p&#62;I wanted to NEVER allow going to bb-login.php but instead have a login box where it now has a log in link.
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "login-form.php template doesn't work"</title>
<link>http://bbpress.org/forums/topic/login-formphp-template-doesnt-work#post-10698</link>
<pubDate>Sun, 02 Sep 2007 12:59:46 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">10698@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#38;gt; styling the login doesn't work&#60;br /&#62;
Can you be more precise? What do you want to do, what have you tried, how precisely has it failed?&#60;/p&#62;
&#60;p&#62;Do you mean the &#34;You must log in to post.&#34;? That should be translatable, but otherwise as far as I know it's stuck in core files.
&#60;/p&#62;</description>
</item>
<item>
<title>WPITn2shape on "login-form.php template doesn't work"</title>
<link>http://bbpress.org/forums/topic/login-formphp-template-doesnt-work#post-10694</link>
<pubDate>Sun, 02 Sep 2007 11:44:00 +0000</pubDate>
<dc:creator>WPITn2shape</dc:creator>
<guid isPermaLink="false">10694@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Perhaps it's that I'm using ThemePress, but styling the login doesn't work. I suppose I'll have to actually edit the file, but it's a file that shouldn't cause upload trouble. I don't want to have to do that much though.&#60;/p&#62;
&#60;p&#62;Also, how do I change the register/login link at the bottom of a post if one's not logged in to a little form itself? I can't find this in my theme, and I'd like to change that.&#60;/p&#62;
&#60;p&#62;It's important to keep things on the WP side since I'm using MU.&#60;/p&#62;
&#60;p&#62;I didn't find another post on this by the way. And thanks for any help!
&#60;/p&#62;</description>
</item>
<item>
<title>WPITn2shape on "WordPress MU Integration Not Working for Log In"</title>
<link>http://bbpress.org/forums/topic/wordpress-mu-integration-not-working-for-log-in#post-10611</link>
<pubDate>Thu, 30 Aug 2007 16:05:13 +0000</pubDate>
<dc:creator>WPITn2shape</dc:creator>
<guid isPermaLink="false">10611@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Here is my solution!&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/forums/topic/plugins-for-wordpress-integration?replies=35#post-2502&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/plugins-for-wordpress-integration?replies=35#post-2502&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I hadn't read that before since the title didn't seem to suggest it was my problem. I went through all those steps, too. I need to skip down to the good stuff. Heh heh.
&#60;/p&#62;</description>
</item>
<item>
<title>WPITn2shape on "WordPress MU Integration Not Working for Log In"</title>
<link>http://bbpress.org/forums/topic/wordpress-mu-integration-not-working-for-log-in#post-10607</link>
<pubDate>Thu, 30 Aug 2007 14:18:36 +0000</pubDate>
<dc:creator>WPITn2shape</dc:creator>
<guid isPermaLink="false">10607@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Another update:&#60;/p&#62;
&#60;p&#62;I just wrote an add-on to my WP plugin, and it works with BBPress. It relates to the post author, just like the WP plugin related to a post or comment author. It even uses IDs which turned out to be the same in both my installs. I have two users and they did migrate.&#60;/p&#62;
&#60;p&#62;Now why am I having the login problem?&#60;/p&#62;
&#60;p&#62;Anyone have a workaround?
&#60;/p&#62;</description>
</item>
<item>
<title>WPITn2shape on "WordPress MU Integration Not Working for Log In"</title>
<link>http://bbpress.org/forums/topic/wordpress-mu-integration-not-working-for-log-in#post-10600</link>
<pubDate>Thu, 30 Aug 2007 13:15:25 +0000</pubDate>
<dc:creator>WPITn2shape</dc:creator>
<guid isPermaLink="false">10600@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;An update:&#60;/p&#62;
&#60;p&#62;I don't think my integration in general is working too well, because my avatar from my own avatar plugin is not displaying my user's av. Of course this could be my plugin, and perhaps I need to work on an integration for THAT, too - ha ha.&#60;/p&#62;
&#60;p&#62;But I'm really worried about my MU integration..&#60;/p&#62;
&#60;p&#62;Looking closer I think it is the plugin in the sense that the post doesn't bring up WP-type post code, but BBPress and the plugin doesn't have that written. It'd have been nice for it to be more integrated on its own. I read others use their plugins on the forum pages. Sigh.
&#60;/p&#62;</description>
</item>
<item>
<title>WPITn2shape on "WordPress MU Integration Not Working for Log In"</title>
<link>http://bbpress.org/forums/topic/wordpress-mu-integration-not-working-for-log-in#post-10597</link>
<pubDate>Thu, 30 Aug 2007 12:22:03 +0000</pubDate>
<dc:creator>WPITn2shape</dc:creator>
<guid isPermaLink="false">10597@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I searched, but there were only similar problem and another (only similar) MU problem was not replied to.&#60;/p&#62;
&#60;p&#62;I have an MU site I'm building and I installed BBPress for it. Everything's fine except for this issue. I installed the three integration plugins, and I logged in to the forum with my WP info and it shows my display name.&#60;/p&#62;
&#60;p&#62;But here's the thing. (This is not a browser thing but I find it funny to note I can see both instances of the problem at the same time..) In Firefox I'm currently logged into the forum and not WordPress, in IE it's the opposite.  If I log in to WordPress, it doesn't log me into the forum and vice versa.&#60;/p&#62;
&#60;p&#62;I want to get rid of BBPress's logging system altogether and especially the registration, because I don't want to chance it that it won't work for my MU, like I read in another thread.&#60;/p&#62;
&#60;p&#62;Currently I know this will be very annoying to my users, and I don't want that.&#60;/p&#62;
&#60;p&#62;Any help? Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>neyoung on "Slashes being added in front of apostrophes"</title>
<link>http://bbpress.org/forums/topic/slashes-being-added-in-front-of-apostrophes#post-10285</link>
<pubDate>Sun, 19 Aug 2007 09:17:47 +0000</pubDate>
<dc:creator>neyoung</dc:creator>
<guid isPermaLink="false">10285@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;thanks baptiste!&#60;/p&#62;
&#60;p&#62;The fix worked wonders :)
&#60;/p&#62;</description>
</item>
<item>
<title>larmir on "Slashes being added in front of apostrophes"</title>
<link>http://bbpress.org/forums/topic/slashes-being-added-in-front-of-apostrophes#post-3963</link>
<pubDate>Sat, 03 Feb 2007 12:25:44 +0000</pubDate>
<dc:creator>larmir</dc:creator>
<guid isPermaLink="false">3963@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;baptiste - thank you. This worked like a charm. Problem resolved and I can't thank you enough.
&#60;/p&#62;</description>
</item>
<item>
<title>baptiste on "Slashes being added in front of apostrophes"</title>
<link>http://bbpress.org/forums/topic/slashes-being-added-in-front-of-apostrophes#post-3953</link>
<pubDate>Fri, 02 Feb 2007 21:53:59 +0000</pubDate>
<dc:creator>baptiste</dc:creator>
<guid isPermaLink="false">3953@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm 90% sure this is related to the kses issue I'm looking into because kses has a strip slashes filter that I think is being used as well, but not 100% sure. The fact that it only happens on WP integration makes me pretty sure it's kses.
&#60;/p&#62;</description>
</item>
<item>
<title>baptiste on "Slashes being added in front of apostrophes"</title>
<link>http://bbpress.org/forums/topic/slashes-being-added-in-front-of-apostrophes#post-3952</link>
<pubDate>Fri, 02 Feb 2007 21:51:52 +0000</pubDate>
<dc:creator>baptiste</dc:creator>
<guid isPermaLink="false">3952@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#60;code&#62;return stripslashes(apply_filters( 'get_topic_title', $topic-&#38;gt;topic_title, $id ));&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>DFPRadio on "Slashes being added in front of apostrophes"</title>
<link>http://bbpress.org/forums/topic/slashes-being-added-in-front-of-apostrophes#post-3928</link>
<pubDate>Thu, 01 Feb 2007 21:35:29 +0000</pubDate>
<dc:creator>DFPRadio</dc:creator>
<guid isPermaLink="false">3928@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Heck yeah! Baptiste kicks Mucho Asso!
&#60;/p&#62;</description>
</item>
<item>
<title>larmir on "Slashes being added in front of apostrophes"</title>
<link>http://bbpress.org/forums/topic/slashes-being-added-in-front-of-apostrophes#post-3877</link>
<pubDate>Wed, 31 Jan 2007 12:32:56 +0000</pubDate>
<dc:creator>larmir</dc:creator>
<guid isPermaLink="false">3877@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This seems to work for the text. Thanks so much baptiste.&#60;/p&#62;
&#60;p&#62;One more question, the issue still exists in the title. I'm guessing I need to update this expression, just unsure of the syntax:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;function get_topic_title( $id = 0 ) {&#60;br /&#62;
	global $topic;&#60;br /&#62;
	if ( $id )&#60;br /&#62;
		$topic = get_topic( $id );&#60;br /&#62;
	return apply_filters( 'get_topic_title', $topic-&#38;gt;topic_title, $id );&#60;br /&#62;
}&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>baptiste on "Slashes being added in front of apostrophes"</title>
<link>http://bbpress.org/forums/topic/slashes-being-added-in-front-of-apostrophes#post-3875</link>
<pubDate>Wed, 31 Jan 2007 12:13:17 +0000</pubDate>
<dc:creator>baptiste</dc:creator>
<guid isPermaLink="false">3875@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Easy fix (hack) in bb-includes/template-functions.php, update this function to look like this:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;function get_post_text() {&#60;br /&#62;
        global $bb_post;&#60;br /&#62;
        return stripslashes($bb_post-&#38;gt;post_text);&#60;br /&#62;
}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;May be an artifact of the wordpress integration - not sure.
&#60;/p&#62;</description>
</item>
<item>
<title>thinkera0 on "Slashes being added in front of apostrophes"</title>
<link>http://bbpress.org/forums/topic/slashes-being-added-in-front-of-apostrophes#post-3688</link>
<pubDate>Fri, 26 Jan 2007 23:09:33 +0000</pubDate>
<dc:creator>thinkera0</dc:creator>
<guid isPermaLink="false">3688@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I can add one more sample of these symptoms.&#60;br /&#62;
The only oddity I've been able to find through phpinfo is that it reports the mysql Client API version as 3.23.58, which I find odd as I have mysql 4.1.x on the (linux) server.  magic_quotes are off. This is with php 4.3.10, WP 2.1, bbP .75&#60;/p&#62;
&#60;p&#62;' and &#34; each show up with a single backslash in front of them, but if I put a backslash in the text in front of ' or &#34; it yields 3 backslashes and the '/&#34;  I don't know if this double backslash is expected or if it might help find the problem.&#60;/p&#62;
&#60;p&#62;Thanks for helping to track this down.
&#60;/p&#62;</description>
</item>
<item>
<title>DFPRadio on "Slashes being added in front of apostrophes"</title>
<link>http://bbpress.org/forums/topic/slashes-being-added-in-front-of-apostrophes#post-3402</link>
<pubDate>Sat, 20 Jan 2007 16:53:54 +0000</pubDate>
<dc:creator>DFPRadio</dc:creator>
<guid isPermaLink="false">3402@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Glad to hear someone else is having the same problem as me...  misery loves company, right?!?  I have found one thing that may be helpful.  When I removed the:&#60;br /&#62;
 require_once( '/.../wp-config.php');&#60;br /&#62;
define('WP_BB', 'true');&#60;/p&#62;
&#60;p&#62;The problem magically vanishes... So, I'm pretty sure it has something to do with the WP integration.  Interestingly, I checked my phpinfo and my magic_quotes are all off as well and my php version is 4.4.4. &#60;/p&#62;
&#60;p&#62;My forums are at: &#60;a href=&#34;http://www.digitalfrontierplus.com/wordpress/forums/&#34; rel=&#34;nofollow&#34;&#62;http://www.digitalfrontierplus.com/wordpress/forums/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>larmir on "Slashes being added in front of apostrophes"</title>
<link>http://bbpress.org/forums/topic/slashes-being-added-in-front-of-apostrophes#post-3274</link>
<pubDate>Wed, 17 Jan 2007 15:56:52 +0000</pubDate>
<dc:creator>larmir</dc:creator>
<guid isPermaLink="false">3274@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;No, we haven't. Chrishajer's (Chris) been graciously helping me off the forum since I'm working with a private forum. He's spent quite a bit of time on this and hasn't found a solution. He had some great ideas, they just didn't work. My next step is to contact my host and talk with them. They host WordPress so perhaps they know something indepth about bbPress. If I find a solution, I'll let you know.&#60;/p&#62;
&#60;p&#62;I do want to thank Chris for all the time and effort he's put into this for me. Thank you, Chris.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
