Search Results for 'registration'
-
AuthorSearch Results
-
August 8, 2009 at 1:38 pm #50765
In reply to: Clean professional user registration?
peterverkooijen
ParticipantI need a more professional member registration as well. I’ll use this excellent plugin which allows login with email address, but there are a lot of other annoying issues I still have to solve:
Restructuring registration process to an industry standard
How to use full name, first name + last name
Make 2+ part name in full name required + xprofile_sync_wp_profile()
Autogenerate or remove username
Generate username (+ blog url) from fullname
Use full name in confirmation emails
ListMessenger (or PHPlist) integration – plugin?
I’m not sure how much GigaOM actually changed. Their form looks a lot like the regular Buddypress (?) registration, minus that annoying username. Not sure how they did that.
They’re not using Buddypress, are they?
Most of it is just a radically customized theme. I suspect they probably also use one of the commercial member subscription plugins.
I’m working on my new site here. The old site has a registration system based on PunBB. I’m not a PHP programmer, so please keep us posted on any progress you make.
August 8, 2009 at 8:40 am #50761Paul Wong-Gibbs
KeymasterAm I reading this right? Couldn’t jorrie just disable user registration?
August 8, 2009 at 3:55 am #50751In reply to: BuddyPress and wpMU, some expert advice needed
r-a-y
Keymaster1) With WPMU and a user account, you can comment on any blog (provided you’re logged in)
2) This is possible… that page is a template file, so you could customize that with whatever you want.
3) If you already have users blogging on WPMU, BuddyPress will detect these user’s blogs (I’m quite sure BP detects them!). BP groups and forums build off of WPMU’s userbase; groups being a BP thing and forums being a BP/bbPress thing. So when you install BP, your users will have to configure their groups and forums from scratch.
4) Not sure on this one. There’s an option in WPMU to disable blog registration, but if you do that I think it will disable blog registration sitewide. This would be a better question for the WPMU forums.
5) BuddyPress does indeed utilize bbPress for forum functionality. The next version of BP will make it easy to integrate with. Right now, it still requires some grunt work.
You say want a forum for each blog? That’s a little overkill… but something like this can be accomplished with groups and a BP plugin (Marius Ooms’ groupblog plugin or Burt Adsit’s BP Community Blog plugin)
6) Yes you can list all blogs on a page using a WPMU function.
Hope that helps!
August 7, 2009 at 3:24 am #50707In reply to: Very weird spam incident…
creede
ParticipantAny luck with bad behavior? I was having good success with wp-hashcash but recently found it was blocking all registrations. Even a legitimate one could never get off the wp-signup page. I finally had to disable it so people could register, and now I’m back to getting splogs again. All of them seem to be a name then numbers (angie539034). Very frustrating.
August 6, 2009 at 5:12 pm #50687In reply to: Registration Approval Plugin
peterverkooijen
ParticipantApparently a “full-featured privacy (authorization) component for BuddyPress” is in the works for a future release. I hope that includes an approval process, but member management in general seems to be very low on the priority list of the Buddypress developers and community. If you need it anytime soon, I’d look into developing your own plugins.
August 6, 2009 at 4:07 pm #50678In reply to: Registration Approval Plugin
webatease
ParticipantHey Mike – did you get a response to this? I am in a similar situation. I want anyone to be able to register, but I want to be able to approve it before they can begin using.
As an alternative, is there a way to make the default role/profile something read-only, or with limited access – and then part of the setup process is for me to change to a higher role/profile with full access once I’ve reviewed? I’m not familiar with the role set up, etc.
I’d prefer just a simple approval process in the system. Thanks!
August 6, 2009 at 2:51 am #50660In reply to: Core Modifications + BP Upgrades…
r-a-y
KeymasterI think, for the most part, bp-custom.php will do quite nicely.
The only thing that might be a problem is if you’re working deeply with functions that affect the WPMU core. eg. registration. Then you might need to put some of your functions in the wp-content/mu-plugins/.
A mod might want to jump in here to give you further insight.
August 3, 2009 at 10:22 am #50547In reply to: problem with member pages
3318273
InactiveTried checking your site out but I can only see a wp-theme. Clicking registration gets me this:
http://current_site_domaincurrent_site_path/
Have you disabled it or is more things not working?
July 31, 2009 at 5:18 pm #50429In reply to: signup-description for core Name
peterverkooijen
ParticipantAs far as I know you can’t change anything about the registration form without hacking core files, including simple layout issues. The form itself is not in the templates, unlike for example the search form.
Or am I missing something again?
July 31, 2009 at 4:38 pm #50412peterverkooijen
ParticipantThe phplist-dual-registration plugin also takes input from registration. It has this function:
function subscribe($input_data) {
if (!wpphplist_check_curl()) {
echo 'CURL library not detected on system. Need to compile php with cURL in order to use this plug-in';
return(0);
}
// $post_data = array();
foreach ($input_data as $varname => $varvalue) {
$post_data[$varname] = $varvalue;
}
// Ensure email is provided
$email = $post_data[$this->email_id];
// $tmp = $_POST['lid'];
// if ($tmp != '') {$lid = $tmp; } //user may override default list ID
if ($email == '') {
echo('You must supply an email address');
return(0);
}
// 3) Login to phplist as admin and save cookie using CURLOPT_COOKIEFILE
// NOTE: Must log in as admin in order to bypass email confirmation
$url = $this->domain . "admin/";
$ch=curl_init();
if (curl_errno($ch)) {
print '<h3 style="color:red">Init Error: ' . curl_error($ch) .' Errno: '. curl_errno($ch) . "</h3>";
return(0);
}
$post_data='action=subscribe&group_ids[]'.$this->lid.'&email_address='.$this->email_id.'&firstname='.$this->name_id;
Is the $post_data line what I need? Something like this?:
function subscribe($input_data) {
// $post_data = array();
foreach ($input_data as $varname => $varvalue) {
$post_data[$varname] = $varvalue;
}
$email = $post_data[$this->email_id];
$name = $post_data[$this->name_id];
}And then I could use $email and $name in my function to “do stuff” with?
Or can I use $post_data[$this->email_id] etc. directly? Is that the simple answer to my original question?
Why is the $post_data commented out?! Don’t I need it?
Do I need other pieces to make it work? For which fields would this work; only those from wp_users or xprofile as well? What about custom fields, including the real name/first name/last name mess?
July 31, 2009 at 3:56 pm #50408peterverkooijen
ParticipantWhere exactly and when do you want your code to run?
Shorter version: In a plugin hooked to user_register or register_post – not sure which one.
Does anyone know how to intercept input from the registration form to “do stuff” with it?
July 29, 2009 at 3:57 pm #50279peterverkooijen
ParticipantThanks for responding DJPaul!
I guess the hook would be this:
Runs when a user’s profile is first created. Action function argument: user ID.
Or maybe this?
Runs before a new user registration request is processed.
I have a wish list of things I need to do with input from the registration form:
1. synchronize fullname with wp_usermeta firstname + last name
2. autogenerate username/blogurl from fullname
3. add new user to the ListMessenger mailing list
They all require taking input from the registration form, processing the input and then storing the results in specific database tables. I’m trying to puzzle together one or more plugins to do that.
July 29, 2009 at 3:32 pm #50277Paul Wong-Gibbs
KeymasterWhere exactly and when do you want your code to run?
July 29, 2009 at 2:55 pm #50276peterverkooijen
ParticipantAnyone?
July 29, 2009 at 8:12 am #50240In reply to: custom members loop
lokers
Participantyes, but get_userdata() doesn’t return values like avatar and additional profile fields from registration. I found some functions in a core but I am not sure I should go that deep to get this info.
bp_core_get_userurl()
bp_core_get_avatar()
bp_core_get_userlink()
and finaly the best one:
xprofile_get_field_data()
July 29, 2009 at 3:03 am #50227In reply to: Generate username (+ blog url) from fullname
peterverkooijen
ParticipantMy latest attempts were here, for a plugin for a related problem that will hopefully also lead to a solution for username/blogurl.
I have to decide first how I am going to put firstname + lastname into the database; split the fullname value out to wp_usermeta or turn fullname into firstname and add another xprofile field for lastname.
Again, I’m not really a php programmer. I’m trying to puzzle it together from code examples and googled bits and pieces. I’ll need all the help I can get!
I can’t figure out how the fullname moves from the registration form to the database; which pieces of code are involved and how to “intercept” it to “do stuff” with it. That’s where I’m stuck at the moment.
“user profile meta” is put “in a session ready to store”. Is that an “array”? Anyway, that’s higher level php to me. No clue how to extract the fullname value from that.
// put the user profile meta in a session ready to store.
for ( $i = 0; $i < count($bp_xprofile_callback); $i++ ) {
$bp_user_signup_meta['field_' . $bp_xprofile_callback[$i]['field_id']] .= $bp_xprofile_callback[$i]['value'];
}July 27, 2009 at 6:29 pm #50138Manoj Chacko
ParticipantActually I was trying to save a type of member, its dropdownlist
July 27, 2009 at 3:18 pm #50130Korhan Ekinci
Participantlike dateboxes? See this:
https://buddypress.org/forums/topic/datebox-problems-in-profiles
July 27, 2009 at 2:51 pm #50127Lriggle
ParticipantI don’t believe we have any issues with sub domains in that respect. We’ve had users sign up to the site and create blogs at the same time, and the blogs and their sub-domains seem to be created and work just fine. We’ve also manually created blogs (not via buddypress but in WPMU) and those also work just fine.
@Brajesh Singh
Here are the plugins we have activated:
– WordPress Video Plugin
– Buddypress
– BPDEV Core
— BPDEV Flickr
— BPDEV YouTube
– Featured Member Widget
July 27, 2009 at 1:44 pm #50122Brajesh Singh
ParticipantCan you list the plugins you are using ? may be we can better understand then..
July 27, 2009 at 9:11 am #50094John James Jacoby
KeymasterIs it possible that your host automatically re-routes subdomains for you, rather than allowing them via a wildcard? Or that your .htaccess file is bouncing things back?
I’ve seen some installations where if the server wasn’t configured for subdomains, that the subdomain was put through the URL as a _GET or _POST variable.
When you create a new user/blog, does the blog actually get created? If so, can you navigate to ANY blogs or do all of them bounce back like that?
July 26, 2009 at 9:55 pm #50066In reply to: Can't Create New Blogs
kengary
ParticipantYes, under Site Admin -> Options -> Allow New Registrations I have it set to “Only Logged In Users Can Create New Blogs”
New users are added as “Subscribers”.
But even the admin, when logged in, cannot create a new blog. The links go to /blogs/members/admin/blogs/create-a-blog but you don’t end up on that page…you go to your profile instead.
Is there another setting where you have to enable it?
That would be funny. Hilarious actually. ::he says in a deadpan voice::
July 24, 2009 at 3:52 pm #49980In reply to: Spam despite disabled registrations and Askimet
3635122
InactiveThe FB-Connect issue was successfully addressed by removing the $DIM variable from fbconnect.php. However, this no longer seems to be effective and the error message I’m receiving seems to be complaining that out of 5 variables in fbc_get_avatar(), one is missing ie;
Missing argument 5 for fbc_get_avatar()
There are 5 variables here and I’ve removed one. However, even if I replace it so that there are now “5”, I still get the same error.
– Steve
July 24, 2009 at 3:35 pm #49979In reply to: Spam despite disabled registrations and Askimet
José M. Villar
ParticipantNope, Im afraid there´s not a newer version.
1.1 was coded by Andy himself, and there are no signs that it is going to be updated. He has made clear many times that its up to Buddypress community to continue with the update of Facebook connect plugin.
If I had coding skills, I would have updated it a long time ago, but I am still busy understanding how BP works ! ;-(
July 24, 2009 at 3:11 pm #49978In reply to: Spam despite disabled registrations and Askimet
3635122
InactiveHey, thanks for all the great help!.
I’ve installed reCaptcha and it works good. Won’t reCaptcha interfere with Askimet though since they are both anti-spam plugins (just wondering)?.
I couldn’t find any place in the latest version of BBPress to disable new registrations. Where would I go to find this option?.
I’m still stumped on the FB-Connect error. I’m currently using version 1.1. Is there a newer version (or an easy-to-install patch available?.
Again, thanks so much, Steve
-
AuthorSearch Results