<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
		>
	<channel>
		<title>bbPress Support Forums &#187; Tag: multiviews - Recent Posts</title>
		<link>http://bbpress.org/forums/tags/multiviews</link>
		<description>bbPress Support Forums &#187; Tag: multiviews - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Fri, 25 May 2012 13:26:09 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://bbpress.org/forums/rss/tags/multiviews" rel="self" type="application/rss+xml" />

		<item>
			<title>spokkbb on "Heads up, pretty permalinks"</title>
			<link>http://bbpress.org/forums/topic/heads-up-pretty-permalinks#post-64368</link>
			<pubDate>Tue, 09 Feb 2010 14:49:00 +0000</pubDate>
			<dc:creator>spokkbb</dc:creator>
			<guid isPermaLink="false">64368@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Agreed. Tried a lot of stuff - removing this line fixed it for me.
</p>]]></description>
					</item>
		<item>
			<title>Xevo on "Heads up, pretty permalinks"</title>
			<link>http://bbpress.org/forums/topic/heads-up-pretty-permalinks#post-60584</link>
			<pubDate>Thu, 12 Nov 2009 23:19:53 +0000</pubDate>
			<dc:creator>Xevo</dc:creator>
			<guid isPermaLink="false">60584@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi,</p>
<p>I was struggling with the pretty permalinks as many have before me, only I read everywhere that "Options -MultiViews" fixed it. Well.. for me it was the opposite, it gave me 500 internal server errors. My host is one.com, so this is a heads up for everyone that gets 500 internal server errors with permalinks. Try removing that line.
</p>]]></description>
					</item>
		<item>
			<title>annejan on "&quot;next page&quot; link redirects to WordPress login page"</title>
			<link>http://bbpress.org/forums/topic/next-page-link-redirects-to-wordpress-login-page#post-58489</link>
			<pubDate>Wed, 23 Sep 2009 07:35:29 +0000</pubDate>
			<dc:creator>annejan</dc:creator>
			<guid isPermaLink="false">58489@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I fixed it! :)</p>
<p>It was the WP-o-Matic plugin...
</p>]]></description>
					</item>
		<item>
			<title>annejan on "&quot;next page&quot; link redirects to WordPress login page"</title>
			<link>http://bbpress.org/forums/topic/next-page-link-redirects-to-wordpress-login-page#post-58464</link>
			<pubDate>Tue, 22 Sep 2009 19:40:48 +0000</pubDate>
			<dc:creator>annejan</dc:creator>
			<guid isPermaLink="false">58464@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Thanks for your reply. I copied your code and deleted my own code.<br />
The WP things in my bbPress are still working, but the "next page" problem is there still too.</p>
<p>Anyone a solution for the "next page" problem?<br />
Thanks in advance!!
</p>]]></description>
					</item>
		<item>
			<title>mwaterous on "&quot;next page&quot; link redirects to WordPress login page"</title>
			<link>http://bbpress.org/forums/topic/next-page-link-redirects-to-wordpress-login-page#post-58151</link>
			<pubDate>Thu, 17 Sep 2009 22:19:13 +0000</pubDate>
			<dc:creator>mwaterous</dc:creator>
			<guid isPermaLink="false">58151@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Just out of curiousity, why are you sending headers from your bb-config? bbPress/Wordpress will handle this all on their own.</p>
<p>You also shouldn't call the blog-header, it causes other problems you can read about around the forums. You should be calling wp-load.php and the following should be more than adequate for your bb-config;</p>
<pre><code>define(&#39;WP_BB&#39;, TRUE);
if (! defined(&#39;DB_NAME&#39;))
	require_once(dirname(__FILE__) . &#39;/w/wp-load.php&#39;);

$bb-&#62;wp_table_prefix = &#39;wp_&#39;; // your wordpress db prefix is
$bb-&#62;wp_home = &#39;http://domain.tld&#39;;
$bb-&#62;wp_siteurl = &#39;http://domain.tld&#39;;</code></pre>
<p>I don't think this will solve your next page problem, as it looks like they're being sent wrong from bbPress for whatever reason, but it will avoid a plethora of other problems before they become apparent.
</p>]]></description>
					</item>
		<item>
			<title>annejan on "&quot;next page&quot; link redirects to WordPress login page"</title>
			<link>http://bbpress.org/forums/topic/next-page-link-redirects-to-wordpress-login-page#post-57618</link>
			<pubDate>Wed, 09 Sep 2009 17:28:31 +0000</pubDate>
			<dc:creator>annejan</dc:creator>
			<guid isPermaLink="false">57618@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I installed bbPress in the root of my website and WordPress is installed in the directory "/w". Because I use WordPress functions in my bbPress theme I call the wp-blog-header.php in the bb-config.php with the following code:<br />
<code><br />
if ( !defined('ABSPATH') &#38; !defined('XMLRPC_REQUEST')) {<br />
define('WP_USE_THEMES', false);<br />
include_once( '/home/forum/test/html/w/wp-blog-header.php' );<br />
header("HTTP/1.1 200 OK");<br />
header("Status: 200 All rosy"); }<br />
</code></p>
<p>My .htaccess settings for WordPress:<br />
<code><br />
# BEGIN WordPress<br />
&#60;IfModule mod_rewrite.c&#62;<br />
RewriteEngine On<br />
RewriteBase /w/<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule . /w/index.php [L]<br />
&#60;/IfModule&#62;<br />
# END WordPress<br />
</code></p>
<p>My .htaccess settings for bbPress:<br />
<code><br />
# BEGIN bbPress<br />
Options -MultiViews<br />
&#60;IfModule mod_rewrite.c&#62;<br />
RewriteEngine On<br />
RewriteBase /<br />
RewriteRule ^page/([0-9]+)/?$ /index.php?page= [L,QSA]<br />
RewriteRule ^forum/([^/]+)/page/([0-9]+)/?$ /forum.php?id=&#38;page= [L,QSA]<br />
RewriteRule ^forum/([^/]+)/?$ /forum.php?id= [L,QSA]<br />
RewriteRule ^forum/?$ / [R=302,L,QSA]<br />
RewriteRule ^topic/([^/]+)/page/([0-9]+)/?$ /topic.php?id=&#38;page= [L,QSA]<br />
RewriteRule ^topic/([^/]+)/?$ /topic.php?id= [L,QSA]<br />
RewriteRule ^topic/?$ / [R=302,L,QSA]<br />
RewriteRule ^tags/([^/]+)/page/([0-9]+)/?$ /tags.php?tag=&#38;page= [L,QSA]<br />
RewriteRule ^tags/([^/]+)/?$ /tags.php?tag= [L,QSA]<br />
RewriteRule ^tags/?$ /tags.php [L,QSA]<br />
RewriteRule ^profile/([^/]+)/page/([0-9]+)/?$ /profile.php?id=&#38;page= [L,QSA]<br />
RewriteRule ^profile/([^/]+)/([^/]+)/?$ /profile.php?id=&#38;tab= [L,QSA]<br />
RewriteRule ^profile/([^/]+)/([^/]+)/page/([0-9]+)/?$ /profile.php?id=&#38;tab=&#38;page= [L,QSA]<br />
RewriteRule ^profile/([^/]+)/?$ /profile.php?id= [L,QSA]<br />
RewriteRule ^profile/?$ /profile.php [L,QSA]<br />
RewriteRule ^view/([^/]+)/page/([0-9]+)/?$ /view.php?view=&#38;page= [L,QSA]<br />
RewriteRule ^view/([^/]+)/?$ /view.php?view= [L,QSA]<br />
RewriteRule ^rss/?$ /rss.php [L,QSA]<br />
RewriteRule ^rss/topics/?$ /rss.php?topics=1 [L,QSA]<br />
RewriteRule ^rss/forum/([^/]+)/?$ /rss.php?forum= [L,QSA]<br />
RewriteRule ^rss/forum/([^/]+)/topics/?$ /rss.php?forum=&#38;topics=1 [L,QSA]<br />
RewriteRule ^rss/topic/([^/]+)/?$ /rss.php?topic= [L,QSA]<br />
RewriteRule ^rss/tags/([^/]+)/?$ /rss.php?tag= [L,QSA]<br />
RewriteRule ^rss/tags/([^/]+)/topics/?$ /rss.php?tag=&#38;topics=1 [L,QSA]<br />
RewriteRule ^rss/profile/([^/]+)/?$ /rss.php?profile= [L,QSA]<br />
RewriteRule ^rss/view/([^/]+)/?$ /rss.php?view= [L,QSA]<br />
RewriteCond %{REQUEST_FILENAME} !-f<br />
RewriteCond %{REQUEST_FILENAME} !-d<br />
RewriteRule ^.*$ /index.php [L]<br />
&#60;/IfModule&#62;<br />
# END bbPress<br />
</code><br />
I hope you can help me. Thanks!!
</p>]]></description>
					</item>
		<item>
			<title>Adam Harley on "&quot;next page&quot; link redirects to WordPress login page"</title>
			<link>http://bbpress.org/forums/topic/next-page-link-redirects-to-wordpress-login-page#post-57591</link>
			<pubDate>Wed, 09 Sep 2009 14:16:20 +0000</pubDate>
			<dc:creator>Adam Harley</dc:creator>
			<guid isPermaLink="false">57591@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Where have you installed WordPress and bbPress relative to each other, and what actually are your .htaccess settings for WordPress?<br />
Mine is just:<br />
<pre><code># BEGIN WordPress
	RewriteCond %{REQUEST_FILENAME} !-f
	RewriteCond %{REQUEST_FILENAME} !-d
	RewriteRule . /index.php [L]
# END WordPress</code></pre>
<p>which seems to hand over nicely to the forums that are under /forums/ with their own .htaccess file
</p>]]></description>
					</item>
		<item>
			<title>annejan on "&quot;next page&quot; link redirects to WordPress login page"</title>
			<link>http://bbpress.org/forums/topic/next-page-link-redirects-to-wordpress-login-page#post-57457</link>
			<pubDate>Mon, 07 Sep 2009 22:09:43 +0000</pubDate>
			<dc:creator>annejan</dc:creator>
			<guid isPermaLink="false">57457@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I installed the latest bbPress version (1.0.2) and integrated in WordPress 2.8.4.<br />
Everything seems working, but only the footer navigation with the "next page" links don't work.</p>
<p>I think it is a conflict between the htaccess files of bbPress and WordPress.<br />
If I switch Options -MultiViews to Options +MultiViews, the "next pages" work.<br />
But from that moment the topic page redirects to /topic/17475/page/17475 (the latest number isn't correct).</p>
<p>Anyone a solution? Thanks in advance.
</p>]]></description>
					</item>
		<item>
			<title>chrishajer on "rewrite rules doesnt work."</title>
			<link>http://bbpress.org/forums/topic/rewrite-rules-doesnt-work#post-18694</link>
			<pubDate>Tue, 26 Aug 2008 20:53:52 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">18694@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>People have had trouble with godaddy and .htaccess before.  I have heard that it takes a while for the changes to take effect?  I don't use them for hosting so I can't confirm.</p>
<p><a href="http://bbpress.org/forums/search.php?q=godaddy" rel="nofollow">http://bbpress.org/forums/search.php?q=godaddy</a><br />
<a href="http://bbpress.org/forums/tags/godaddy" rel="nofollow">http://bbpress.org/forums/tags/godaddy</a><br />
<a href="http://bbpress.org/forums/topic/pretty-permalinks-not-working" rel="nofollow">http://bbpress.org/forums/topic/pretty-permalinks-not-working</a>
</p>]]></description>
					</item>
		<item>
			<title>aiitee on "rewrite rules doesnt work."</title>
			<link>http://bbpress.org/forums/topic/rewrite-rules-doesnt-work#post-18691</link>
			<pubDate>Tue, 26 Aug 2008 20:45:39 +0000</pubDate>
			<dc:creator>aiitee</dc:creator>
			<guid isPermaLink="false">18691@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>hey, i have this site ecopaginas.es and i tried with multiviews and also with the rewrite rules:</p>
<p>&#60;IfModule mod_rewrite.c&#62;<br />
RewriteEngine On<br />
RewriteBase /<br />
RewriteRule ^forum/([^/]+)/page/([0-9]+)/?$ /forum.php?id=$1&#38;page=$2 [L,QSA]<br />
RewriteRule ^forum/([^/]+)/?$ /forum.php?id=$1 [L,QSA]<br />
RewriteRule ^forum/?$ / [R,L]<br />
RewriteRule ^topic/([^/]+)/page/([0-9]+)/?$ /topic.php?id=$1&#38;page=$2 [L,QSA]<br />
RewriteRule ^topic/([^/]+)/?$ /topic.php?id=$1 [L,QSA]<br />
RewriteRule ^topic/?$ / [R,L]<br />
RewriteRule ^tags/([^/]+)/page/([0-9]+)/?$ /tags.php?tag=$1&#38;page=$2 [L,QSA]<br />
RewriteRule ^tags/([^/]+)/?$ /tags.php?tag=$1 [L,QSA]<br />
RewriteRule ^tags/?$ /tags.php [L,QSA]<br />
RewriteRule ^profile/([^/]+)/page/([0-9]+)/?$ /profile.php?id=$1&#38;page=$2 [L,QSA]<br />
RewriteRule ^profile/([^/]+)/([^/]+)/?$ /profile.php?id=$1&#38;tab=$2 [L,QSA]<br />
RewriteRule ^profile/([^/]+)/([^/]+)/page/([0-9]+)/?$ /profile.php?id=$1&#38;tab=$2&#38;page=$3 [L,QSA]<br />
RewriteRule ^profile/([^/]+)/?$ /profile.php?id=$1 [L,QSA]<br />
RewriteRule ^profile/?$ /profile.php [L,QSA]<br />
RewriteRule ^view/([^/]+)/page/([0-9]+)/?$ /view.php?view=$1&#38;page=$2 [L,QSA]<br />
RewriteRule ^view/([^/]+)/?$ /view.php?view=$1 [L,QSA]<br />
RewriteRule ^rss/?$ /rss.php [L,QSA]<br />
RewriteRule ^rss/topics/?$ /rss.php?topics=1 [L,QSA]<br />
RewriteRule ^rss/forum/([^/]+)/?$ /rss.php?forum=$1 [L,QSA]<br />
RewriteRule ^rss/forum/([^/]+)/topics/?$ /rss.php?forum=$1&#38;topics=1 [L,QSA]<br />
RewriteRule ^rss/topic/([^/]+)/?$ /rss.php?topic=$1 [L,QSA]<br />
RewriteRule ^rss/tags/([^/]+)/?$ /rss.php?tag=$1 [L,QSA]<br />
RewriteRule ^rss/profile/([^/]+)/?$ /rss.php?profile=$1 [L,QSA]<br />
RewriteRule ^rss/view/([^/]+)/?$ /rss.php?view=$1 [L,QSA]<br />
&#60;/IfModule&#62;</p>
<p>and it doesnt work, im working with godaddy...</p>
<p>thanks!
</p>]]></description>
					</item>
		<item>
			<title>Thion on "&quot;Custom&quot; rewrite rule for static pages"</title>
			<link>http://bbpress.org/forums/topic/custom-rewrite-rule-for-static-pages#post-17846</link>
			<pubDate>Thu, 31 Jul 2008 16:50:32 +0000</pubDate>
			<dc:creator>Thion</dc:creator>
			<guid isPermaLink="false">17846@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I've created something like this:</p>
