project name: iskra
please include the error here...and is that the project ID or name?
it is id
[VERBOSE-2:dart_vm_initializer.cc(41)] Unhandled Exception: AppwriteException: general_unknown, Server Error (500) #0 ClientMixin.prepareResponse (package:appwrite/src/client_mixin.dart:73:9) #1 ClientIO.call (package:appwrite/src/client_io.dart:373:14) <asynchronous suspension> #2 Databases.updateDocument (package:appwrite/services/databases.dart:123:17) <asynchronous suspension> flutter: AppwriteException: general_unknown, Server Error (500)
and what's your code that is throwing this exception?
FYI, it's best to wrap code in backticks to format a bit nicer. You can use 1 backtick for inline code (https://www.markdownguide.org/basic-syntax/#code) and 3 backticks for multiline code (https://www.markdownguide.org/extended-syntax/#syntax-highlighting.
try {
AppWrite().db?.updateDocument(
collectionId: 'users',
data: {'about': newText},
databaseId: 'iskra',
documentId: SaveService().prefs.getString('userId')!,
);
} on AppwriteException catch (e) {
print(e);
}
}
did you create the userPhotos attribute recently? is it still processing?
Yes. Today there were problems with deleting an attribute
what problems? What's the state of your attributes now?
After deleting an attribute, the deletion status hung for a long time
now i do not see problrms in panel
Attribute problems happen frequently. can't add or delete
every day i gues
so it was deleting for a while, but now the attribute is gone? can you share a screenshot of your attributes list?
maintenance happens every day at the same time for about an hour. if it says processing or deleting, you'll just have to wait.
list Attribute is long. cant get screenshot. But i can see that is good. no error status
so?
Recommended threads
- Frequent 500 Internal Server Errors - Pr...
PROJECT ID: 6951f2xxxxx1ee9e750a REGION: Singapore (sgp.cloud.appwrite.io) PLAN: Pro Our production application experiences **500 Internal Server Errors** mult...
- Issue with Custom SMTP
Hey everyone, I'm facing an issue when updating my Custom SMTP settings on Appwrite Cloud. The UI fails silently (no visual errors), but when checking the cons...
- Flutter OAuth2 webAuth Bug?
I created with flutter an app where I can login in with my Microsoft Account. When I compile it to Web (WASM) or Android (aab) then there is no problem what so ...