Skip to:
Content
Pages
Categories
Search
Top
Bottom

Error after submitting registration/profile fields form

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

  • Jay Collier
    Participant

    @jcollier

    Follow-up. One of our users just confirmed this problem on Mac Firefox and Safari:

    After putting in my registration information and hitting the submit button it takes a long time to process and the result I get is the screen shot below. [404 Fancy Meeting You Here… back on the /register/ URL]


    @mercime
    Keymaster

    @mercime

    @jcollier Tested your site registration in IE 10 and getting the same issue. Made a Responsive child theme in my test install, used default page template for register and had no issues registering/activating new account.

    Could be the custom template used for register page – noticed that there’s “Posted in” text just before footer in your register page. Change register page template back to default page template, clear cache, check if issue is resolved. if that doesn’t work, deactivate plugins batch by batch to check which is causing the timeout.


    Jay Collier
    Participant

    @jcollier

    Thank you for the diagnosis and recommendations.

    I am using Responsive child theme with the default template. I’ve remove all plugins remotely related to registration.

    The last thing I just removed is a functions.php script to automatically add new users to a particular group when they register, below.

    So, then the question arises: where does the “Posted in” text come from? In BuddyPress settings, I chose a page called “Register” for registration, and the page itself uses the “Default” template. However, what Responsive file is default? I’m not seeing “Posted in” in /page.php/ or /post.php/. It’s in /sidebar-content-page.php/ but I haven’t selected it.

    Also, I am using Types and Views, but no views or templates are applied to any of those page types.

    /**
    * Automatically adds members to group when they are registered
    */
    function automatic_group_membership( $user_id ) {
    if( !$user_id )
    return false;

    groups_accept_invite( $user_id, 6 );
    }
    add_action( ‘user_register’, ‘automatic_group_membership’ );


    Mixali
    Participant

    @mixali

    Hi Jay,

    I was having a similar problem and did as suggested here:

    https://buddypress.org/support/topic/bp-default-sidebar-login-not-working/#post-166898

    Hope it serves! Good luck!


    Drexel82
    Participant

    @drexel82

    This solution worked for me. Thanks.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Error after submitting registration/profile fields form’ is closed to new replies.
Skip to toolbar