<?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: user - Recent Posts</title>
		<link>http://bbpress.org/forums/tags/user</link>
		<description>bbPress Support Forums &#187; Tag: user - Recent Posts</description>
		<language>en-US</language>
		<pubDate>Thu, 09 Feb 2012 20:43:09 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
				<atom:link href="http://bbpress.org/forums/rss/tags/user" rel="self" type="application/rss+xml" />

		<item>
			<title>morio on "Post Moderation"</title>
			<link>http://bbpress.org/forums/topic/post-moderation#post-97788</link>
			<pubDate>Thu, 02 Feb 2012 17:21:00 +0000</pubDate>
			<dc:creator>morio</dc:creator>
			<guid isPermaLink="false">97788@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Simple bbpress topic moderation,this would go in your functions.php<br />
<pre><code>&#60;br /&#62;
	/*&#60;br /&#62;
	 * all topics published by guests&#60;br /&#62;
	 * must be approved by admin&#60;br /&#62;
	 */&#60;br /&#62;
	add_action( &#039;save_post&#039;, &#039;pending_guest_topics&#039; );&#60;br /&#62;
	function pending_guest_topics( $post_id ) {&#60;br /&#62;
		if ($parent_id = wp_is_post_revision($post_id)) {&#60;br /&#62;
			$post_id = $parent_id;&#60;br /&#62;
		}&#60;/p&#62;
&#60;p&#62;		if(!is_user_logged_in() &#38;&#38; current_user_can(&#039;manage-options&#039;)==false) {&#60;br /&#62;
			// unhook this function so it doesn&#039;t loop infinitely&#60;br /&#62;
			remove_action(&#039;save_post&#039;, &#039;pending_guest_topics&#039;);&#60;br /&#62;
			wp_update_post(array(&#039;ID&#039; =&#62; $post_id, &#039;post_status&#039; =&#62; &#039;pending&#039;));&#60;/p&#62;
&#60;p&#62;			// re-hook this function&#60;br /&#62;
			add_action(&#039;save_post&#039;, &#039;pending_guest_topics&#039;);&#60;br /&#62;
		}&#60;br /&#62;</code></pre>]]></description>
					</item>
		<item>
			<title>ealltech on "Alternate Way to Restrict Users"</title>
			<link>http://bbpress.org/forums/topic/alternate-way-to-restrict-users#post-96857</link>
			<pubDate>Sat, 07 Jan 2012 09:54:49 +0000</pubDate>
			<dc:creator>ealltech</dc:creator>
			<guid isPermaLink="false">96857@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>And the most important to make sure you edit all forums and topics based on above setting, just edit it and you have Members plugin setting.
</p>]]></description>
					</item>
		<item>
			<title>tyskkvinna on "Alternate Way to Restrict Users"</title>
			<link>http://bbpress.org/forums/topic/alternate-way-to-restrict-users#post-96842</link>
			<pubDate>Sat, 07 Jan 2012 02:38:47 +0000</pubDate>
			<dc:creator>tyskkvinna</dc:creator>
			<guid isPermaLink="false">96842@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Please clarify to me if I've misread this, but each user can only have ONE role, correct?</p>
<p>Which is why I wanted a way to do this without altering member roles. Because I have a fair quantity of members with a unique role already (I heavily use User Role Editor).</p>
<p>Like I said... I have two users who have a custom role already: StoreItems. So they can edit items in the store from a different plugin. Their bbpress membership is normal. One of these users will eventually have VIP and the other will have Special.</p>
<p>In order to do as you instructed, I will have to make some convoluted things happen.
</p>]]></description>
					</item>
		<item>
			<title>Themes Community on "Alternate Way to Restrict Users"</title>
			<link>http://bbpress.org/forums/topic/alternate-way-to-restrict-users#post-96840</link>
			<pubDate>Sat, 07 Jan 2012 02:02:41 +0000</pubDate>
			<dc:creator>Themes Community</dc:creator>
			<guid isPermaLink="false">96840@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>You can use Members plugin or User Role Editor plugins or use both. (I find easy to use both when creating or managing role)</p>
<p>Let say you will have membership system as follows: (no need to be moderator or administrator here and no forum private setting needed here)</p>
<p>Public Forums Area<br />
 -&#62; Guest Member (public)<br />
 -&#62; Participant Member (default member)<br />
 -&#62; No custom setting but make sure each forums is not hidden or private.<br />
 -&#62; Make sure this Participant Member role able to<br />
    -&#62; publish_replies<br />
    -&#62; publish_topics<br />
    -&#62; edit_topics<br />
    -&#62; edit_replies<br />
    -&#62; assign_topic_tags<br />
    -&#62; read</p>
<p>Special Forums Area<br />
 -&#62; Participant Member can read here<br />
 -&#62; Special Member, you need to upgrade from Participant member<br />
 -&#62; No custom setting but make sure each forums is not hidden or private.<br />
 -&#62; Make sure this Special Member role able to<br />
    -&#62; publish_replies<br />
    -&#62; publish_topics<br />
    -&#62; edit_topics<br />
    -&#62; edit_replies<br />
    -&#62; assign_topic_tags<br />
    -&#62; read</p>
<p>Restricted Forums Area<br />
 -&#62; VIP Member<br />
 -&#62; Custom setting, make sure each forums hidden.<br />
 -&#62; Make sure this Special Member role able to<br />
    -&#62; publish_replies<br />
    -&#62; publish_topics<br />
    -&#62; edit_topics<br />
    -&#62; edit_replies<br />
    -&#62; assign_topic_tags<br />
    -&#62; read<br />
    -&#62; read_hidden_forums</p>
<p>And the most important to make sure you edit all forums and topics based on above setting, just edit it and you have Members plugin setting. </p>
<p>Try activate members plugins and tick 'Enable the role manager' and 'Enable the content permissions feature' and when you edit a forum or topic a Members setting appears. Use it to restrict roles.
</p>]]></description>
					</item>
		<item>
			<title>tyskkvinna on "Alternate Way to Restrict Users"</title>
			<link>http://bbpress.org/forums/topic/alternate-way-to-restrict-users#post-96823</link>
			<pubDate>Fri, 06 Jan 2012 17:03:15 +0000</pubDate>
			<dc:creator>tyskkvinna</dc:creator>
			<guid isPermaLink="false">96823@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>What I want to do is have a few forums with different visibility and use functions. The problem is that every way I have found how to do this thus far requires me editing the user's role, which is not what I want to do. This will quickly become too bloated for me. I would rather use some other kind of meta information.</p>
