Skip to:
Content
Pages
Categories
Search
Top
Bottom

BuddyPress won't take in new registers


  • LolaPentagrom
    Participant

    @lolapentagrom

    Hi there,
    I installed Buddypress but it wont let anyone register. I tried deactivating every plugin except buddypress and WPML for buddypress, checking the “allow anyone to register” box, changing the pages, and it still doesnt work.
    Wordpress 4.0
    Theme twenty fourteen
    Buddypress 2.1.1
    Buddypress multilingual 1.5
    WPML 3.1.7.2
    My site is both in English and Spanish.
    Register in English: http://www.pentagrom.com/en/register-2/
    Register in Spanish: http://www.pentagrom.com/registrarse/

    Can someone help me please?
    Thanks so much

Viewing 20 replies - 1 through 20 (of 20 total)

  • DIYWWF
    Participant

    @diywwf

    I’m having the same problem and no response yet 🙁


    bp-help
    Participant

    @bphelp

    @lolapentagrom
    I would start troubleshooting by deactivating Buddypress multilingual 1.5 and WPML 3.1.7.2
    and testing registration against each one as you reactivate them. I would venture to say one or both of these two plugins is likely causing your registration issue.


    aces
    Participant

    @aces

    @lolapentagrom

    What actually doesn’t work? What happens / doesn’t happen?


    @diywwf

    your case https://buddypress.org/support/topic/buddypress-preventing-registration/ is different…


    LolaPentagrom
    Participant

    @lolapentagrom

    First of all, thank very much for the super fast response on a Sunday afternoon 🙂

    I have tried deactivating those two plugins and trying again against each other and nothing.

    What happens is that once you fill out all the info and hit “complete sign up” the page just refreshes and the info boxes appear blank again.This happens both in English and in Spanish.

    Any idea of what might be happening?
    Thanks again


    aces
    Participant

    @aces

    @lolapentagrom

    Do you get any javascript ( or other ) errors in the developer console?


    LolaPentagrom
    Participant

    @lolapentagrom

    I dont think I have such thing as a developer console. I’ve googled a bit and I see there are a few developer console plugins. Should I download one and see? Which one do you reccomend?


    focallocal
    Participant

    @focallocal

    i get the same issue and when googling i’ve seen it posted around a lot – but a real absence of solutions.

    in the js console i get these errors:

    Line 1095, Column 4

    Pause On Caught Exceptions

    Watch Expressions
    Call StackAsync
    Not Paused
    Scope Variables
    Not Paused
    Breakpoints
    No Breakpoints
    DOM Breakpoints
    XHR Breakpoints
    Event Listener Breakpoints
    ConsoleSearchEmulationRendering

    Preserve log
    .
    Uncaught ReferenceError: pm is not defined (index):1095
    GET http://focallocal.org/register/tab.css/ (index):1171
    First Ever Page View of this Page ?f=wp-content/plugins/landing-pages/shared/assets/global/js/jquery.cookie.js,wp-content/plugins/lan…:72
    Uncaught ReferenceError: tabs_shortcode is not defined (index):1280
    Session Active ?f=wp-content/plugins/landing-pages/shared/assets/global/js/jquery.cookie.js,wp-content/plugins/lan…:72
    Page View Saved ?f=wp-content/plugins/landing-pages/shared/assets/global/js/jquery.cookie.js,wp-content/plugins/lan…:72
    .

    note: this is with plugins active, but the problem remains when its only BP active

    site is: focallocal.org


    danbp
    Moderator

    @danbp


    aces
    Participant

    @aces

    @lolapentagrom

    I don’t particularly recomend any specifically but I try to test stuff in the major browsers so they all come in useful.

    If you use Internet explorer you can press F12 to open up ‘developer tools’ ( also on the tools dropdown )

    You can also press F12 in google chrome: see https://developer.chrome.com/devtools

    Mozilla Firefox doesn’t have a built in developer tools. I use firebug ( free ), which has to be installed separately. See https://www.getfirebug.com/


    bp-help
    Participant

    @bphelp

    @aces
    Maybe you overlooked it but Firefox does have built in developer tools in the menu under Tools/Web Developer but firebug is a great and more user friendly.


    LolaPentagrom
    Participant

    @lolapentagrom

    This is what appears when I press F12 while in my wp admin dashboard:

    6Consider using ‘dppx’ units, as in CSS ‘dpi’ means dots-per-CSS-inch, not dots-per-physical-inch, so does not correspond to the actual ‘dpi’ of a screen. In media query expression: print, not all, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) (index):1
    Consider using ‘dppx’ units, as in CSS ‘dpi’ means dots-per-CSS-inch, not dots-per-physical-inch, so does not correspond to the actual ‘dpi’ of a screen. In media query expression: print, not all, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi)

    (how can i attach a screenshot here?)


    DIYWWF
    Participant

    @diywwf

    After lots of searching I finally got round the problem of BP/WP not taking you to the registration page by adding the following file into wp-content/plugins/

    bp-custom.php

    <?php
    /**
    * Disables BuddyPress’ registration process and fallsback to WordPress’ one.
    */
    function my_disable_bp_registration() {
    remove_action( ‘bp_init’, ‘bp_core_wpsignup_redirect’ );
    remove_action( ‘bp_screens’, ‘bp_core_screen_signup’ );
    }
    add_action( ‘bp_loaded’, ‘my_disable_bp_registration’ );

    add_filter( ‘bp_get_signup_page’, “firmasite_redirect_bp_signup_page”);
    function firmasite_redirect_bp_signup_page($page ){
    return bp_get_root_domain() . ‘/wp-signup.php’;
    }

    This dispenses with BP’s registration system and falls back to the standard WP registration.


    focallocal
    Participant

    @focallocal

    would that not remove many of the buddypress features available to members who sign up to your site?


    LolaPentagrom
    Participant

    @lolapentagrom

    @DIYWWF thanks for the suggestion! But Im also worried (like focallocal) about this getting rid of all the awesome things that make Buddypress awesome.

    @bphelp
    what do you think? isn’t there any other option?


    focallocal
    Participant

    @focallocal

    bump

    not just me asking this, i’ve looked on forums all over and it seems to be a common bug. as mine was a freash BP+WP install and isnt theme or plugin related i would speculate that maybe its related to a conflict server side, although i have no idea what it could be


    focallocal
    Participant

    @focallocal

    i tried the code to disable BP register and that causes the whole site to load a blank page. doesnt seem to in BP 4.0 :/


    LolaPentagrom
    Participant

    @lolapentagrom

    @bphelp hello? Please dont abbandon us! We love your plugin!


    markou
    Participant

    @markou

    I’m having the exact same issue. Can someone please help?


    LolaPentagrom
    Participant

    @lolapentagrom

    @bphelp Creating new groups doesnt work either…Please help!!


    focallocal
    Participant

    @focallocal

    i tried repairing the WP database but it still wont work

Viewing 20 replies - 1 through 20 (of 20 total)
  • The topic ‘BuddyPress won't take in new registers’ is closed to new replies.
Skip to toolbar