Search Results for 'registration'
-
AuthorSearch Results
-
April 4, 2009 at 10:18 am #41782
In reply to: register Page
Famous
ParticipantThis is to answer the original question:
I can tell you exactly what this is…
You are missing the information from the functions.php file in the latest trunk of buddypress-home. You are most likely using a functions.php from your own custom theme, which creates the redirect above.
Without that data the registration and activation won’t work.
April 4, 2009 at 10:15 am #41781Famous
ParticipantI can tell you exactly what this is…
You are missing the information from the functions.php file in the latest trunk of buddypress-home. You are most likely using a functions.php from your own custom theme, which creates the redirect above.
Without that data the registration and activation won’t work.
April 1, 2009 at 8:13 pm #41611In reply to: Urgent – Registration form addition
Trent Adams
ParticipantApril 1, 2009 at 7:26 pm #41603In reply to: profile fields not behaving correctly
Shelley Keith
ParticipantI’ve reset my email domain registration limitations if you want to test on wearesau.net.
April 1, 2009 at 1:30 pm #41590In reply to: Urgent – Registration form addition
reprocessor
ParticipantOOOOOOH
Please tell me where to find it. Is it on the wordpress or bpdev sites? or some other location?
April 1, 2009 at 1:21 pm #41588In reply to: Urgent – Registration form addition
Andy Peatling
KeymasterThere is a “terms and conditions” plugin available that you could use.
April 1, 2009 at 11:00 am #41575In reply to: register Page
takuya
ParticipantI found the conflict… somewhat qtranslate was enabled on the root…
You can use qtranslate on the sub, but don’t use it on the root as it conflicts somehow with the registration.
March 31, 2009 at 3:50 pm #41522In reply to: Several problems Andy
1stAngel
ParticipantMy posts from my own blogs are not showing.
I use feedwordpress to import some posts on the other blogs but blogs are showing that do not use that at all so I cannot see thats an issue
wpmu is in a folder off the root called wpmu and has been working for a very long time perfectly with no issues at all.
BTW, as soon as I put this BP on I have had a ton of spam blogs made so now have had to turn off registration for a while. I have seen there is a fix for this somewhere but wont bother until I know the BP will work.
March 30, 2009 at 6:26 pm #41429In reply to: Limit users to only having one blog?
Aron Jay
Participant<?php
/*
Plugin name:Limit Blogs per User
Plugin Author:Brajesh K. Singh
Author URI:http://ThinkingInWordpress.com
Version:1.0
*/
add_filter(\”wpmu_active_signup\”,\”tiw_check_current_users_blog\”); //send fake/true enable or disabled request
add_action(\”wpmu_options\”,\”tiw_display_options_form\”); //show the form to allow how many number of blogs per user
add_action(\”update_wpmu_options\”,\”tiw_save_num_allowed_blogs\”);//action to save number of allowed blogs per user
/****Check ,whether blog registration is allowed,and how many blogs per logged in user is allowed */
function tiw_check_current_users_blog($active_signup)
{
if( !is_user_logged_in() )
return $active_signup;//if the user is not logged in,do not change the site policies
//otherwise…
global $current_user;
$blogs=get_blogs_of_user($current_user->ID);//get all blogs of user
$number_of_blogs_per_user=tiw_num_allowed_blogs();//find
//if number of allowed blog is greater than 0 and current user owns less number of blogs */
if($number_of_blogs_per_user>0&&count($blogs)<$number_of_blogs_per_user)
return $active_signup;
else
return \”none\”;
}
/****How many blogs are allowed per user *************/
function tiw_num_allowed_blogs()
{
$num_allowed_blog=get_site_option(\”tiw_allowed_blogs_per_user\”);//find how many blogs are allowed
if(!isset($num_allowed_blog))
$num_allowed_blog=0;
return $num_allowed_blog;//return the number of allowed blogs
}
/*****Show the Number of Blogs to restrict per user at the bottom of Site options ****/
function tiw_display_options_form()
{
?>
<h3><?php _e(\’Limit Blog Registrations Per User\’) ?></h3>
<table>
<tbody>
<tr valign=\”top\”>
<th scope=\”row\”>Number of blogs allowed per User</th>
<td>
<input type=\”text\” name=\”num_allowed_blogs\” value=\”<?php echo tiw_num_allowed_blogs()?>\” />
<p>If the Value is Zero, It indicates any number of blog is allowed</p>
</td>
</tr>
</tbody>
</table>
<?php
}
/**************Save the Number of blogs per user when the form is updated **************/
function tiw_save_num_allowed_blogs()
{
$allowed_number_of_blogs=intval($_POST[\”num_allowed_blogs\”]);//how many blogs the user has set
//save to the database
update_site_option(\”tiw_allowed_blogs_per_user\”,$allowed_number_of_blogs);//now update
}
?>
You can set the number of blog you would like to allow.. its not mine, just wanna share it..
– Aron
EDIT: to set the number of blogs, proceed to Site Admin/Options/ then look below..
March 30, 2009 at 6:23 pm #41426In reply to: registration fields
Aron Jay
ParticipantI’m sorry.. huhu..
March 30, 2009 at 6:20 pm #41425In reply to: registration fields
nicolagreco
ParticipantIt isn’t under gpl, but under copyright, it couldnt be shared, anyway that’s more simple you think to do
March 30, 2009 at 6:08 pm #41417In reply to: registration fields
Aron Jay
ParticipantGreat! pls.. share it..
March 30, 2009 at 5:49 pm #41406In reply to: registration fields
Mike Pratt
ParticipantMichael – I installed the premium plugin and can confirm it does not work fully with BP….yet. It properly sets up the fields for password input BUT, BP seems to override the setting when all is said and done. I was able to login with the password BP emailed me and not the one I set manually. Thinking a tweak to this plugin still has promise though
March 30, 2009 at 5:34 pm #41396In reply to: registration fields
Aron Jay
Participantallowing the users to set their password would definitely make a lot of splogs.. but incorporating a security measures, let say a invitation code will prevent spam blogs..
please, somebody provide us a plugin for setting up a password for the registration..
allowing the user to set their own password.. for FREE!
Thanks.
March 30, 2009 at 7:14 am #41352In reply to: FaceBuddy free theme for BuddyPress
Sgrunt
Participantok solved the registration problem!
March 30, 2009 at 7:01 am #41351In reply to: can a user enter his own password at registration?
Ekine
ParticipantLetting users set their own passwords would be helpful.
March 30, 2009 at 7:00 am #41350In reply to: FaceBuddy free theme for BuddyPress
Sgrunt
Participantok, we’re gonna to see the light, i’m making all required changes and keeping them working, if you wish i could write a little documentation after this. I’ve only a question: the signup button now leads to the WMPU registration page and not to the buddypress register. Could you tell me if i’m doing something bad or if this is an upgrade issue?
Thanx Andy, i’m sure that the final version will be a great success.
March 30, 2009 at 6:22 am #41348In reply to: registration fields
Michael Berra
ParticipantIt’s a premium plugin and works fine: http://premium.wpmudev.org/project/set-password-on-wordpress-mu-blog-creation
March 30, 2009 at 4:45 am #41342In reply to: can a user enter his own password at registration?
thebigk
ParticipantBoy! I want this too!
March 30, 2009 at 4:39 am #41341In reply to: registration fields
thebigk
ParticipantI want the password field at the time of registration too!
March 30, 2009 at 4:33 am #41340In reply to: can a user enter his own password at registration?
hyrxx
Participanti was aware of this one, but i am not really interested in paying for it
but this does show that it is possible
March 30, 2009 at 4:25 am #41339In reply to: can a user enter his own password at registration?
takuya
ParticipantMarch 30, 2009 at 4:21 am #41338In reply to: can a user enter his own password at registration?
hyrxx
Participantyes, they are all incompatible though, i think the signup process is different, maybe one of these plugins could be modifyed to work for mu
March 30, 2009 at 4:12 am #41337In reply to: can a user enter his own password at registration?
takuya
ParticipantI’ve tried register-plus, but it seems it’s not compatible with wpmu. I’ve seen other plugins on wporg for letting users set their own passwords.
March 30, 2009 at 2:09 am #41334In reply to: can a user enter his own password at registration?
hyrxx
Participanti want this so bad omg, all my users are the type of people that dont realise that it sends you this stupid random password and that you have to login with it, and then theres changing it….
i loose a lot of potential users this way just because they cant choose the password they want
please help us out
-
AuthorSearch Results