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
- Weird permission failure
when creating an account I use following methods: ``` Future<void> register(String email, String password, String username) async { final user = await accoun...
- Paused project can't activate
I have failed to reactivate one my projects which had been paused
- 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 ...