#Database 500 error POST
1 messages · Page 1 of 1 (latest)
Hi, was it Appwrite Cloud?
yes, @crystal dragon
We had some issues ongoing, should be good now. Are you still facing the issue?
still error 500
Can you share your project id?
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. @graceful ice 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 😅
Weird 👀
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>[];
}
});```
@minor rain Creating a new project should solve the issue