<?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: registration</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Tag: registration</description>
<language>en</language>
<pubDate>Sun, 20 Jul 2008 05:03:23 +0000</pubDate>

<item>
<title>swaymedia on "Registering with another users email ???"</title>
<link>http://bbpress.org/forums/topic/registering-with-another-users-email#post-17370</link>
<pubDate>Thu, 17 Jul 2008 00:47:55 +0000</pubDate>
<dc:creator>swaymedia</dc:creator>
<guid isPermaLink="false">17370@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;yeah sorry ck basically i meant that STOPPING people from having more than one account with the same email address can be a way of addressing the issue of  &#34;Multiple Accounts&#34;.&#60;/p&#62;
&#60;p&#62;because if the user really wanted to make another account he/she would have to go through the annoying/lengthly process of creating another gmail/hotmail account. But the current  issue is that it only takes literally 5 seconds to create another account becuase the new account details will be sent to the same email address over and over again.&#60;/p&#62;
&#60;p&#62;anyway, i never thought of the redirecting I guess im just losing alot of sleep, yeahs nice idea. .htaccess
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Registering with another users email ???"</title>
<link>http://bbpress.org/forums/topic/registering-with-another-users-email#post-17367</link>
<pubDate>Wed, 16 Jul 2008 23:35:50 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">17367@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;nv1962, it would be a good plugin to learn/practice from. Roughly 3-5 lines total. Essentially you'd add an action to bb_send_headers and just like my plugin above, if the bb_get_location==&#34;register-page&#34; you echo the redirect header for the wordpress page (and then do a die() so no other code can execute until it redirects).
&#60;/p&#62;</description>
</item>
<item>
<title>nv1962 on "Registering with another users email ???"</title>
<link>http://bbpress.org/forums/topic/registering-with-another-users-email#post-17365</link>
<pubDate>Wed, 16 Jul 2008 23:27:41 +0000</pubDate>
<dc:creator>nv1962</dc:creator>
<guid isPermaLink="false">17365@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The sole (arguably flimsy) reason I cleaned-out the register.php file is pure paranoia: to avoid directly injected calls that somehow (mysteriously) don't get caught by Apache (htaccess).&#60;/p&#62;
&#60;p&#62;Let's say I'm not too confident in my mad php skillz to write such a plugin... I'll try it with a redirect instead.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Registering with another users email ???"</title>
<link>http://bbpress.org/forums/topic/registering-with-another-users-email#post-17364</link>
<pubDate>Wed, 16 Jul 2008 23:22:47 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">17364@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Well login integration is not as important as the register part. As far as your instructions, I wouldn't recommend deleting the contents of a core file but the redirect part is okay.&#60;/p&#62;
&#60;p&#62;It occurs to me, it's actually possible to redirect the register page in bbpress to the wordpress side via plugin with no edits required anywhere.&#60;/p&#62;
&#60;p&#62;Remember that bbPress registration process should catch up to the WordPress side eventually. In fact I like it's layout better but WordPress's is more mature code-wise.
&#60;/p&#62;</description>
</item>
<item>
<title>nv1962 on "Registering with another users email ???"</title>
<link>http://bbpress.org/forums/topic/registering-with-another-users-email#post-17363</link>
<pubDate>Wed, 16 Jul 2008 23:17:53 +0000</pubDate>
<dc:creator>nv1962</dc:creator>
<guid isPermaLink="false">17363@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Sorry for the tangent _ck_ but... you really recommend redirecting all &#60;em&#62;logins&#60;/em&#62; to WP, too? As in, &#60;a href=&#34;http://bbpress.org/forums/topic/simple-integration-tip-for-new-registration&#34;&#62;this silly thing&#60;/a&#62; I just posted about &#34;unifying&#34; registration on the WP side?
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Registering with another users email ???"</title>
<link>http://bbpress.org/forums/topic/registering-with-another-users-email#post-17362</link>
<pubDate>Wed, 16 Jul 2008 23:07:56 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">17362@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Yes, this is why I always recommend to people when integrating with WordPress that they redirect all login and registration links to the wordpress side. It's had years of development in that area.&#60;/p&#62;
&#60;p&#62;In any case, here is a simple plugin to prevent duplicate email addresses. Unfortunately bbPress has no way to place custom error messages on the page without template hacking but this should do:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
/*
Plugin Name: no duplicate email addresses
Author: _ck_
*/ 

