Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'registration'

Viewing 25 results - 7,226 through 7,250 (of 7,641 total)
  • Author
    Search Results
  • #50765
    peterverkooijen
    Participant

    I 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.

    Paul Wong-Gibbs
    Keymaster

    Am I reading this right? Couldn’t jorrie just disable user registration?

    #50751
    r-a-y
    Keymaster

    1) 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!

    #50707
    creede
    Participant

    Any 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.

    #50687
    peterverkooijen
    Participant

    Apparently 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.

    #50678
    webatease
    Participant

    Hey 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!

    #50660
    r-a-y
    Keymaster

    I 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.

    #50547
    3318273
    Inactive

    Tried 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?

    #50429
    peterverkooijen
    Participant

    As 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?

    peterverkooijen
    Participant

    The 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?

    peterverkooijen
    Participant

    Where 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?

    peterverkooijen
    Participant

    Thanks for responding DJPaul!

    I guess the hook would be this:

    user_register

    Runs when a user’s profile is first created. Action function argument: user ID.

    Or maybe this?

    register_post

    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.

    Paul Wong-Gibbs
    Keymaster

    Where exactly and when do you want your code to run?

    peterverkooijen
    Participant

    Anyone?

    #50240

    In reply to: custom members loop

    lokers
    Participant

    yes, 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()

    #50227
    peterverkooijen
    Participant

    My 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'];
    }

    Manoj Chacko
    Participant

    Actually I was trying to save a type of member, its dropdownlist

    Korhan Ekinci
    Participant
    #50127
    Lriggle
    Participant

    @JohnJamesJacoby

    I 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

    #50122
    Brajesh Singh
    Participant

    @Lriggle

    Can you list the plugins you are using ? may be we can better understand then..

    #50094

    Is 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?

    #50066

    In reply to: Can't Create New Blogs

    kengary
    Participant

    Yes, 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::

    #49980
    3635122
    Inactive

    The 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

    #49979
    José M. Villar
    Participant

    Nope, 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 ! ;-(

    #49978
    3635122
    Inactive

    Hey, 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

Viewing 25 results - 7,226 through 7,250 (of 7,641 total)
Skip to toolbar