sure, this is the project id: 654bb1fd6437f515f365
Thanks. Will get back to you soon with updates
Is this a newly created project?
yes
So the project doesn't has anything, true?
If so, creating a new project should solve the issue
It was probably caused due to creating the project during database issues
Yes. @dimas can you try doing this?
you mean create from beginning new project ? and then create new database again ?
you mean create from beginning new project ? and then create new database again ?
Yes. Does your previous project has data?
no i mean has twice create new project with issue 500 server
- error all 500 (solved) https://discord.com/channels/564160730845151244/1171365689722929152
- Now when write database (POST)
ok let me try to create once from beginning 🙂
You don't need to create a new project when an outage happens, and also during outage 😅
not work
this the new project id : 654c9e87e173cc44243e
Weird 👀
This must be some other error. 😅
Can you share the code?
down ?
I have the exact same issue. Created the project a few hours ago. Now all pages from auth to storage show server 500 error.
This is the code I'm trying to run:
Future<List<Document>> getNotesFromCloud = _appwriteService.getNotes();
getNotesFromCloud.then((result) {
inspect(result);
if (result.isNotEmpty) {
for (Document note in result) {
TrainingNote trainingNote = TrainingNote(
id: note.data['id'],
subject: note.data['subject'],
date: DateTime.parse(note.data['date']),
description: note.data['description'],
);
//Set date from ISO 8601 notation to custom
DateFormat('dd MMMM HH:mm').format(trainingNote.date);
//Add the training note after date is formatted
_trainingNotes.add(trainingNote);
}
return _trainingNotes;
} else {
return <TrainingNote>[];
}
});```
@nebukadnezar Creating a new project should solve the issue
@D5 @Haimantika got Error 500 when patch data, please refer the image
that issue should i create new thread at the support channel ?
Recommended threads
- delete document problems
i don't know what's going on but i get an attribute "tournamentid" not found in the collection when i try to delet the document... but this is just the document...
- Attributes Confusion
```import 'package:appwrite/models.dart'; class OrdersModel { String id, email, name, phone, status, user_id, address; int discount, total, created_at; L...
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...