if ($_POST &#38;#38;&#38;#38; bb_get_location()==&#38;quot;register-page&#38;quot;) {add_filter(&#38;#39;bb_verify_email&#38;#39;,&#38;#39;no_duplicate_email&#38;#39;);}

function no_duplicate_email($email) {
if ($email) {global $bbdb; if (!$bbdb-&#38;gt;get_row($bbdb-&#38;gt;prepare(&#38;quot;SELECT * FROM $bbdb-&#38;gt;users WHERE user_email = %s&#38;quot;, $email))) {return $email;}
else {add_action(&#38;#39;bb_foot&#38;#39;,&#38;#39;no_duplicate_email_alert&#38;#39;); return false;}}
}
function no_duplicate_email_alert() {echo &#38;quot;&#38;lt;scr&#38;quot;.&#38;quot;ipt&#38;gt;alert(&#38;#39;&#38;quot;.__(&#38;quot;email address already registered&#38;quot;).&#38;quot;&#38;#39;);&#38;lt;/script&#38;gt;&#38;quot;;}
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;(bbPress 0.9 or higher required)
&#60;/p&#62;</description>
</item>
<item>
<title>nv1962 on "Registering with another users email ???"</title>
<link>http://bbpress.org/forums/topic/registering-with-another-users-email#post-17361</link>
<pubDate>Wed, 16 Jul 2008 23:00:46 +0000</pubDate>
<dc:creator>nv1962</dc:creator>
<guid isPermaLink="false">17361@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Impersonation might be a cause for concern. Plus, there's ye olde sockpuppet issue, which some forums expressly forbid.
&#60;/p&#62;</description>
</item>
<item>
<title>nv1962 on "[tip] Simple integration of bbPress/WP for new registrations"</title>
<link>http://bbpress.org/forums/topic/simple-integration-tip-for-new-registration#post-17359</link>
<pubDate>Wed, 16 Jul 2008 22:45:40 +0000</pubDate>
<dc:creator>nv1962</dc:creator>
<guid isPermaLink="false">17359@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#60;em&#62;(Subtitle: how to use registration protection/filtering in WP for bbPress - the lazy but effective way!)&#60;/em&#62;&#60;/p&#62;
&#60;p&#62;Say: you're a PHP newbie (like me), want to run bbPress &#60;em&#62;and&#60;/em&#62; WP, and have successfully completed the installation of the plugin to integrate the bbPress user database with WP's (whew!) and &#60;em&#62;then&#60;/em&#62; you discover that people can register via either the bbPress or WP . Suppose furthermore that you're getting hammered by nasty bots registering themselves, and have an open self-registration policy on your WP blog/CMS, and therefore installed a nifty registration screening plugin (oh say, &#60;a href=&#34;http://wordpress.org/extend/plugins/wp-recaptcha/&#34;&#62;WP-reCAPTCHA&#60;/a&#62;) and would like to use that for bbPress.&#60;/p&#62;
&#60;p&#62;How could you do that? With two simple edits you can:&#60;/p&#62;
&#60;p&#62;1) Open the register.php file of bbPress (in bbPress' root directory) and delete EVERYTHING in it, and save your cleaned-out register.php file back to its place on the server (saving an empty file is to avoid a possible &#34;file not found&#34; error after the next step)&#60;/p&#62;
&#60;p&#62;2) Open (or create if you don't have it - which would be rare) a .htaccess file in the &#60;strong&#62;web server's root directory&#60;/strong&#62; and add the following &#60;strong&#62;single&#60;/strong&#62; line (it's displayed here on two lines, but really ought to be a single line!), and put that at/near the top of your .htaccess file (assuming your bbPress install sits in the /forum sub directory; else, modify accordingly to point to the register.php file):&#60;/p&#62;
&#60;p&#62;&#60;code&#62;Redirect permanent /forum/register.php &#60;a href=&#34;http://www.example.com/wp-login.php?action=register&#34; rel=&#34;nofollow&#34;&#62;http://www.example.com/wp-login.php?action=register&#60;/a&#62;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Make sure you substitute &#34;example.com&#34; with your own domain (of course).&#60;/p&#62;
&#60;p&#62;3) This step is non-existent. Instead, enjoy your newfound &#60;em&#62;unified registration bliss&#60;/em&#62; for dummies!
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Registering with another users email ???"</title>
<link>http://bbpress.org/forums/topic/registering-with-another-users-email#post-17357</link>
<pubDate>Wed, 16 Jul 2008 22:31:17 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">17357@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Why is it a problem to use someone else's email address?  The password email would go to that email address, correct?  So how would the person using someone else's email address benefit from that?
&#60;/p&#62;</description>
</item>
<item>
<title>swaymedia on "Registering with another users email ???"</title>
<link>http://bbpress.org/forums/topic/registering-with-another-users-email#post-17354</link>
<pubDate>Wed, 16 Jul 2008 22:17:33 +0000</pubDate>
<dc:creator>swaymedia</dc:creator>
<guid isPermaLink="false">17354@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;that means people can keep sign-up new accounts to give them selfs Karma points....&#60;/p&#62;
&#60;p&#62;i dont mean to sound like a prick __ck__ but can you whip up some sort of plugin for this problem or some instructions. becuase i wouldnt know where to start let alone code somthing like that.&#60;/p&#62;
&#60;p&#62;EDIT: Wordpress has it goin ok, I get the message:-&#60;/p&#62;
&#60;p&#62;&#60;code&#62;ERROR: This email is already registered, please choose another one.&#60;/code&#62; &#60;/p&#62;
&#60;p&#62;when registering an already existing email.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Registering with another users email ???"</title>
<link>http://bbpress.org/forums/topic/registering-with-another-users-email#post-17353</link>
<pubDate>Wed, 16 Jul 2008 21:29:10 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">17353@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Whoa I never realized that.&#60;br /&#62;
I wonder if it's also that way on the WordPress side.&#60;/p&#62;
&#60;p&#62;Well it shouldn't be too hard to whip up some code for that.
&#60;/p&#62;</description>
</item>
<item>
<title>swaymedia on "Registering with another users email ???"</title>
<link>http://bbpress.org/forums/topic/registering-with-another-users-email#post-17351</link>
<pubDate>Wed, 16 Jul 2008 21:11:45 +0000</pubDate>
<dc:creator>swaymedia</dc:creator>
<guid isPermaLink="false">17351@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I just realised that two users can have the same email address, is it possible to give an error message if a user tries to register with an existing email.&#60;/p&#62;
&#60;p&#62;I cant find a plugin for it.&#60;/p&#62;
&#60;p&#62;any help appreciated please.
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Hide login form on registration page"</title>
<link>http://bbpress.org/forums/topic/hide-login-form-on-registration-page#post-17341</link>
<pubDate>Wed, 16 Jul 2008 17:04:17 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">17341@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Sure, if that really bothers you, with bbPress you can do almost anything if you get clever.&#60;/p&#62;
&#60;p&#62;Edit the &#60;code&#62;login-form.php&#60;/code&#62; template and wrap the entire &#60;code&#62;&#38;lt;form&#38;gt;&#38;lt;/form&#38;gt;&#60;/code&#62; in something like this (untested)&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php if (bb_get_location()!=&#38;quot;register-page&#38;quot;) { ?&#38;gt;
&#38;lt;form blah blah blah
...
&#38;lt;/form&#38;gt;
&#38;lt;?php } ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>annailleselliot on "Removing Registration"</title>
<link>http://bbpress.org/forums/topic/removing-registration#post-17329</link>
<pubDate>Tue, 15 Jul 2008 22:37:40 +0000</pubDate>
<dc:creator>annailleselliot</dc:creator>
<guid isPermaLink="false">17329@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Yay thank you so much, worked perfectly!
&#60;/p&#62;</description>
</item>
<item>
<title>pfox on "Remove registration fields"</title>
<link>http://bbpress.org/forums/topic/remove-registration-fields#post-17322</link>
<pubDate>Tue, 15 Jul 2008 21:35:54 +0000</pubDate>
<dc:creator>pfox</dc:creator>
<guid isPermaLink="false">17322@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks... that worked.&#60;br /&#62;
Of course, after that I decided I wanted to add a field.&#60;/p&#62;
&#60;p&#62;I found this plug-in which you can also use to remove fields by actually modifying the profile fields, which worked equally well, plus allowed me to add a few fields.&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/forums/topic/plugin-allow-additional-or-custom-profile-fields?replies=8&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/plugin-allow-additional-or-custom-profile-fields?replies=8&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>pfox on "Hide login form on registration page"</title>
<link>http://bbpress.org/forums/topic/hide-login-form-on-registration-page#post-17321</link>
<pubDate>Tue, 15 Jul 2008 21:33:01 +0000</pubDate>
<dc:creator>pfox</dc:creator>
<guid isPermaLink="false">17321@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Is there any way to just show a login link on the registration page instead of showing the login form? It's kind of confusing to show the login form when someone is filling out the registration page.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Remove registration fields"</title>
<link>http://bbpress.org/forums/topic/remove-registration-fields#post-17313</link>
<pubDate>Tue, 15 Jul 2008 19:54:40 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">17313@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;try this:&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/forums/topic/profile-fields&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/profile-fields&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>pfox on "Remove registration fields"</title>
<link>http://bbpress.org/forums/topic/remove-registration-fields#post-17310</link>
<pubDate>Tue, 15 Jul 2008 19:41:43 +0000</pubDate>
<dc:creator>pfox</dc:creator>
<guid isPermaLink="false">17310@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;How do I remove some of the fields that are on the registration form? I'm using bbPress for a support forum and it doesn't make sense to ask people things like their occupation and interests.&#60;/p&#62;
&#60;p&#62;I don't really care if there's not a plugin to do it (although that'd be nice), but I just can't find where the profile_info_keys are so that I can edit them.
&#60;/p&#62;</description>
</item>
<item>
<title>swaymedia on "Removing Registration"</title>
<link>http://bbpress.org/forums/topic/removing-registration#post-17308</link>
<pubDate>Tue, 15 Jul 2008 19:09:55 +0000</pubDate>
<dc:creator>swaymedia</dc:creator>
<guid isPermaLink="false">17308@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;it usually goes as follows:-&#60;/p&#62;
&#60;p&#62;`blahblah.com/forum/bb-templates/kakumei/login-form.php&#60;/p&#62;
&#60;p&#62;note: - &#34;kakumei is the theme name, you could try replacing it with the title of your theme your using&#34;&#60;/p&#62;
&#60;p&#62;find this snippet of code:-&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;?php printf(__(&#38;#39;&#38;lt;a href=&#38;quot;%1$s&#38;quot;&#38;gt;Register&#38;lt;/a&#38;gt; or log in&#38;#39;), bb_get_option(&#38;#39;uri&#38;#39;).&#38;#39;register.php&#38;#39;) ?&#38;#38;gt&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;and replace it with&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;?//php printf(__(&#38;#39;&#38;lt;a href=&#38;quot;%1$s&#38;quot;&#38;gt;Register&#38;lt;/a&#38;gt; or log in&#38;#39;), bb_get_option(&#38;#39;uri&#38;#39;).&#38;#39;register.php&#38;#39;) ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;all you doing here is blocking out this code by putting the blocks &#34;//&#34; which means the code (link) to the registration page is will no longer be there.&#60;/p&#62;
&#60;p&#62;Good luck&#60;/p&#62;
&#60;p&#62;sway&#60;br /&#62;
&#60;a href=&#34;http://www.swaymedia.com&#34; rel=&#34;nofollow&#34;&#62;http://www.swaymedia.com&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.picbi.com/forum&#34; rel=&#34;nofollow&#34;&#62;www.picbi.com/forum&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>annailleselliot on "Removing Registration"</title>
<link>http://bbpress.org/forums/topic/removing-registration#post-17295</link>
<pubDate>Tue, 15 Jul 2008 11:05:17 +0000</pubDate>
<dc:creator>annailleselliot</dc:creator>
<guid isPermaLink="false">17295@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm not terribly good with code, I was hoping there was a plugin or option I could use rather than editing each page because I'm sure I'll mess something up! But if that's how it must be, that's how it must be...
&#60;/p&#62;</description>
</item>
<item>
<title>swaymedia on "Removing Registration"</title>
<link>http://bbpress.org/forums/topic/removing-registration#post-17293</link>
<pubDate>Tue, 15 Jul 2008 09:53:14 +0000</pubDate>
<dc:creator>swaymedia</dc:creator>
<guid isPermaLink="false">17293@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;can you not just remove the link to the registry page off the theme files ?
&#60;/p&#62;</description>
</item>
<item>
<title>annailleselliot on "Removing Registration"</title>
<link>http://bbpress.org/forums/topic/removing-registration#post-17292</link>
<pubDate>Tue, 15 Jul 2008 09:40:41 +0000</pubDate>
<dc:creator>annailleselliot</dc:creator>
<guid isPermaLink="false">17292@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I have a new installation of bb press integrated with my main wordpress site. For a whole bunch of reasons I want to edit the bb press installation so that there's no way to register for the board through the board itself; I only want people to be able to register through the main wordpress site. Is there any way to block registration through the board, or just remove each element of it manually? I'm using the theme &#34;Scoun&#34; if it makes any difference. Any suggestions would be greatly appreciated.
&#60;/p&#62;</description>
</item>
<item>
<title>Bo Fiddlesticks on "(yet another) integration bug, no Role set on registration"</title>
<link>http://bbpress.org/forums/topic/yet-another-integration-bug-no-role-set-on-registration#post-16718</link>
<pubDate>Thu, 12 Jun 2008 10:17:49 +0000</pubDate>
<dc:creator>Bo Fiddlesticks</dc:creator>
<guid isPermaLink="false">16718@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Unfortunately, Detective's solution doesn't work with the latest versions. I'm experiencing the same issues (integrated scenario):&#60;br /&#62;
User registers on bbpress and logs in there&#60;br /&#62;
User can acces the WP Site Admin section, but it says: Welcome, . (a space instead of the user name)&#60;br /&#62;
User comments are registered as 'Anonymous'&#60;/p&#62;
&#60;p&#62;I noticed the only way to fix this is to go to WP user management panel, editing and saving the user.&#60;br /&#62;
So the user has to be actively (and manually :\ ) updated to have his name listed under his comments.&#60;/p&#62;
&#60;p&#62;I haven't found any way to avoid this, but if anyone can I'd be much abliged!
&#60;/p&#62;</description>
</item>
<item>
<title>cordoval on "Simple registration"</title>
<link>http://bbpress.org/forums/topic/simple-registration#post-16640</link>
<pubDate>Sat, 07 Jun 2008 06:08:27 +0000</pubDate>
<dc:creator>cordoval</dc:creator>
<guid isPermaLink="false">16640@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;solved!!!&#60;/p&#62;
&#60;p&#62;add a previous line fetching the posted value:&#60;br /&#62;
$temp = $_POST['tpassword'];&#60;/p&#62;
&#60;p&#62;and then use:&#60;/p&#62;
&#60;p&#62;bb_update_user_password( $user_id, $temp ); &#60;/p&#62;
&#60;p&#62;That is it, you have your system where you can let your users set their own passwords. Any security threads?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;mailto:cordoval@gmail.com&#34;&#62;cordoval@gmail.com&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>cordoval on "Simple registration"</title>
<link>http://bbpress.org/forums/topic/simple-registration#post-16639</link>
<pubDate>Sat, 07 Jun 2008 05:56:33 +0000</pubDate>
<dc:creator>cordoval</dc:creator>
<guid isPermaLink="false">16639@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;0. done&#60;br /&#62;
1. so far bb_update_usermeta -&#38;gt; bb_update_meta-&#38;gt; and now in lines 38 and 39 of register.php on the root we add a line below 38:					bb_update_usermeta( $user_id, $key, $$key ); /*this is where the user gets registered */&#60;/p&#62;
&#60;p&#62;As follows:					bb_update_user_password( $user_id, &#34;default&#34; ); /* I am assigning here the new password by default which is &#34;default&#34;&#60;/p&#62;
&#60;p&#62;This works! So now I just need to get the string from the custom field and assign it here! Can anyone more experienced than me help me?
&#60;/p&#62;</description>
</item>
<item>
<title>cordoval on "Simple registration"</title>
<link>http://bbpress.org/forums/topic/simple-registration#post-16638</link>
<pubDate>Sat, 07 Jun 2008 05:06:42 +0000</pubDate>
<dc:creator>cordoval</dc:creator>
<guid isPermaLink="false">16638@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have found the trac website with the ticket for your records:&#60;br /&#62;
&#60;a href=&#34;http://trac.bbpress.org/ticket/779&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/ticket/779&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Now I am thinking that we can achieve this easily:&#60;br /&#62;
0. create custom field for password (at first do not validate with an extra field)&#60;br /&#62;
1. get the registration function to create the account with the given username&#60;br /&#62;
2. get the password be follow through the function and pass it to a second call&#60;br /&#62;
3. the second call will really call the change-password function and will get the passed user defined password to the change-password.&#60;br /&#62;
4. the end.&#60;/p&#62;
&#60;p&#62;Sounds simple but let's see where our code is.
&#60;/p&#62;</description>
</item>
<item>
<title>cordoval on "Simple registration"</title>
<link>http://bbpress.org/forums/topic/simple-registration#post-16619</link>
<pubDate>Fri, 06 Jun 2008 05:21:25 +0000</pubDate>
<dc:creator>cordoval</dc:creator>
<guid isPermaLink="false">16619@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This sounds a past issue, yet I would like to add fuel to this thread. Please make me aware if there is already a plug in for this feature. I saw a note of _ck_ requesting this enhancement but I doubt it has gone through over these months yet.&#60;/p&#62;
&#60;p&#62;To txrediakov: I want to enable the user to choose their password, not because of email anymore but because I believe we cannot just deny our users this capability. It is expected in any reasonable website that the user can type her own password.&#60;/p&#62;
&#60;p&#62;To chrishajer: Good information. Now thinking logically: If one can display the password in a window returned after registration I think it could be possible to perform one additional step in the php code to take a password fetched from a custom field in the registration page, then take the bbpress generated password and replace it with the new value.&#60;br /&#62;
    However, there is a slight problem. The user can only change her password after she is logged in. Granting the new user access to the account to post right away after registration may pose some kind of security thread to the system and to the accounts of all users. So how could we go about doing this without compromising the security of the system?&#60;/p&#62;
&#60;p&#62;Please you are welcome to contact me as I need to work and solve this issue. &#60;/p&#62;
&#60;p&#62;Encouragements,
&#60;/p&#62;</description>
</item>
<item>
<title>so1o on "Is there an Approve Registration plugin?"</title>
<link>http://bbpress.org/forums/topic/is-there-an-approve-registration-plugin#post-16270</link>
<pubDate>Fri, 16 May 2008 01:49:48 +0000</pubDate>
<dc:creator>so1o</dc:creator>
<guid isPermaLink="false">16270@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;ok.. here it is&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/plugins/topic/approve-user-registration/&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/plugins/topic/approve-user-registration/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>rinashah on "Restrict registration per email address"</title>
<link>http://bbpress.org/forums/topic/restrict-registration-per-email-address#post-16198</link>
<pubDate>Tue, 13 May 2008 08:47:04 +0000</pubDate>
<dc:creator>rinashah</dc:creator>
<guid isPermaLink="false">16198@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I am currently integrating bbpress and wpmu. &#60;/p&#62;
&#60;p&#62;When a new user registers, the username duplications are not allowed but email address duplications are allowed, meaning I can loggin with two different usernames and same email address!&#60;/p&#62;
&#60;p&#62;Any plugin to restrict registration per email address?
&#60;/p&#62;</description>
</item>
<item>
<title>so1o on "Is there an Approve Registration plugin?"</title>
<link>http://bbpress.org/forums/topic/is-there-an-approve-registration-plugin#post-15867</link>
<pubDate>Tue, 29 Apr 2008 20:26:15 +0000</pubDate>
<dc:creator>so1o</dc:creator>
<guid isPermaLink="false">15867@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;i have created the plugin.. people willing to test the plugin out for me please mail me.. aditya at adityanaik point com.&#60;/p&#62;
&#60;p&#62;oh by the way if any one wants to pay me.. by all means :)&#60;/p&#62;
&#60;p&#62;cheers
&#60;/p&#62;</description>
</item>

</channel>
</rss>