<pre><code>function page_link( $page_number ) {
	echo apply_filters(&#39;page_link&#39;, get_page_link( $page_number ) );
}

function get_page_link( $page_number ) {
	$rewrite = bb_get_option( &#39;mod_rewrite&#39; );
	if ( $rewrite ) {
		global $bbdb, $bb, $page;
		$page = $page_number;

		if ( $rewrite === &#39;slugs&#39; ) {
			$table_name = $bbdb-&#62;prefix . &#34;pages&#34;;
			$query = $bbdb-&#62;get_results(&#34;SELECT page_slug FROM $table_name WHERE page_id=&#34;.$page.&#34;&#34;);

			foreach ($query as $rk) {
				$column = $rk-&#62;page_slug;
			}
		} else {
			$table_name = $bbdb-&#62;prefix . &#34;pages&#34;;
			$query = $bbdb-&#62;get_results(&#34;SELECT page_id FROM $table_name WHERE page_id=&#34;.$page.&#34;&#34;);

			foreach ($query as $rk) {
				$column = $rk-&#62;page_id;
			}
		}
		$link = bb_get_option( &#39;uri&#39; ) . &#34;page/&#34; . $column;
	} else {
		$args = array();
		$link = bb_get_option( &#39;uri&#39; ) . &#39;page.php&#39;;
		$args[&#39;page_id+\id&#39;] = $page;
		$args[&#39;part&#39;] = 1 &#60; $part ? $part : false;
		$link = add_query_arg( $args, $link );
	}

	return apply_filters( &#39;get_page_link&#39;, $link, $page_number );
}</code></pre>
<p>Trust me, I don't know what this is either ;). I'm working on this for a couple of hours (in total) and I've messed up. Could someone help me in this by explaining how this thing should look like?</p>
<p>I mean - the above code is allowing me to type</p>
<p><code>&#60;?php echo page_link(&#34;1&#34;); ?&#62;</code></p>
<p>and this will display url to static page with id=1, creating something like domain.com/page/1 or domain.com/page/about - so links are working. But now I want to send page ID to other functions that are selecting and displaying date from database - and I have no idea how to send this id in 'rewrited' version. Can anyone help?
</p>]]></description>
					</item>
		<item>
			<title>Thion on "&quot;Custom&quot; rewrite rule for static pages"</title>
			<link>http://bbpress.org/forums/topic/custom-rewrite-rule-for-static-pages#post-17799</link>
			<pubDate>Tue, 29 Jul 2008 18:03:34 +0000</pubDate>
			<dc:creator>Thion</dc:creator>
			<guid isPermaLink="false">17799@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I'm working right now on Static Pages plugin (and y'know what? It's working!) but I want to include working mod_rewrite for them, so with active MultiViews I will be able to type <strong>domain.com/page/about/</strong> for example.</p>
<p>But - I have no idea where to look for any functions, options or anything that might help me in discovering "how the heck to make this?" Any advices?
</p>]]></description>
					</item>
		<item>
			<title>chrishajer on "1and1 Hosting Problem"</title>
			<link>http://bbpress.org/forums/topic/1and1-hosting-problem#post-16540</link>
			<pubDate>Sun, 01 Jun 2008 08:15:51 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">16540@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>It's funny.  I have a bbPress forum at 1&#38;1, in a subdirectory of  WordPress installation, and I never did get permalinks working (I last tried 18 months or so ago.)  Now that you have shown it can be done, I will take my own advice, which was provided here first by hmcnally, and see if I can get them working again.</p>
<p>Glad it worked for you.
</p>]]></description>
					</item>
		<item>
			<title>cliffmaster on "1and1 Hosting Problem"</title>
			<link>http://bbpress.org/forums/topic/1and1-hosting-problem#post-16538</link>
			<pubDate>Sat, 31 May 2008 21:26:59 +0000</pubDate>
			<dc:creator>cliffmaster</dc:creator>
			<guid isPermaLink="false">16538@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>OMG ! It worked ! Thanks so much chrishajer. But I must add that I moved bbpress to a upper level above my WP install and used a sub domain for the forums. Because following 1and1 instructions stated above in their email response, it did not solve the problem until I placed</p>
<p>Options -MultiViews</p>
<p>At the top of the htaccess file. </p>
<p>Now permalinks work just fine.</p>
<p>Thanks again !
</p>]]></description>
					</item>
		<item>
			<title>chrishajer on "1and1 Hosting Problem"</title>
			<link>http://bbpress.org/forums/topic/1and1-hosting-problem#post-16537</link>
			<pubDate>Sat, 31 May 2008 18:01:08 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">16537@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Does this help:<br />
<a href="http://bbpress.org/forums/topic/dropping-multiviews-support#post-16050" rel="nofollow">http://bbpress.org/forums/topic/dropping-multiviews-support#post-16050</a></p>
<p>Your setup is just fine with the directory structure you have setup (WordPress as the root for the domain, bbPress in a subfolder.)
</p>]]></description>
					</item>
		<item>
			<title>cliffmaster on "1and1 Hosting Problem"</title>
			<link>http://bbpress.org/forums/topic/1and1-hosting-problem#post-16536</link>
			<pubDate>Sat, 31 May 2008 14:11:38 +0000</pubDate>
			<dc:creator>cliffmaster</dc:creator>
			<guid isPermaLink="false">16536@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Anyone else have this problem with 1and1 ?</p>