<p>The main reason is because I will something akin to the following:</p>
<p>-Most of the forums (100% visible to all members and public; only members may post)<br />
-Special Forum (100% visible to all members and public; only SOME members may post)<br />
-Restricted Completely Forum (0% visible to public and general members; SOME members may see and post)</p>
<p>It is important to mention that the members who can see the restricted areas are not necessarily admins or moderators. Also we use WP for all kinds of things aside from just bbPress and I heavily use User Role Editor already. I have, for example, two  users who have a special role that allows them to edit items in the store. One of these users will eventually have access to the restricted forum; the other will not and will have no idea it exists. Neither of these users are moderators or admins on the fourm. You can see how at this point relying on user roles to accomplish this task is unrealistic. </p>
<p>What I wouldn't mind doing is some kind of meta way of doing this. I have a few ideas but I wanted to ask if anybody else has done this or knows of a way to potentially do this before I start mucking around and potentially breaking things.</p>
<p>Thank you!
</p>]]></description>
					</item>
		<item>
			<title>justinrm on "Profile blank: username, nothing else"</title>
			<link>http://bbpress.org/forums/topic/profile-blank-username-nothing-else#post-96491</link>
			<pubDate>Thu, 29 Dec 2011 23:50:55 +0000</pubDate>
			<dc:creator>justinrm</dc:creator>
			<guid isPermaLink="false">96491@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I'm using v2.x</p>
<p>Like the heading says, if I follow links from usernames I land on a blank profile page.  The user name's there (heading), but there's no content.</p>
<p>Can someone point me in the direction of a solution, please?</p>
<p>Justin
</p>]]></description>
					</item>
		<item>
			<title>woodwardmatt on "Issue displaying User Profiles (bbPress 2.0 Plugin)"</title>
			<link>http://bbpress.org/forums/topic/issue-displaying-user-profiles-bbpress-20-plugin#post-94311</link>
			<pubDate>Wed, 16 Nov 2011 07:30:00 +0000</pubDate>
			<dc:creator>woodwardmatt</dc:creator>
			<guid isPermaLink="false">94311@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I think that member needs to be blocked - spam *sigh*
</p>]]></description>
					</item>
		<item>
			<title>fenitra on "Issue displaying User Profiles (bbPress 2.0 Plugin)"</title>
			<link>http://bbpress.org/forums/topic/issue-displaying-user-profiles-bbpress-20-plugin#post-94309</link>
			<pubDate>Wed, 16 Nov 2011 07:27:03 +0000</pubDate>
			<dc:creator>fenitra</dc:creator>
			<guid isPermaLink="false">94309@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p><a href="http://forum.aufeminin.com/forum/f734/__f1407_f734-Essence-des-sens.html" rel="nofollow">http://forum.aufeminin.com/forum/f734/__f1407_f734-Essence-des-sens.html</a>
</p>]]></description>
					</item>
		<item>
			<title>woodwardmatt on "Issue displaying User Profiles (bbPress 2.0 Plugin)"</title>
			<link>http://bbpress.org/forums/topic/issue-displaying-user-profiles-bbpress-20-plugin#post-94308</link>
			<pubDate>Wed, 16 Nov 2011 07:06:52 +0000</pubDate>
			<dc:creator>woodwardmatt</dc:creator>
			<guid isPermaLink="false">94308@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hey JJJ, I've just checked the user_nicename within the database and this is formatted the same i.e. "FirstName LastName" including the space.</p>
<p>This user was created manually initially (and the user profile worked). Since then I have installed a commercial membership plugin that may have had its hand at work here (although it really shouldn't have).</p>
<p>I've done some further testing and have been able to see that the user_nicename formatting is changed when using a update function of the membership plugin. This is obviously the cause of the issue here.</p>
<p>Is there anywhere that the expected formatting of the user_nicename property is detailed so that I can refer the plugin author to it? Seems the fault lies with their coding.</p>
<p>Thanks for your input &#38; help!
</p>]]></description>
					</item>
		<item>
			<title>John James Jacoby on "Issue displaying User Profiles (bbPress 2.0 Plugin)"</title>
			<link>http://bbpress.org/forums/topic/issue-displaying-user-profiles-bbpress-20-plugin#post-94304</link>
			<pubDate>Wed, 16 Nov 2011 03:33:28 +0000</pubDate>
			<dc:creator>John James Jacoby</dc:creator>
			<guid isPermaLink="false">94304@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Seems like a bug with the generating of the actual link. User profile links should be using the user_nicename, which is a sanitized version of the user_login.</p>
<p>Can you confirm what the user_nicename is for the user you're seeing this issue with? Do you have any other plugins responsible for creating users (Facebook, Twitter) that might not be obeying the expected formatting of user_nicename?
</p>]]></description>
					</item>
		<item>
			<title>woodwardmatt on "Issue displaying User Profiles (bbPress 2.0 Plugin)"</title>
			<link>http://bbpress.org/forums/topic/issue-displaying-user-profiles-bbpress-20-plugin#post-94224</link>
			<pubDate>Mon, 14 Nov 2011 06:46:48 +0000</pubDate>
			<dc:creator>woodwardmatt</dc:creator>
			<guid isPermaLink="false">94224@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hey All,</p>
<p>I have installed the bbPress plugin on a few wordpress instances and tend to favour a vanilla install coupled with CSS overrides to provide the look &#38; feel I need.</p>
<p>On a recent install I have spotted an issue with user profiles. When I try and navigate to the user's profile (typically yoursite.com/users/&#60;username&#62;) I am receiving a 404 page from WordPress.</p>
<p>I can browse to another users profile and it resolves fine. The only difference I can see is that the profile which is not working has a username which has spaces e.g. FirstName LastName as opposed to FirstNameLastName.</p>
<p>Has anyone else had this issue and know if its a genuine bug or a "feature"? :P</p>
<p>Cheers, Matt
</p>]]></description>
					</item>
		<item>
			<title>pimarts on "WordPress/BBPress Single Sign On"</title>
			<link>http://bbpress.org/forums/topic/wordpressbbpress-single-sign-on/page/2#post-90241</link>
			<pubDate>Thu, 28 Jul 2011 21:06:21 +0000</pubDate>
			<dc:creator>pimarts</dc:creator>
			<guid isPermaLink="false">90241@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Pretty excited to see if you can find another topic to paste that link into.
