Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'registration'

Viewing 25 results - 5,876 through 5,900 (of 7,641 total)
  • Author
    Search Results
  • #93622
    CKuchar
    Participant

    Thanks! Incidentally, I found this from the Extend part of this site. All the best!

    #93558
    Brajesh Singh
    Participant

    @cells
    If you are on single wp, upgrade to wordpress Multisite.
    Then you can limit it from Super Admin->Options->Limited Email Registrations

    #93551
    Hugo Ashmore
    Participant

    Then explain exactly what you can’t do. You say you have enabled registrations, then what happens when you are logged out and try one of the register links? do you not get the user new user form? if you have the form what happens when you complete and submit it? see where I’m going? we need as much detail as you can supply , we can’t necessarily guess at what may be wrong.

    One thing to do is disable BP and ensure WP is working as expected in all respects before proceeding to add the BP layer to it, and also disable any other plugins that may be running and that are not necessary.

    #93547
    jose
    Participant

    Paul,

    Thank you so much for your insight! Here’s what I’ve got now:

    1. I’m pretty sure we’re using the single site version of WordPress(maybe this is known as the MU version?). It was installed through our server using SimpleScripts. I was aware of the plugin option, but didn’t want to get into that yet until I had the account creation issues taken care of. Thanks for the info.

    2. Disabled the BuddyPress plugin, as well as the Group Documents plugin (and reverted to the default non-BuddyPress theme). Created an account, and got the confirmation email right away. The WP account registration was just “username”, and “email”… and WP emails the password. The BuddyPress registration required much more info. So without BP turned on.. Accounts worked.. with it turned on.. The account gets created, but no activation email gets sent out.. thoughts?

    3. I’m referring to the WordPress setting: Site Address (url): “Enter the address here if you want your site homepage to be different from the directory you installed WordPress.” I’m trying to point the domain to sdcityrobotics.saltbored.com , and it will display as http://www.sdcrobotics.org (our domain).

    4. Got it. I was just curious as to if there were some settings I was just totally missing.

    BlueHost Issues !?!?

    1. Ok don’t use SimpleScripts or WordPress.. Just install WP manually on my server, and then install the BuddyPress plugin manually? And that will get it to work?
    2. I’ll definitely search around for BH. Thanks for the tip!

    #93541

    In reply to: BuddyPress Spam

    @TedMann – No, manually going to your signup page will not trip the spam alarm. Putting in the URL with all the submit stuff (like attempting to pass registration info via the URL instead of entering it like a human) will trip the alarm. What it’s checking for is the POST command, and was THAT passed through by your site. Otherwise no one would ever be able to sign up :)

    #93152
    Anonymous User 96400
    Inactive

    I would use the s2member plugin to achieve what you want. It’s not so easy to setup as other plugins, but there’s lots of documentation that should get you started.

    #93393
    chouxpastry2002
    Participant

    Hi Roger,

    Thanks for quick response as always :)!!!

    1. Well do they get a blog when they create a new account? If i have turned off site registration.

    2. If not then how would they write their own blog posts?

    The solution to this is “sitewide tags” as my best friend “Andrea” suggested. I can get all users posts in one blog. Keeping their individual blogs seperated.

    The solution given by you is simple one. Can you please suggest me the complex way as well ?

    Regards,
    Sam.

    #93356
    The Real Dave O.
    Participant

    How do you get the registration box?

    #93353
    marcycapron
    Participant

    @zlamczyk and anyone else who finds this — to redirect activation email to admin….

    function my_redirect_activation_email()
    {
    return get_site_option( “admin_email” );
    }
    add_filter(‘bp_core_activation_signup_user_notification_to’, ‘my_redirect_activation_email’);

    I’m sure can be manipulated to plop user email in there.

    Boone Gorges
    Keymaster

    The easiest thing to do is to copy registration/register.php from bp-default into your child theme. Search for the place where Sign Up Complete! appears, and put your additional paragraph after that.

    #93278
    Hugo Ashmore
    Participant

    ? Disable the plugin!

    Check the plugin group for answers or ask the question about the error in that group

    https://buddypress.org/community/groups/bp-registration-options/home/

    However I would think that this plugin hasn’t been updated to work with WP 3.0 or BP stable but I might be wrong.

    #93265
    marcycapron
    Participant

    @zlamczyk 3 months late on this but what exactly did you do to that last snippet you posted? yes, it would get overwritten but I am in a bind just like you were. we’re doing an alumni-only social network and the email MUST be @alumni etc .edu and therefore hand approved…

    and yep, bp registration options is crap! err, doesn’t work. but, we are using wp e-commerce members only module which means that if I can just stop the user self-activating, I am pretty much good to go – (plugin requires sign up as subscription is being purchased, and it sends that damned email!!!!)

    if you happen to see this, thanks!!

    #93199
    skolbloggense
    Participant

    Ok, so I found this; https://trac.buddypress.org/ticket/2350. Its the same problem but priority changed from major to normal . Why? Its a show-stopper!

    Quote apeatling:
    “Why should all registrations be handled on the root blog? That seems like a bad idea and is fundimentally messing with the way WPMU works. If a user has a blog and settings allow, they should be able to add users via their blog and activate them via their blog”

    My users (blogers) want to have their blog closed and only people with accounts allowed to see their blog should be able to see it (using plugin additional-privacy.php). So, they go into users and hit “add user”, selects a username and fill out their friends e-mail address. This is when the URL gets wrong…

    The fact that I have a correct value (“activate”) in BP_ACTIVATION_SLUG does not change this faulty address that is being sent in the e-mail.

    So, this must be a bug, right? And what can I do to go around it temporary before it gets a permanent fix?

    omosha
    Participant

    I think I have this resolved. It was a conflict between S2membership and how Buddypress were handling registration.

    Let me know if you run into the same problem. Happy to help.

    omosha
    Participant

    I’ve got an updated idea of what may be happening if someone could direct me further.

    O.K. when I use the buddypress admin bar up top to log-in or out, it takes me to http://integralbeings.com/community/wp-login.php? Which is incorrect. I think that this may be one of the main problems with Buddypress redirecting MU when new blogs attempt to register. It should go to http://integralbeings.com/wp-login.php?

    I’ve added:
    RedirectMatch 301 ^/members/(.*)$ http://integralbeings.com/community/members/$1
    RedirectMatch 301 ^/groups/(.*)$ http://integralbeings.com/community/groups/$1
    RedirectMatch 301 ^/blogs/(.*)$ http://integralbeings.com/community/blogs/$1
    RedirectMatch 301 ^/forums/(.*)$ http://integralbeings.com/community/forums/$1
    RedirectMatch 301 ^/activity/(.*)$ http://integralbeings.com/community/activity/$1

    to the htaccess file in order to redirect Buddypress to the secondary blog. Could this be the problem? Any thoughts to help me figure out this logic problem?

    Cheers,
    -Brant

    #93032
    @mercime
    Participant
    #93031
    Tolden
    Member

    Does no one use this plugin and can help me?

    #93008
    Boone Gorges
    Keymaster

    Avatar upload forms appear in two places. One is registration/register.php, the other is members/single/profile/change-avatar.php. Create a child theme of bp-default (https://codex.buddypress.org/extending-buddypress/building-a-buddypress-child-theme/) with those two files, and then edit the HTML to your heart’s content.

    #92927
    Paul Wong-Gibbs
    Keymaster

    This is a WordPress limitation, which treats user registration in the same way.

    #92854
    Heli
    Member

    Hi. I have found a solution to that no activation email has sent. Check this out http://www.thinkplexx.com/neokrates/fix-wordpress-and-buddypress-sendmail-problems-sign-up-complete-activate-your-account-via-the-email-but-email-doesnt-come

    I actually used Google mail account. There in Google account settings also probably has to set that you use imap. I’m not sure of that. But now the activation email is sent and users can register.

    #92731
    airrykah
    Participant

    okay I deactivated buddypress, wp is sending out e-mails fine, now it is just the buddy press registration that is not working. I do not have any BP registration plugins that i am aware of…

    #92663
    @mercime
    Participant

    @airrykah deactivate BuddyPress. It depends on your WordPress installation. Check if your install is sending out activation emails to those registering. Find resolution for your email problem at WordPress.org forums before activating BuddyPress.

    If your WP activation email is working, deactivate any BP registration plugins and see if regular registration works.

    Edit – there’s also a workaround, see if this works for you – https://codex.buddypress.org/getting-started/faqs/specific-faqs/#register

    #92642
    pcwriter
    Participant
    #92464
    pcwriter
    Participant

    @Iain Manley

    Sorry my workaround isn’t working as hoped… the easy solutions aren’t always the best ;-)

    #92426
    Boone Gorges
    Keymaster

    It’s not straightforward, but it is possible. You’ll have to replace bp_core_screen_signup() (where the value of $bp->signup->step is set) with your own custom function. You’ll need to do the following:
    `remove_action( ‘wp’, ‘bp_core_screen_signup’, 3 );`
    to remove BP’s registration function, followed by
    `remove_action( ‘wp’, ‘my_bp_core_screen_signup’, 3 );
    function my_bp_core_screen_signup() { // etc`

    Copy the contents of bp_core_screen_signup() into your custom function. Then start looking for the places where $bp->signup->step is set – that’s what you’ll need to mess with to modify the way that registration steps work.

Viewing 25 results - 5,876 through 5,900 (of 7,641 total)
Skip to toolbar