<p>I cannot get pretty permalinks to run, even after following directions.</p>
<p>I wrote to them</p>
<blockquote><p>I am running wordpress and bbpress in the same root directory<br />
<a href="http://mysite.com" rel="nofollow">http://mysite.com</a> is wordpress install and<br />
<a href="http://mysite.com/bbpress/" rel="nofollow">http://mysite.com/bbpress/</a> is bbpress install each install has<br />
it's own .htaccess for using permalinks. WordPress permalinks work fine<br />
but I cannot get bbpress pretty permalinks to work at all. I have tried<br />
different variations of htaccess codes for both files without any<br />
success. It seems to me that the main root htaccess is overriding the<br />
/bbpress/ htaccess.</p>
<p>Any suggestions ? </p></blockquote>
<p>This was their reply to me.</p>
<blockquote><p>"Dear Cliffmaster, (Customer ID: 6XXXXXXXX)</p>
<p>Thank you for contacting us. </p>
<p>With regards to your query,<br />
we would highly suggest that you install BBpress on a different folder<br />
and not on folder where you have installed a different CMS (WordPress).</p>
<p>Please separate the two CMS's by installing them on different folders<br />
under the root directory (/.)</p>
<p>If you have any further questions please do not hesitate to contact us.</p>
<p>--<br />
Sincerely,<br />
Technical Support<br />
1&#38;1 Internet "</p></blockquote>]]></description>
					</item>
		<item>
			<title>Sam Bauers on "Dropping &quot;MultiViews&quot; support?"</title>
			<link>http://bbpress.org/forums/topic/dropping-multiviews-support#post-16385</link>
			<pubDate>Thu, 22 May 2008 06:54:47 +0000</pubDate>
			<dc:creator>Sam Bauers</dc:creator>
			<guid isPermaLink="false">16385@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>@marians</p>
<p>You've identified another reason that I had forgotten about. URL customisation that you are talking about is close to impossible under MultiViews.</p>
<p>Based on all these comments I think we will be dropping it. Thanks for the input everyone.
</p>]]></description>
					</item>
		<item>
			<title>marians on "Dropping &quot;MultiViews&quot; support?"</title>
			<link>http://bbpress.org/forums/topic/dropping-multiviews-support#post-16370</link>
			<pubDate>Wed, 21 May 2008 10:58:49 +0000</pubDate>
			<dc:creator>marians</dc:creator>
			<guid isPermaLink="false">16370@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>On Multiviews: Never heard of it until I first installed bbPress. If mof_rewrite would work out of the box (i.e.: if bbPress would create the file or dump the necessary content) I wouldn't need MultiViews.</p>
<p>Here is one aspect I'd like to through in: URL Customization/Localization.</p>
<p>When localizing URLs, it's very easy to do this via editing of mod_rewrite rules. All my bbPress installations are in german language, thus I want german URLs.</p>
<p>When changing the wording in URLs, e.g. from "forum" to "board" or "topic" to "idea" etc., same thing - just edit the rewrite rules.</p>
<p>How easy would it be to customize URLs with MultiViews in effect? Without having looked into the implementation, I would guess that it requires code changes.</p>
<p>If URL customization is easier in mod_rewrite, please drop MultiViews. Otherwise, please document how URL customization can be done using MultiViews.
</p>]]></description>
					</item>
		<item>
			<title>bobbyh on "Dropping &quot;MultiViews&quot; support?"</title>
			<link>http://bbpress.org/forums/topic/dropping-multiviews-support#post-16344</link>
			<pubDate>Tue, 20 May 2008 07:25:29 +0000</pubDate>
			<dc:creator>bobbyh</dc:creator>
			<guid isPermaLink="false">16344@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I too vote to drop multiviews. However, if enough people depend on this, could permalinks be made pluggable so that a multiviews plugin could be written? If that's too much work, that's OK with me, just suggesting it as a compromise solution...
</p>]]></description>
					</item>
		<item>
			<title>Olaf on "Dropping &quot;MultiViews&quot; support?"</title>
			<link>http://bbpress.org/forums/topic/dropping-multiviews-support#post-16330</link>
			<pubDate>Mon, 19 May 2008 20:39:06 +0000</pubDate>
			<dc:creator>Olaf</dc:creator>
			<guid isPermaLink="false">16330@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I like multiviews, use it for WP too, write access to the .htaccess file will be a problem for many forums on shared hosting accounts (because a lot of them are not secure)
</p>]]></description>
					</item>
		<item>
			<title>bryan868 on "Dropping &quot;MultiViews&quot; support?"</title>
			<link>http://bbpress.org/forums/topic/dropping-multiviews-support#post-16070</link>
			<pubDate>Thu, 08 May 2008 21:52:50 +0000</pubDate>
			<dc:creator>bryan868</dc:creator>
			<guid isPermaLink="false">16070@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Definitely drop MultiViews
</p>]]></description>
					</item>
		<item>
			<title>hmcnally on "Dropping &quot;MultiViews&quot; support?"</title>
			<link>http://bbpress.org/forums/topic/dropping-multiviews-support#post-16050</link>
			<pubDate>Thu, 08 May 2008 15:46:53 +0000</pubDate>
			<dc:creator>hmcnally</dc:creator>
			<guid isPermaLink="false">16050@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>For those using a 1and1.com hosting package, try adding..</p>
<pre><code>Options -MultiViews</code></pre>
<p>to the top of the .htaccess file, and append the mod_rewrite stuff after it.  I guess with their shared serving packages, the MultiViews just goes nutty (apparently it's enabled, though), and needs to be turned off before using mod_rewrite.  They actually document this behavior at <a href="http://faq.1and1.com/dedicated_servers/managed_server/3.html" rel="nofollow">http://faq.1and1.com/dedicated_servers/managed_server/3.html</a></p>
<p>I guess this means I'm in favor of dropping MultiViews, though not fervently.
</p>]]></description>
					</item>
		<item>
			<title>jethrokapinksy on "Dropping &quot;MultiViews&quot; support?"</title>
			<link>http://bbpress.org/forums/topic/dropping-multiviews-support#post-15896</link>
			<pubDate>Wed, 30 Apr 2008 21:46:55 +0000</pubDate>
			<dc:creator>jethrokapinksy</dc:creator>
			<guid isPermaLink="false">15896@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>i wish i knew enough to offer an opinion. i've known about mod_rewrite for years from trying to configure drupal and wordpress. never heard of/used multiviews... hope that helps.
</p>]]></description>
					</item>
		<item>
			<title>thierryyyyyyy on "Dropping &quot;MultiViews&quot; support?"</title>
			<link>http://bbpress.org/forums/topic/dropping-multiviews-support#post-15686</link>
			<pubDate>Tue, 22 Apr 2008 18:36:33 +0000</pubDate>
			<dc:creator>thierryyyyyyy</dc:creator>
			<guid isPermaLink="false">15686@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>For me, mod_rewrite is the standard... I just never heard about MultiViews :(<br />
I begun programming php things since 5 years, even if I don't do it professionaly
</p>]]></description>
					</item>
		<item>
			<title>chrishajer on "Dropping &quot;MultiViews&quot; support?"</title>
			<link>http://bbpress.org/forums/topic/dropping-multiviews-support#post-15531</link>
			<pubDate>Sat, 19 Apr 2008 04:51:51 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">15531@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>&#62; the desire to reduce the amount of support traffic</p>
<p>That's the best reason right there.  Convert to a front controller, mod_rewrite and create the rewrite rules automagically, like WordPress, and 1/3 of the posts on this forum would never have happened.
</p>]]></description>
					</item>
		<item>
			<title>Sam Bauers on "Dropping &quot;MultiViews&quot; support?"</title>
			<link>http://bbpress.org/forums/topic/dropping-multiviews-support#post-15520</link>
			<pubDate>Fri, 18 Apr 2008 19:10:11 +0000</pubDate>
			<dc:creator>Sam Bauers</dc:creator>
			<guid isPermaLink="false">15520@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>This would not impact anything other than bbPress, it's just a question of choosing one methodology to support pretty URLs.</p>
