"User registration is not enabled, user limit is reached or registration requires approval."

Hello,

My settings are

production.yaml

signup:
  enabled: true
  **limit: 90000** # When the limit is reached, registrations are disabled. -1 == unlimited
  minimum_age: 16 # Used to configure the signup form
  requires_email_verification: true
  filters:
    cidr: # You can specify CIDR ranges to whitelist (empty = no filtering) or blacklist
      whitelist: []
      blacklist: []

local-production.json

"signup": {
    "enabled": true,
    **"limit": 1000,**
    "requires_approval": false,
    "requires_email_verification": true,
    "minimum_age": 16
  },

When a user wants to create an account, they see the following:

"User registration is not enabled, user limit is reached or registration requires approval.
"

But my website only has 200 users.

What can I do to fix the problem?

Hi,

Can you paste your instance URL?

Thanks, I fixed the problem myself