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
- Usage of the new Client() and dealing wi...
Hey guys, just a quick one - we had some web traffic the other day and it ended up bombing out - To put in perspective of how the app works, we have a Nuxt Ap...
- [SOLVED] curl error Number: 6 — function...
Hello, I invested a lot of time in this error in a fresh install of appwrite 1.8.1 and lasted until fix, this if for helping anyone that can have the same weird...
- CORS errors in Obsidian custom plugin
Hi, anyone here familiar with obsidian community plugins? In short: it's a local first note app which supports writing your own add-ons / plugin But I keep get...