Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'registration'

Viewing 25 results - 6,001 through 6,025 (of 7,641 total)
  • Author
    Search Results
  • #88100
    aduggan
    Participant

    wp3 sends new registration password emails without problem on bluehost – simplescripts or manual setup… until buddypress is installed. It then stops.
    Problems with such a fundamental part of the software doesnt bode well for buddypress – Im starting to think it was better to just cough up the money to Ning.com and save the stress, grey hairs and months of leisure time likely lost.

    Will try the mail from plugin but if other long roundabout fixes are required to send an email friom buddypress its not worth the trouble.

    dallen49
    Member

    I have the same problem, IE8 doesn’t display the crop tools with an uploaded avatar image. The crop tool works fine in Firefox and Safari. Have you ever solved this issue, I can’t seem to find an answer anywhere on the forum?

    Thanks

    #87996

    In reply to: GivingSports.com

    justbishop
    Member

    Looks good, but I got the following errors at the “accept-invitation” link you posted:

    Warning: Division by zero in /home/givingsp/public_html/wp-content/themes/fishbook-buddypress-buddypack/registration/register.php on line 359

    Warning: Division by zero in /home/givingsp/public_html/wp-content/themes/fishbook-buddypress-buddypack/registration/register.php on line 365

    #87953
    Tyler
    Participant

    How do I redirect to the wordpress login page and not the buddypress registration page? I want to create all the user accounts myself and prevent random people registering for my site. Thanks!

    Paul Wong-Gibbs
    Keymaster

    I agree it’s the wrong way around. I’m advertising my own plugin here, but what I have done on some sites is use the Welcome Message part of Welcome Pack to send a private message to the new user and to say hello and remind them to complete their profile / picture, etc.

    miri
    Member

    And I was wondering just the opposite: is it possible to disable the uploading of avatars until the account is confirmed via the confirmation email? It seems whack to allow file uploading before someone has confirmed their registration.

    #87796

    In reply to: Sign Up Tab is Missing

    techguy
    Participant

    Turn on registration in the BP or WP admin (depending on how you installed it.

    #87780
    Gabriel Fowler
    Participant

    One thought: use plugin: BP Disable Activation, to remove the step of email activation altogether. You should still be able to get users’ emails when they sign up. I use SI CAPTCHA at registration to filter spam. My site is still in development, no users, so I can’t speak to these issues for you. Just a though as I said. Good luck.

    #87637
    techguy
    Participant

    This is addressed 100 times on here. You have to enable registrations to make it stop redirecting. In the admin it’s under General->Settings for WP and under Options for WPMU.

    #87596

    In reply to: bettercodes.org

    gottowik
    Participant

    @Anton Thanks! If you guys like what we are doing we keep up the hard work… :-)

    Captcha is integrated in the template file and by just adding a small action to bp_signup_validate:

    Template:
    https://svn.bettercodes.org/bettercodes/trunk/bettercodes/bc-themes/bc-default/registration/register.php (line 186)
    Action:
    https://svn.bettercodes.org/bettercodes/trunk/bettercodes/bc-core/bc-core.php (line 558)

    If you need more help just drop me a PM on bettercodes. ok?

    #87561
    techguy
    Participant

    It was easy. Luckily I was able to figure it out. Plus I could have done most of it in the theme too. The real key was that I needed to figure out how the errors were being passed on the registration page. Then, I figured they had to be in $bp and they were. Here’s the code I used in bp-custom.php

    function registtration_screen_message_on_error() {

    The message I want to appear for the user.

    }
    add_action( ‘template_notices’, ‘registtration_screen_message_on_error’ );

    To get the errors and only display it if there are errors I used $bp->signup->errors

    Just thought I’d share.

    #87559

    In reply to: bettercodes.org

    Anton
    Participant

    @gottowik – well done. Looks awesome. How did you get the re captcha to work on the registration page? Care to share?

    #87531

    In reply to: bettercodes.org

    techguy
    Participant

    Interesting way to get to the registration page with just the username. I also like how you dealt with the only lowercase username issue. You might also check out this solution that r-a-y put together: https://trac.buddypress.org/ticket/2207

    Page looks pretty good, but as you said in your blog, I’m not sure it completely communicates your message of what the site can do for new users.

    #87401
    M W
    Participant

    I am having this problem too! Extremely frustrating…new users are complaining they can’t log in. They are in limbo, marked as spammers because the confirmation email never went out. We noticed if I as an admin delete their account and tell them to re-register, they then get the email and complete the process successfully. (??)

    deadlyhifi
    Participant

    I’ve just experienced this and have come up with a fix:

    function custom_bp_adminbar_login_menu() {
    global $bp;
    
    if ( is_user_logged_in() )
    return false;
    
    $redirecturl = $bp->root_domain . '/wp-login.php?redirect_to=' . urlencode( $bp->root_domain ) . esc_url( $_SERVER );
    echo '
    ' . __( 'Log In', 'buddypress' ) . '
    
    ';
    
    // Show "Sign Up" link if user registrations are allowed
    if ( bp_get_signup_allowed() ) {
    echo '
    ' . __( 'Sign Up', 'buddypress' ) . '
    
    ';
    }
    }
    remove_action( 'bp_adminbar_menus', 'bp_adminbar_login_menu', 2 );
    add_action( 'bp_adminbar_menus', 'custom_bp_adminbar_login_menu', 2 );

    Drop that into your functions.php file.

    It’s the same as the standard function except it appends the $bp->root_domain with $_SERVER.
    I’m not sure if this is a feature or something that’s been overlooked and needs reporting in trac. Also on different servers I’ve had differing results with php $_SERVER based stuff so I’m not sure if it will work everywhere. It works on the server I’m using anyway.

    #87327
    techguy
    Participant

    Seems like this should be a pretty easy one. For some reason, I can’t ever get the template notices to appear when I try to call them. Must be a timing issue of when I call the template notice and then it finally gets displayed.

    #87232

    In reply to: Registration Page

    dlmfisher
    Member

    Fixed! I went back to the database, searched on the pre-propagated terms, and found them in user “0” fields for all x-profile table rows, and deleted the responses. Everything’s now blank as it should be.

    jordashtalon
    Member

    I downloaded an older version of the plugin and it doesn’t auto pull the facebook avatar but at least they can change their avatar if they choose (which is more important) AND they can auto login with Facebook without going through the registration process which is very fluid.

    #86930
    Ali Erkurt
    Participant

    I think this option should come back. Because I want to add e.g. Country field to the registration page. I have to add the countries one by one… How can I do that without losing time? With that option of course… We want that option back :)

    #86768
    Joe
    Participant

    I think I may have found a solution. I edited wp-login on line 437:

    if ( is_multisite() ) {
    // Multisite uses wp-signup.php
    wp_redirect( apply_filters( ‘wp_signup_location’, get_bloginfo(‘wpurl’) . ‘/wp-signup.php’ ) );
    exit;

    I just commented out those lines so that there is no redirect, and it seems to be working. My one concern is that I am not using wp-signup, like WP 3.0 Multisite registration is intended to do. Will there be any issues down the road with users being improperly registered or anything like that? What is the real difference between “wp-signup.php” and “wp-login.php?action=register” anyway?

    Thanks!

    r-a-y
    Keymaster

    Hey hachimaki,

    Your needs would need to be custom-coded. When a user creates a blog, they have the option to select its privacy. A possible solution involves checking if the blog in question is private; if so redirect to the registration page, if not, leave open to public.

    Pisanojm
    Participant

    I am so thankful for this forum and people like you on it. I apprecieate your feedback. Since the people that I dropped never completed their registration (i.e. never were validated) They were never added to those tables… so it looks pretty clear to me, I don’t see any stream/member info…because they never were added (lost in limbo somewhere until validation I guess). @techguy

    #86655
    r-a-y
    Keymaster

    Actually it is possible to bypass BP registration using the wp_insert_user() function.
    It *should* be possible by overriding the /registration/register.php template file in your child theme. But all the good stuff like activating an account would be gone. However, you say you want to use WP’s registration system? Would require a BP core hack I believe.

    Changing the BP_ROOT_BLOG wouldn’t do a thing since BP is activated network-wide.

    #86628
    JackTheKnife
    Participant

    Have got Registration Page, created new user as contributor, but when I went to the Log In I can’t log in as that new user. Any idea why? Thanks

    #86553
    Joe
    Participant

    so there is no way to escape this? I ask because my site is not based around a user community, that is just one feature. Therefore, I don’t want every registration to be based around buddypress.

    One thing that might help matters –
    I have the buddypress part of my site set up on it’s own wordpress install (multisite 3.0). Maybe I can make it so the buddypress registration isn’t applied to the entire network, but just the buddypress site.

    I already tried adding the following line to my wp-config:
    define( ‘BP_ROOT_BLOG’, 2 );

    However, it hasn’t seemed to make a difference.

    Anyone?
    Thanks again.

Viewing 25 results - 6,001 through 6,025 (of 7,641 total)
Skip to toolbar