Sponsored Content
The Lounge What is on Your Mind? Bug in New User Registration Process (No Registration Complete Message) Post 303045611 by Neo on Friday 3rd of April 2020 09:11:46 AM
Old 04-03-2020
Bug in New User Registration Process (No Registration Complete Message)

There is bug in the new member registration process.

This bug appeared after we paused registration and moved to the new forums in our initial test mode.

When a new user registers now (here), the registration processes completes (normally) but the "Registration Success" message does not appear in the registration feedback message.

However, the user can login.

I have already retired this code base and do not plan to fix this bug since we will be moving to a new forum soon.

Thank you for your patience.

One option is to disable new user registrations again here, but for now I will leave it "as-is" since we will get the new forums running again soon (we hope!).
This User Gave Thanks to Neo For This Post:
 

7 More Discussions You Might Find Interesting

1. Forum Support Area for Unregistered Users & Account Problems

Help! I'm unable to complete my registration

I have followed the instructions contained in my confirmation email and when I do I am referred here: https://www.unix.com/register.php?a=act&u=302021451&i=94824252. When I follow the instructions on that screen I am directed to the same error page. Please assist. Thank you in advance. (1 Reply)
Discussion started by: ramiller01
1 Replies

2. Forum Support Area for Unregistered Users & Account Problems

user names being rejected during registration

To Whom It May Concern, I've tried registering, and am unable to do so. The message being returned is that my name choices are being rejected for not meeting some administrator criteria, which is not discernible from the message returned by the board software. The password I chose was all... (1 Reply)
Discussion started by: username_in_use
1 Replies

3. Forum Support Area for Unregistered Users & Account Problems

Need help with forum registration

i can not register, please help me (1 Reply)
Discussion started by: friender@mail
1 Replies

4. Forum Support Area for Unregistered Users & Account Problems

Problem with registration

When I'm trying to register it says that my e-mail adress )is banned by administrator. Why? Thanks PS The same problem occurs with other 2 adresses I have (1 Reply)
Discussion started by: Mihail
1 Replies

5. Forum Support Area for Unregistered Users & Account Problems

Registration User Name Rejected

Unix Admin Registration process refused two user names. I may have already registered here and it's kicking me out because of email address but giving me username msg. What's the solution to this? Thanks (0 Replies)
Discussion started by: Unregistered
0 Replies

6. Forum Support Area for Unregistered Users & Account Problems

Regarding registration email for new user

Hello Moderators, Greetings !! This is regarding my friend to whom I refered this forum to learn UNIX. User didn't receieved any registration email yet, could you please help user. Will be grateful to you on same. Login name: Gurvinder_Kaur NOTE: User doesn't have enough bits for... (0 Replies)
Discussion started by: RavinderSingh13
0 Replies

7. What is on Your Mind?

Fixed Password Bug in Registration Process

Today I found out that many new user registrations were having trouble logging in. I spend about three hours debugging this, and I think I fixed the problem. If anyone registers and has trouble logging in please contact me on Live Chat. Thanks. (1 Reply)
Discussion started by: Neo
1 Replies
AnyEvent::XMPP::Ext::Registration(3pm)			User Contributed Perl Documentation		    AnyEvent::XMPP::Ext::Registration(3pm)

NAME
AnyEvent::XMPP::Ext::Registration - Handles all tasks of in band registration SYNOPSIS
my $con = AnyEvent::XMPP::Connection->new (...); $con->reg_cb (stream_pre_authentication => sub { my ($con) = @_; my $reg = AnyEvent::XMPP::Ext::Registration->new (connection => $con); $reg->send_registration_request (sub { my ($reg, $form, $error) = @_; if ($error) { # error handling } else { my $af = $form->try_fillout_registration ("tester", "secret"); $reg->submit_form ($af, sub { my ($reg, $ok, $error, $form) = @_; if ($ok) { # registered successfully! $con->authenticate } else { # error if ($form) { # we got an alternative form! # fill it out and submit it with C<submit_form> again } } }); } }); 0 }); DESCRIPTION
This module handles all tasks of in band registration that are possible and specified by XEP-0077. It's mainly a helper class that eases some tasks such as submitting and retrieving a form. METHODS
new (%args) This is the constructor for a registration object. connection This must be a AnyEvent::XMPP::Connection (or some other subclass of that) object. This argument is required. send_registration_request ($cb) This method sends a register form request. $cb will be called when either the form arrived or an error occured. The first argument of $cb is always $self. If the form arrived the second argument of $cb will be a AnyEvent::XMPP::Ext::RegisterForm object. If an error occured the second argument will be undef and the third argument will be a AnyEvent::XMPP::Error::Register object. For hints how AnyEvent::XMPP::Ext::RegisterForm should be filled out look in XEP-0077. Either you have legacy form fields, out of band data or a data form. See also try_fillout_registration in AnyEvent::XMPP::Ext::RegisterForm. send_unregistration_request ($cb) This method sends an unregistration request. For description of the semantics of the callback in $cb plase look in the description of the "submit_form" method below. send_password_change_request ($username, $password, $cb) This method sends a password change request for the user $username with the new password $password. For description of the semantics of the callback in $cb plase look in the description of the "submit_form" method below. submit_form ($form, $cb) This method submits the $form which should be of type AnyEvent::XMPP::Ext::RegisterForm and should be an answer form. $con is the connection on which to send this form. $cb is the callback that will be called once the form has been submitted and either an error or success was received. The first argument to the callback will be the AnyEvent::XMPP::Ext::Registration object, the second will be a boolean value that is true when the form was successfully transmitted and everything is fine. If the second argument is false then the third argument is a AnyEvent::XMPP::Error::Register object. If the error contained a data form which is required to successfully make the request then the fourth argument will be a AnyEvent::XMPP::Ext::RegisterForm which you should fill out and send again with "submit_form". For the semantics of such an error form see also XEP-0077. AUTHOR
Robin Redeker, "<elmex at ta-sa.org>", JID: "<elmex at jabber.org>" COPYRIGHT &; LICENSE Copyright 2007, 2008 Robin Redeker, all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-01-23 AnyEvent::XMPP::Ext::Registration(3pm)
All times are GMT -4. The time now is 12:41 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy