I have set up Appwrite locally for my Flutter app project and encountered an issue despite configuring my user limit as unlimited in the Appwrite dashboard panel. Whenever I attempt to perform user-related actions, such as user registration or authentication, I receive the error message
The current project has exceeded the maximum number of users. Please check your user limit in the Appwrite console.
This error persists even though I have explicitly set the user limit to unlimited in the dashboard.
How can I resolve this error and ensure that my locally deployed Appwrite instance properly recognizes the unlimited user limit, allowing me to perform user-related actions without any restrictions?
Note: I have already verified that my Appwrite dashboard panel displays the correct unlimited user limit setting for my project. and I attached my screenshot to this thread
this is my endpoint :
static const endPoint = "http://localhost/v1";
Appwrite version : 1.3.8
Can you try and set limited with 0
instead of 100
and see if it works?
Or even better, what does your response look like when you update the setting?
Unfortunately I couldn't find limit in Network section and also dashboard doesn't allow me to set 0 as value
Could you check the Settings tab in the Auth panel, and make sure the correct methods are toggled on?
Yes, all of them have been toggled on.
any chance you can check the network request headers for one of these network requests from your app?
I'm utilizing the Appwrite Flutter SDK for executing a network request and leveraging the fpdart package to enhance clarity in processing the response.
before calling _account.create()
can you add:
print(_account.client.config);
and share the output?
this is the output : "{locale: 64d25c2a2b61f91c032a}"
seems like you're missing project id...did you call client.setProject()
?
did you accidentally call client.setLocale()
?
Isn't correct to set the locale in my Riverpod provider using client.setLocale()?
can you try changing that to client.setProject()
? See https://appwrite.io/docs/getting-started-for-flutter#initSDK
Thank you so much, @Steven You truly saved the day. I resolved my issue by changing the method from .setLocale() to .setProject(). Your assistance was invaluable, and I'm thrilled to be a user of Appwrite. :appwritepeepo:
happy to help!
[SOLVED] Exceeding User Limit Despite Unlimited Setting in Dashboard
Recommended threads
- Query Appwrite
Hello, I have a question regarding Queries in Appwrite. If I have a string "YYYY-MM", how can I query the $createdAt column to match this filter?
- Different appwrite IDs are getting expos...
File_URL_FORMAT= https://cloud.appwrite.io/v1/storage/buckets/[BUCKET_ID]/files/[FILE_ID]/preview?project=[PROJECT_ID] I'm trying to access files in my web app...
- Invalid document structure: missing requ...
I just pick up my code that's working a week ago, and now I got this error: ``` code: 400, type: 'document_invalid_structure', response: { message: 'Inv...