</p>]]></description>
					</item>
		<item>
			<title>KitchenDip on "Allow User Class to Edit their own Custom Titles"</title>
			<link>http://bbpress.org/forums/topic/allow-user-class-to-edit-their-own-custom-titles#post-89836</link>
			<pubDate>Sun, 17 Jul 2011 00:34:56 +0000</pubDate>
			<dc:creator>KitchenDip</dc:creator>
			<guid isPermaLink="false">89836@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Thanks for the direction, could you provide a little bit more insight.  Where exactly would that string go?
</p>]]></description>
					</item>
		<item>
			<title>master5o1 on "Allow User Class to Edit their own Custom Titles"</title>
			<link>http://bbpress.org/forums/topic/allow-user-class-to-edit-their-own-custom-titles#post-89835</link>
			<pubDate>Sun, 17 Jul 2011 00:05:38 +0000</pubDate>
			<dc:creator>master5o1</dc:creator>
			<guid isPermaLink="false">89835@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I would suggest that this meta-key could be a start somewhere.</p>
<p><code>$custom_title = bb_get_usermeta($user-&#62;ID, &#039;bbpress_title&#039;);</code>
</p>]]></description>
					</item>
		<item>
			<title>KitchenDip on "Allow User Class to Edit their own Custom Titles"</title>
			<link>http://bbpress.org/forums/topic/allow-user-class-to-edit-their-own-custom-titles#post-89834</link>
			<pubDate>Sat, 16 Jul 2011 23:58:42 +0000</pubDate>
			<dc:creator>KitchenDip</dc:creator>
			<guid isPermaLink="false">89834@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Does anyone know a good way to allow "contributors" and above, to edit their own custom title?
</p>]]></description>
					</item>
		<item>
			<title>grt on "User registration"</title>
			<link>http://bbpress.org/forums/topic/user-registration-1#post-89558</link>
			<pubDate>Sun, 10 Jul 2011 21:55:48 +0000</pubDate>
			<dc:creator>grt</dc:creator>
			<guid isPermaLink="false">89558@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi wordchef,</p>
<p>What I had to do was to go into the WordPress Discussion settings and uncheck 'Users must be registered and logged in to comment '.</p>
<p>When I did that it gave me the boxes to comment.</p>
<p>Cheers,</p>
<p>Glyn
</p>]]></description>
					</item>
		<item>
			<title>pimarts on "User registration"</title>
			<link>http://bbpress.org/forums/topic/user-registration-1#post-89557</link>
			<pubDate>Sun, 10 Jul 2011 21:48:30 +0000</pubDate>
			<dc:creator>pimarts</dc:creator>
			<guid isPermaLink="false">89557@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>The plugin is not finished yet, documentation will be made (available) when the plugin is done. For now you'll have to look into the files and search this forum. Because this question has been answered already.</p>
<p>See <a href="http://bbpress.org/forums/topic/bbpress-and-studiopress-genesis-can-someone-please-tell-me-if-this-works" rel="nofollow">http://bbpress.org/forums/topic/bbpress-and-studiopress-genesis-can-someone-please-tell-me-if-this-works</a> for instance.</p>
<p>In short: bbPress uses WordPress users, your users can register like they would normally for the WordPress installation. There are shortcodes for login / register pages though.
</p>]]></description>
					</item>
		<item>
			<title>wordchef on "User registration"</title>
			<link>http://bbpress.org/forums/topic/user-registration-1#post-89555</link>
			<pubDate>Sun, 10 Jul 2011 21:43:55 +0000</pubDate>
			<dc:creator>wordchef</dc:creator>
			<guid isPermaLink="false">89555@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I may also be stupid, cuz I can't figure this one out...have looked at the settings, the users settings, the forum itself, not sure where else I should check. Documentation would REALLY be helpful. Even if it's just basic stuff for us newbies.
</p>]]></description>
					</item>
		<item>
			<title>grt on "User registration"</title>
			<link>http://bbpress.org/forums/topic/user-registration-1#post-89553</link>
			<pubDate>Sun, 10 Jul 2011 20:37:19 +0000</pubDate>
			<dc:creator>grt</dc:creator>
			<guid isPermaLink="false">89553@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I was being stupid!</p>
<p>I've worked it out....
</p>]]></description>
					</item>
		<item>
			<title>grt on "User registration"</title>
			<link>http://bbpress.org/forums/topic/user-registration-1#post-89551</link>
			<pubDate>Sun, 10 Jul 2011 18:27:20 +0000</pubDate>
			<dc:creator>grt</dc:creator>
			<guid isPermaLink="false">89551@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi all,</p>
