<?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 Topic: Weird permalink problem..</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Topic: Weird permalink problem..</description>
<language>en</language>
<pubDate>Sat, 06 Sep 2008 06:39:20 +0000</pubDate>

<item>
<title>chrishajer on "Weird permalink problem.."</title>
<link>http://bbpress.org/forums/topic/weird-permalink-problem#post-14437</link>
<pubDate>Wed, 12 Mar 2008 23:16:05 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">14437@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Please start a new thread.
&#60;/p&#62;</description>
</item>
<item>
<title>Lowrobb on "Weird permalink problem.."</title>
<link>http://bbpress.org/forums/topic/weird-permalink-problem#post-14433</link>
<pubDate>Wed, 12 Mar 2008 17:13:34 +0000</pubDate>
<dc:creator>Lowrobb</dc:creator>
<guid isPermaLink="false">14433@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;My problem is different. I moved all my WP &#38;#38; BBpress file into different directory in my server. Then all the links lead to 404 pages. I updated permalinks (by a single click) in wordpress and it solves the problem. Now i can't update it in my BBpress site. Any help will be very appreciated. &#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
</item>
<item>
<title>spencerp on "Weird permalink problem.."</title>
<link>http://bbpress.org/forums/topic/weird-permalink-problem#post-2314</link>
<pubDate>Fri, 15 Dec 2006 22:55:48 +0000</pubDate>
<dc:creator>spencerp</dc:creator>
<guid isPermaLink="false">2314@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks Josh, I took out the &#34;if else&#34; statements in the two main plugin files, and it's working now.. ;):)&#60;/p&#62;
&#60;p&#62;In bb-memberlist.php found this:&#60;br /&#62;
&#60;strong&#62;function bb_get_memberlist_link( $tag = '' ) {&#60;br /&#62;
global $bb;&#60;br /&#62;
if ( $bb-&#38;gt;mod_rewrite )&#60;br /&#62;
$r = bb_get_option('uri') . &#34;mlist&#34; . ( '' != $tag ? &#34;?$tag&#34; : '' );&#60;br /&#62;
else&#60;br /&#62;
$r = bb_get_option('uri') . &#34;mlist.php&#34; . ( '' != $tag ? &#34;?$tag&#34; : '' );&#60;br /&#62;
return apply_filters( 'get_memberlist_link', $r );&#60;br /&#62;
}&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;Changed to this:&#60;br /&#62;
&#60;strong&#62;function bb_get_memberlist_link( $tag = '' ) {&#60;br /&#62;
global $bb;&#60;br /&#62;
$r = bb_get_option('uri') . &#34;mlist.php&#34; . ( '' != $tag ? &#34;?$tag&#34; : '' );&#60;br /&#62;
return apply_filters( 'get_memberlist_link', $r );&#60;br /&#62;
}&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;Then, in bb-privatemessage.php.. Find these two:&#60;br /&#62;
(near top of file)&#60;br /&#62;
&#60;strong&#62;function get_pm_fp_link( $tag = '' ) {&#60;br /&#62;
global $bb;&#60;br /&#62;
if ( $bb-&#38;gt;mod_rewrite )&#60;br /&#62;
$r = bb_get_option('uri') . &#34;pm&#34; . ( '' != $tag ? &#34;$tag&#34; : '' );&#60;br /&#62;
else&#60;br /&#62;
$r = bb_get_option('uri') . &#34;pm.php&#34; . ( '' != $tag ? &#34;$tag&#34; : '' );&#60;br /&#62;
return apply_filters( 'get_pm_fp_link', $r );&#60;br /&#62;
}&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;Changed to this:&#60;br /&#62;
&#60;strong&#62;function get_pm_fp_link( $tag = '' ) {&#60;br /&#62;
global $bb;&#60;br /&#62;
$r = bb_get_option('uri') . &#34;pm.php&#34; . ( '' != $tag ? &#34;$tag&#34; : '' );&#60;br /&#62;
return apply_filters( 'get_pm_fp_link', $r );&#60;br /&#62;
}&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;Then, near the middle of the file, find this one:&#60;br /&#62;
&#60;strong&#62;function bb_get_pm_link( $tag = '' ) {&#60;br /&#62;
global $bb;&#60;br /&#62;
if ( $bb-&#38;gt;mod_rewrite )&#60;br /&#62;
$r = bb_get_option('uri') . &#34;message&#34; . ( '' != $tag ? &#34;$tag&#34; : '' );&#60;br /&#62;
else&#60;br /&#62;
$r = bb_get_option('uri') . &#34;message.php&#34; . ( '' != $tag ? &#34;$tag&#34; : '' );&#60;br /&#62;
return apply_filters( 'get_pm_link', $r );&#60;br /&#62;
}&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;Changed it to this:&#60;br /&#62;
&#60;strong&#62;function bb_get_pm_link( $tag = '' ) {&#60;br /&#62;
global $bb;&#60;br /&#62;
$r = bb_get_option('uri') . &#34;message.php&#34; . ( '' != $tag ? &#34;$tag&#34; : '' );&#60;br /&#62;
return apply_filters( 'get_pm_link', $r );&#60;br /&#62;
}&#60;/strong&#62;&#60;/p&#62;
&#60;p&#62;This should be it, and should be right.. it's working for me now, at least.. Hope it maybe helps someone else out there.. ;):)&#60;/p&#62;
&#60;p&#62;spencerp
&#60;/p&#62;</description>
</item>
<item>
<title>ardentfrost on "Weird permalink problem.."</title>
<link>http://bbpress.org/forums/topic/weird-permalink-problem#post-2313</link>
<pubDate>Fri, 15 Dec 2006 22:10:47 +0000</pubDate>
<dc:creator>ardentfrost</dc:creator>
<guid isPermaLink="false">2313@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;you can look in bb-memberlist.php and bb-privatemessages.php in my-plugins and take out the part that looks for $bb-&#38;gt;mod_rewrite.  Of course, then it would just try to use mlist.php and pm.php
&#60;/p&#62;</description>
</item>
<item>
<title>spencerp on "Weird permalink problem.."</title>
<link>http://bbpress.org/forums/topic/weird-permalink-problem#post-2309</link>
<pubDate>Fri, 15 Dec 2006 21:04:26 +0000</pubDate>
<dc:creator>spencerp</dc:creator>
<guid isPermaLink="false">2309@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hey Josh, yeah.. this link works:&#60;br /&#62;
&#60;a href=&#34;http://spencerp.net/forums/mlist.php&#34; rel=&#34;nofollow&#34;&#62;http://spencerp.net/forums/mlist.php&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Same for the pm.php one:&#60;br /&#62;
&#60;a href=&#34;http://spencerp.net/forums/pm.php&#34; rel=&#34;nofollow&#34;&#62;http://spencerp.net/forums/pm.php&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Except whenever clicking on a message title link, and anything else related to that section, or what-not, it gives a 404..  =/ =(  Is there a way to keep this from happening.. ? &#60;/p&#62;
&#60;p&#62;spencerp&#60;br /&#62;
/I think this came up some where before, but I can't find it now, my mind is spinning with so much crap going on lately sigh.. can't think straight these days.. =P
&#60;/p&#62;</description>
</item>
<item>
<title>ardentfrost on "Weird permalink problem.."</title>
<link>http://bbpress.org/forums/topic/weird-permalink-problem#post-2305</link>
<pubDate>Fri, 15 Dec 2006 17:48:42 +0000</pubDate>
<dc:creator>ardentfrost</dc:creator>
<guid isPermaLink="false">2305@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I know all the memberlist and pm links check for is if $bb-&#38;gt;mod_rewrite is set to true... that's in your config file.&#60;/p&#62;
&#60;p&#62;When you do the thing to make the rest of the forum work, does going to mlist.php work?
&#60;/p&#62;</description>
</item>
<item>
<title>spencerp on "Weird permalink problem.."</title>
<link>http://bbpress.org/forums/topic/weird-permalink-problem#post-2304</link>
<pubDate>Fri, 15 Dec 2006 17:42:00 +0000</pubDate>
<dc:creator>spencerp</dc:creator>
<guid isPermaLink="false">2304@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Since I moved my domain name back onto Dreamhost.com, the &#34;Options +MultiViews&#34; line in the .htaccess file works partly, but not fully for ALL the links.. =/&#60;/p&#62;
&#60;p&#62;When adding that line, the memberlist and pm links work, but, when clicking on a username, or forum link, I get the old &#34;No input file specified&#34; message.. ? &#60;/p&#62;
&#60;p&#62;Now, when I use the rewrite rules from bb-admin/rewrite.php or whatever.. upload that to the forum's root, then the memberlist and pm links don't work.. &#38;gt;_&#38;lt;&#60;/p&#62;
&#60;p&#62;Does anyone have a clue, or work around for this maybe? Like, maybe adding a few lines in the bb-admin/rewrite.php verion of the .htaccess, just for those plugin links? Any thoughts, suggestions and such are welcome.. ;) :)&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://spencerp.net/forums/&#34; rel=&#34;nofollow&#34;&#62;http://spencerp.net/forums/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;spencerp
&#60;/p&#62;</description>
</item>

</channel>
</rss>
