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
- Site deployment keeps getting failed
Hi good folks, need a hand with Sites deploy Error on every deploy: Synchronous function execution timed out... duration doesn't exceed 30 seconds [exact log ...
- Unknown attribute type: varchar / text
Since the `string` type is deprecated I tried using `varchar` and `text` in some newer tables, but when running `appwrite pull tables && appwrite types ./src/li...
- trying to figure out how to activate my...
please help