<p>I have just set up bbpress 2.0 as a plug in to my WordPress website and it is working great.</p>
<p>However, I can's seem to work out how a user (other than me) can register and log in to start a topic or reply to a post....</p>
<p>Can anyone help?</p>
<p>Many thanks,</p>
<p>Glyn
</p>]]></description>
					</item>
		<item>
			<title>John James Jacoby on "WordPress Multisite and bbPress plugin user configuration"</title>
			<link>http://bbpress.org/forums/topic/wordpress-multisite-and-bbpress-plugin-user-configuration#post-89293</link>
			<pubDate>Sat, 02 Jul 2011 05:21:22 +0000</pubDate>
			<dc:creator>John James Jacoby</dc:creator>
			<guid isPermaLink="false">89293@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Seems to be part of the same issue others are experiencing. I'm on it.</p>
<p>Moving discussion <a href="http://bbpress.org/forums/topic/multisite-and-bbpress-plugin">here</a> going forward. :)
</p>]]></description>
					</item>
		<item>
			<title>toedter_k on "WordPress Multisite and bbPress plugin user configuration"</title>
			<link>http://bbpress.org/forums/topic/wordpress-multisite-and-bbpress-plugin-user-configuration#post-89286</link>
			<pubDate>Fri, 01 Jul 2011 17:13:13 +0000</pubDate>
			<dc:creator>toedter_k</dc:creator>
			<guid isPermaLink="false">89286@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Hi All,</p>
<p>I have a fresh multisite WordPress 3.1.4 with bbPress plugin 2.0-beta-3b. I can run bbPress both in network-activate mode or per site-activate. As network-admin I can create forums, post and reply to posts. But if I configure that new WordPress users can register themselves, they are not allowed to create forum topics or reply.</p>
<p>What extra configurations do I have to do to configure that all new registered WordPress users can create topics and reply to them?</p>
<p>Thanks</p>
<p>Kai
</p>]]></description>
					</item>
		<item>
			<title>Ramiuz on "Controlling Spam"</title>
			<link>http://bbpress.org/forums/topic/controlling-spam#post-88572</link>
			<pubDate>Wed, 08 Jun 2011 14:29:40 +0000</pubDate>
			<dc:creator>Ramiuz</dc:creator>
			<guid isPermaLink="false">88572@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>NoSpamUser + Project HoneyPot + ReCaptcha
</p>]]></description>
					</item>
		<item>
			<title>mikemcd22 on "Controlling Spam"</title>
			<link>http://bbpress.org/forums/topic/controlling-spam#post-88568</link>
			<pubDate>Wed, 08 Jun 2011 11:54:23 +0000</pubDate>
			<dc:creator>mikemcd22</dc:creator>
			<guid isPermaLink="false">88568@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p><a href="http://wangguard.com/">Wanguard</a> is helpful.  That said, I have migrated over to BBpress, which has the same issues with registration:  NO ADMIN CONTROL!!
</p>]]></description>
					</item>
		<item>
			<title>mikemcd22 on "Controlling Spam"</title>
			<link>http://bbpress.org/forums/topic/controlling-spam#post-87548</link>
			<pubDate>Tue, 17 May 2011 12:44:41 +0000</pubDate>
			<dc:creator>mikemcd22</dc:creator>
			<guid isPermaLink="false">87548@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Has anyone found a solution?  I am ready to shut by bbpress installation down.  I did use mass edit to get rid of some of the spam registrants but I would like an option to approve all new users.  As it stand now, anyone can register and start posting...
</p>]]></description>
					</item>
		<item>
			<title>aaironman on "Cannot Edit Users"</title>
			<link>http://bbpress.org/forums/topic/cannot-edit-users#post-84655</link>
			<pubDate>Sat, 12 Mar 2011 15:29:19 +0000</pubDate>
			<dc:creator>aaironman</dc:creator>
			<guid isPermaLink="false">84655@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>All I know is that it wouldn't work before and now it works perfectly.
</p>]]></description>
					</item>
		<item>
			<title>Ben L. on "Cannot Edit Users"</title>
			<link>http://bbpress.org/forums/topic/cannot-edit-users#post-84652</link>
			<pubDate>Sat, 12 Mar 2011 15:11:07 +0000</pubDate>
			<dc:creator>Ben L.</dc:creator>
			<guid isPermaLink="false">84652@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I don't understand what you did. When you change the folder name, the pretty permalinks gets confused. All you have to do is go into permalinks settings and save without making any changes. This works the same way in WordPress.