<p>MultiViews could still be enabled on the server, it's just a question of whether bbPress uses it or not.</p>
<p>Mod_Rewrite is better for a couple of reasons. For a start it is better supported, and it is also a lot more flexible. We are thinking about running all requests through a single page (index.php) just like WordPress. This is called a <a href="http://martinfowler.com/eaaCatalog/frontController.html">front controller</a>, and is not as easily achieved with MultiViews.</p>
<p>There is also the desire to reduce the amount of support traffic around this topic and standardising on one approach may help that.
</p>]]></description>
					</item>
		<item>
			<title>psheerin on "Dropping &quot;MultiViews&quot; support?"</title>
			<link>http://bbpress.org/forums/topic/dropping-multiviews-support#post-15513</link>
			<pubDate>Fri, 18 Apr 2008 16:28:13 +0000</pubDate>
			<dc:creator>psheerin</dc:creator>
			<guid isPermaLink="false">15513@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Can you clarify the impact of disabling MultiViews? Will this impact only bbPress content on a site, or do you need it turned off for the whole site?</p>
<p>I like to mix WordPress, bbPress, and plain content for some images, PDF manual downloads, etc., and really need content negotiation/MultiViews supported in directories outside of WP/bbPress.</p>
<p>And why is Mod_Rewrite better than MultiViews for bbPress?
</p>]]></description>
					</item>
		<item>
			<title>chrishajer on "Dropping &quot;MultiViews&quot; support?"</title>
			<link>http://bbpress.org/forums/topic/dropping-multiviews-support#post-15499</link>
			<pubDate>Fri, 18 Apr 2008 06:56:26 +0000</pubDate>
			<dc:creator>chrishajer</dc:creator>
			<guid isPermaLink="false">15499@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p><strong>HowToGeek</strong>: I wonder if that's really true.  I'd like to believe it is, but I wonder if there are really hosts that allow the MultiViews directive in an .htaccess file, but don't allow mod_rewrite.  I'd like to believe it's true so that MultiViews goes away and bbPress gets proper rewriting via mod_rewrite, the sooner the better.  And have bbPress generate the rewrite rules then create or edit the .htaccess file automatically, just like WordPress, while you're at it.
</p>]]></description>
					</item>
		<item>
			<title>phreakymonkey on "Dropping &quot;MultiViews&quot; support?"</title>
			<link>http://bbpress.org/forums/topic/dropping-multiviews-support#post-15498</link>
			<pubDate>Fri, 18 Apr 2008 05:57:16 +0000</pubDate>
			<dc:creator>phreakymonkey</dc:creator>
			<guid isPermaLink="false">15498@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p><strong>chrishajer:</strong> Ah, sorry. mod_rewrite</p>
<p><strong>timskii:</strong> I could have sworn they had it turned off at some point, but maybe I am misremembering. The point is that hosters tend to do <a href="http://bbpress.org/forums/topic/smtp-plugin-request">stuff like that</a> (often without warning), so as robust a solution as possible would be ideal, naturally.</p>
<p>*I'm a designer, not a coder, so I'm mostly talking out of my ass.
</p>]]></description>
					</item>
		<item>
			<title>timskii on "Dropping &quot;MultiViews&quot; support?"</title>
			<link>http://bbpress.org/forums/topic/dropping-multiviews-support#post-15490</link>
			<pubDate>Thu, 17 Apr 2008 20:51:37 +0000</pubDate>
			<dc:creator>timskii</dc:creator>
			<guid isPermaLink="false">15490@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Dreamhost does allow mod_rewrite. And technically they <a href="http://wiki.dreamhost.com/Content_Negotiation">do support Multiviews</a>, but as a .htaccess hack.</p>
<p>However. I remember having terrible trouble trying to configure BBPress to use Multiviews, because it appeared to work, but didn't on certain pages. I ended up manually adding mod_rewrite.</p>
<p>As an aside, in automating anything like this, keep in mind that people like to do strange things with their directories. One of the annoyances of WordPress is that it assumes almost complete control of the layout of all directories below where it is installed.
</p>]]></description>
					</item>

	</channel>
</rss>

