<?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: rules</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Tag: rules</description>
<language>en</language>
<pubDate>Tue, 02 Dec 2008 21:54:29 +0000</pubDate>

<item>
<title>jldean on "Guidance for moderating discussion forums"</title>
<link>http://bbpress.org/forums/topic/guidance-for-moderating-a-discussion-forum#post-17029</link>
<pubDate>Mon, 30 Jun 2008 13:34:06 +0000</pubDate>
<dc:creator>jldean</dc:creator>
<guid isPermaLink="false">17029@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;If you need to pre-moderate new topics/posts, there's a great plugin for that &#60;a href=&#34;http://bbpress.org/plugins/topic/bb-moderation-hold/&#34;&#62;here&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;If the subject matter is political/contentious, this can be a useful tool :)
&#60;/p&#62;</description>
</item>
<item>
<title>Christiaan on "Guidance for moderating discussion forums"</title>
<link>http://bbpress.org/forums/topic/guidance-for-moderating-a-discussion-forum#post-17009</link>
<pubDate>Sun, 29 Jun 2008 17:55:38 +0000</pubDate>
<dc:creator>Christiaan</dc:creator>
<guid isPermaLink="false">17009@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I've just set up a forum for a fledgling political organisation and they would like some guidance and on writing rules for and moderating discussions online. &#60;/p&#62;
&#60;p&#62;Can anyone point me to a good resource in this regard?
&#60;/p&#62;</description>
</item>
<item>
<title>haagendazs1 on "Rewriting?"</title>
<link>http://bbpress.org/forums/topic/rewriting#post-16126</link>
<pubDate>Sun, 11 May 2008 02:54:49 +0000</pubDate>
<dc:creator>haagendazs1</dc:creator>
<guid isPermaLink="false">16126@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;mrhoratio,&#60;/p&#62;
&#60;p&#62;Thanks a lot for the input. Sucks that it isn't working out for a lot of people. I guess I'll just live with it (for now?), and patiently wait for something out there. :) Thanks again
&#60;/p&#62;</description>
</item>
<item>
<title>mrhoratio on "Rewriting?"</title>
<link>http://bbpress.org/forums/topic/rewriting#post-16117</link>
<pubDate>Sat, 10 May 2008 08:46:33 +0000</pubDate>
<dc:creator>mrhoratio</dc:creator>
<guid isPermaLink="false">16117@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey I'm been trying to get this to work also. And have posted to some other similar threads here, but there haven't gotta a solution working. &#60;/p&#62;
&#60;p&#62;Here's what I've learned.&#60;/p&#62;
&#60;p&#62;1. From what I gathered, the problem is with how bbPress redirects its pages. Even if you have the proper mod_rewrite rules, bbPress will automatically redirect the rewritten URL to the full URL that it thinks the page is supposed to have. This basically makes custom mod_rewrite useless. &#60;/p&#62;
&#60;p&#62;2. You can prevent bbPress from redirecting by fooling bbPress into thinking it should have a different URL than its supposed to. You can do this by modifying the get_forum_link, get_topic_link, get_user_profile link, etc. functions in  the template-functions.php file. The idea is to use pattern matching to strip out the base directory from the URL. &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function get_user_profile_link( $id = 0, $page = 1 ) {
	$user = bb_get_user( bb_get_user_id( $id ) );
	$rewrite = bb_get_option( &#38;#39;mod_rewrite&#38;#39; );
	if ( $rewrite ) {
		if ( $rewrite === &#38;#39;slugs&#38;#39; ) {
			$column = &#38;#39;user_nicename&#38;#39;;
		} else {
			$column = &#38;#39;ID&#38;#39;;
		}
		$r = bb_get_option(&#38;#39;uri&#38;#39;) . &#38;quot;profile/&#38;quot; . $user-&#38;gt;$column . ( 1 &#38;lt; $page ? &#38;quot;/page/$page&#38;quot; : &#38;#39;&#38;#39; );
	} else {
		$r = bb_get_option(&#38;#39;uri&#38;#39;) . &#38;quot;profile.php?id=$user-&#38;gt;ID&#38;quot; . ( 1 &#38;lt; $page ? &#38;quot;&#38;#38;page=$page&#38;quot; : &#38;#39;&#38;#39; );
	}

	$r = str_replace(&#38;#39;forums/profile/&#38;#39; . $user-&#38;gt;$column , &#38;quot;profile/&#38;quot; . $user-&#38;gt;$column, $r);
	return apply_filters( &#38;#39;get_user_profile_link&#38;#39;, $r, $user-&#38;gt;ID );
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;3. If you strip out the base directory from the URL however, it makes bbPress think you're no longer logged in, and you can't log in. I still can't figure out a fix yet.&#60;/p&#62;
&#60;p&#62;Seems like a lot of people are having issues with mod_rewrite in bbPress. Hopefully the next update will resolve some of these issues.
&#60;/p&#62;</description>
</item>
<item>
<title>haagendazs1 on "Rewriting?"</title>
<link>http://bbpress.org/forums/topic/rewriting#post-16115</link>
<pubDate>Sat, 10 May 2008 08:27:08 +0000</pubDate>
<dc:creator>haagendazs1</dc:creator>
<guid isPermaLink="false">16115@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I've been trying to get this but I don't really know what would allow this as I'm relatively new to websites, and I don't know if this is even possible. Does anyone who knows what I'm talking about above know if this is possible for bbPress right now?
&#60;/p&#62;</description>
</item>
<item>
<title>haagendazs1 on "Rewriting?"</title>
<link>http://bbpress.org/forums/topic/rewriting#post-15526</link>
<pubDate>Fri, 18 Apr 2008 22:52:54 +0000</pubDate>
<dc:creator>haagendazs1</dc:creator>
<guid isPermaLink="false">15526@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Just wondering if anyone has the solution...
&#60;/p&#62;</description>
</item>
<item>
<title>haagendazs1 on "Rewriting?"</title>
<link>http://bbpress.org/forums/topic/rewriting#post-15389</link>
<pubDate>Tue, 15 Apr 2008 05:07:24 +0000</pubDate>
<dc:creator>haagendazs1</dc:creator>
<guid isPermaLink="false">15389@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi chrishajer,&#60;/p&#62;
&#60;p&#62;example.com has stuff like htaccess, index.php, php.ini, robots.txt&#60;br /&#62;
example.com/folder/ is the WP install that's integrated with the forum&#60;br /&#62;
and example.com/folder/bbpress/ is the aforementioned forum&#60;/p&#62;
&#60;p&#62;:)
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Rewriting?"</title>
<link>http://bbpress.org/forums/topic/rewriting#post-15378</link>
<pubDate>Tue, 15 Apr 2008 03:48:11 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">15378@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;What is in &#60;a href=&#34;http://example.com/&#34; rel=&#34;nofollow&#34;&#62;http://example.com/&#60;/a&#62; ?&#60;br /&#62;
What is in &#60;a href=&#34;http://example.com/folder/&#34; rel=&#34;nofollow&#34;&#62;http://example.com/folder/&#60;/a&#62; ?&#60;br /&#62;
I know what's in &#60;a href=&#34;http://example.com/folder/bbpress/&#34; rel=&#34;nofollow&#34;&#62;http://example.com/folder/bbpress/&#60;/a&#62; :-)
&#60;/p&#62;</description>
</item>
<item>
<title>haagendazs1 on "Rewriting?"</title>
<link>http://bbpress.org/forums/topic/rewriting#post-15377</link>
<pubDate>Tue, 15 Apr 2008 02:33:31 +0000</pubDate>
<dc:creator>haagendazs1</dc:creator>
<guid isPermaLink="false">15377@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm not sure if people don't know how to do it, or if it's not possible, or if I'm just not explaining it clearly enough... So I'll try again:&#60;/p&#62;
&#60;p&#62;Right now, physically, the folders are arranged like so:&#60;br /&#62;
root.com/folder/bbpress&#60;/p&#62;
&#60;p&#62;The address:&#60;br /&#62;
root.com/folder/bbpress&#60;br /&#62;
also works and goes to the forum just fine.&#60;/p&#62;
&#60;p&#62;However, I want to keep the physical folders arranged that way, and make the address:&#60;br /&#62;
root.com/bbpress&#60;/p&#62;
&#60;p&#62;Wordpress itself has the exact same option under &#34;Settings&#34; by changing &#34;Blog address (URL)&#34; to whatever.&#60;/p&#62;
&#60;p&#62;Any help would be appreciated!
&#60;/p&#62;</description>
</item>
<item>
<title>haagendazs1 on "Rewriting?"</title>
<link>http://bbpress.org/forums/topic/rewriting#post-15365</link>
<pubDate>Mon, 14 Apr 2008 14:12:04 +0000</pubDate>
<dc:creator>haagendazs1</dc:creator>
<guid isPermaLink="false">15365@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi everyone,&#60;/p&#62;
&#60;p&#62;Currently my forum is located in something like:&#60;/p&#62;
&#60;p&#62;example.com/dir/forum/&#60;/p&#62;
&#60;p&#62;But I want to rewrite it to be like this:&#60;/p&#62;
&#60;p&#62;example.com/forum/&#60;/p&#62;
&#60;p&#62;Since Wordpress can do that, I was hoping bbPress can too, but I'm not sure how. Is there some setting I can change?&#60;/p&#62;
&#60;p&#62;Also secondary to that is that if there is no setting for such an option, can I just move the &#34;forum&#34; directory out of &#34;dir&#34; and into the root, and change the &#34;bbPress address&#34; to force it to physically be like &#34;example.com/forum/&#34; or would that screw things up?&#60;/p&#62;
&#60;p&#62;Thanks a lot everyone :)
&#60;/p&#62;</description>
</item>
<item>
<title>Mirce on "How to change the rewrite rules ?"</title>
<link>http://bbpress.org/forums/topic/how-to-change-the-rewrite-rules-#post-5040</link>
<pubDate>Thu, 01 Mar 2007 17:08:44 +0000</pubDate>
<dc:creator>Mirce</dc:creator>
<guid isPermaLink="false">5040@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It can be done.&#60;br /&#62;
You can check out:&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/forums/topic/771&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/771&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;And see &#60;a href=&#34;http://www.dfur.com&#34; rel=&#34;nofollow&#34;&#62;www.dfur.com&#60;/a&#62; to see how I did it. THe script is not ready yet, I still have to add the rewrite htaccess to &#34;page 2&#34; topics.
&#60;/p&#62;</description>
</item>
<item>
<title>nekketsu on "How to change the rewrite rules ?"</title>
<link>http://bbpress.org/forums/topic/how-to-change-the-rewrite-rules-#post-5030</link>
<pubDate>Thu, 01 Mar 2007 13:23:17 +0000</pubDate>
<dc:creator>nekketsu</dc:creator>
<guid isPermaLink="false">5030@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;nobody have an answer ?
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "How to change the rewrite rules ?"</title>
<link>http://bbpress.org/forums/topic/how-to-change-the-rewrite-rules-#post-3308</link>
<pubDate>Thu, 18 Jan 2007 09:49:23 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">3308@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The rules are generated using Multiview if you can and originate out of /bb-admin/rewrite-rules.php.   I am not sure if anyone has ever tackled it before, but maybe someone else has an idea how to get this accomplished because I am sure it can be accomplished.&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>nekketsu on "How to change the rewrite rules ?"</title>
<link>http://bbpress.org/forums/topic/how-to-change-the-rewrite-rules-#post-3301</link>
<pubDate>Thu, 18 Jan 2007 07:52:57 +0000</pubDate>
<dc:creator>nekketsu</dc:creator>
<guid isPermaLink="false">3301@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;hi,&#60;br /&#62;
i would like to change the rewrite rules. Is it possible ?&#60;br /&#62;
i would like to have the name of the forum then the name of the topic in the url.&#60;/p&#62;
&#60;p&#62;Thx in advance.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