</p>]]></description>
					</item>
		<item>
			<title>aaironman on "Cannot Edit Users"</title>
			<link>http://bbpress.org/forums/topic/cannot-edit-users#post-84577</link>
			<pubDate>Sat, 12 Mar 2011 00:45:10 +0000</pubDate>
			<dc:creator>aaironman</dc:creator>
			<guid isPermaLink="false">84577@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>Good now - all you have to do is turn off permalinks after you move a directory.</p>
<p>If you want the Permalinks options to work, you have to change the "options-permalinks.php" file. Mine initially looked like this:</p>
<p>**********</p>
<p>$permalink_options = array(<br />
	'mod_rewrite' =&#62; array(<br />
		'title' =&#62; __( 'Permalink type' ),<br />
		'type' =&#62; 'radio',<br />
		'options' =&#62; array(<br />
			'0' =&#62; sprintf( __( '&#60;span&#62;None&#60;/span&#62; <code>%s</code>' ), bb_get_uri( 'forums.php', array( 'id' =&#62; 1 ), BB_URI_CONTEXT_TEXT ) ),<br />
			'1' =&#62; sprintf( __( '&#60;span&#62;Numeric&#60;/span&#62; <code>%s</code>' ), bb_get_uri( 'forums/1', null, BB_URI_CONTEXT_TEXT ) ),<br />
			'slugs' =&#62; sprintf( __( '&#60;span&#62;Name based&#60;/span&#62; <code>%s</code>' ), bb_get_uri( '/forums/first-forum', null, BB_URI_CONTEXT_TEXT ) )<br />
		)<br />
	)<br />
);</p>
<p>**********</p>
<p>And so I changed it to this:</p>
<p>**********</p>
<p>$permalink_options = array(<br />
	'mod_rewrite' =&#62; array(<br />
		'title' =&#62; __( 'Permalink type' ),<br />
		'type' =&#62; 'radio',<br />
		'options' =&#62; array(<br />
			'0' =&#62; sprintf( __( '&#60;span&#62;None&#60;/span&#62; <code>%s</code>' ), bb_get_uri( 'forums.php', array( 'id' =&#62; 1 ), BB_URI_CONTEXT_TEXT ) ),<br />
			'1' =&#62; sprintf( __( '&#60;span&#62;Numeric&#60;/span&#62; <code>%s</code>' ), bb_get_uri( '/1', null, BB_URI_CONTEXT_TEXT ) ),<br />
			'slugs' =&#62; sprintf( __( '&#60;span&#62;Name based&#60;/span&#62; <code>%s</code>' ), bb_get_uri( '/first-forum', null, BB_URI_CONTEXT_TEXT ) )<br />
		)<br />
	)<br />
);</p>
<p>**********
</p>]]></description>
					</item>
		<item>
			<title>aaironman on "Cannot Edit Users"</title>
			<link>http://bbpress.org/forums/topic/cannot-edit-users#post-84576</link>
			<pubDate>Sat, 12 Mar 2011 00:40:48 +0000</pubDate>
			<dc:creator>aaironman</dc:creator>
			<guid isPermaLink="false">84576@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>By the way, I'm running Linux/4GH, PHP 5.x, MySQL on godaddy.com. I have the latest versions of WordPress (3.1) and bbPress(1.0.3) installed.
</p>]]></description>
					</item>
		<item>
			<title>aaironman on "Cannot Edit Users"</title>
			<link>http://bbpress.org/forums/topic/cannot-edit-users-1#post-84541</link>
			<pubDate>Fri, 11 Mar 2011 04:18:10 +0000</pubDate>
			<dc:creator>aaironman</dc:creator>
			<guid isPermaLink="false">84541@http://bbpress.org/forums/</guid>
			<description><![CDATA[<p>I've just installed bbPress and integrated with WordPress. All was well until I renamed the file folder to "forums" from "bbPress". Everything is working perfectly except I cannot edit user profiles! They can register and all else seems to work on the site and the Admin, just no editing the user profile pages (either from the forum or from admin). </p>
<p>When I attempt to edit user profile it switched to my WordPress and gives me a "Error 404: Page Not Found". </p>
<p>Here is a sample URL: "http://jernigan.co/forums/profile/admin"
</p>]]></description>
					</item>

	</channel>
</rss>

