So i have an appwrite collection with the permissions Read on Any (no document security)
When trying to access it I have an Error 500 when accessing it without any session :
{
"message": "Server Error",
"code": 500,
"type": "general_unknown",
"version": "1.5.3"
}
When using a session (tested known user or anon) it works.
After checking a little on the appwrite logs i saw that :
2024-04-10T11:49:50.227098245Z [Error] Timestamp: 2024-04-10T11:49:50+00:00
2024-04-10T11:49:50.227232385Z [Error] Method: GET
2024-04-10T11:49:50.227276118Z [Error] URL: /v1/databases/:databaseId/collections/:collectionId/documents
2024-04-10T11:49:50.227304240Z [Error] Type: Utopia\Database\Exception
2024-04-10T11:49:50.227313388Z [Error] Message: Collection not found
2024-04-10T11:49:50.227319934Z [Error] File: /usr/src/code/vendor/utopia-php/database/src/Database/Database.php
2024-04-10T11:49:50.227326562Z [Error] Line: 2623
Is it the normal way that should work ? (not sure cuz the log error)
I want to make my News collection public readonly for people to see them.
And the database ID and collection ID are definitely correct?
Recommended threads
- hi guys! my site is not accesible in my ...
- Appwrite project paused
I have github student account. The auth has been paused however the database is working fine. I cant see any option to resume from my console panel. It is just ...
- MongoDb Database Breaks integer[] & bigi...
I've got a table with the below column created. When I try to insert the value `[-3408048000]` into it, the dart sdk cloud function call is successful (no error...