500 Error At sign up

I input all info at sign up modal, and Error at This Modal.


But that Email Address is not registered.

Do you mean here or on your own instance? Is that email address banned in the Logs. IP section?

that error at my own instance.
not banned in the log.


this is console

What do you see in /logs in your browser? Any unusual plugins we do not ship?

1 Like

Was the password standard ASCII or did it contain Korean characters?

This errror at /logs
I hide our company’s domain.

i didn’t input any korean characters :frowning:

this is a pickle, we need to domain full error message here to fix the regexp, are there any non latin chars in your domain name?

Sorry

domains = group.automatic_membership_email_domains.gsub('.', '\.')
      if self.email =~ Regexp.new("@(#{domains})$", true)

you have automatic membership domain of *@mydomain.com remove the *@

@techAPJ can you add a validator there?

8 Likes

Thank you for your support!
I solved problem!

1 Like

Done via:

https://github.com/discourse/discourse/commit/6354324f2f4335c60526af3dfa03a01865b23f07

1 Like