SSLV3_ALERT_BAD_RECORD_MAC(tls_record.cc:583) error 268436476, uri=https://cloud.appwrite.io/v1/storage/buckets/67bxxxxxxxxxxxxd026/files (0)
as well as this error
ClientException: Connection reset by peer, uri=https://cloud.appwrite.io/v1/storage/buckets/67b10xxxxxxxxxxxx026/files (0)
yes my internet is stable and im able to perform reads and write to the Database. I'm only facing this issue with storage i have checked if its the permissions by setting it to any
this is the code i have used to create a new file on storage
bucketId: bucketId,
fileId: fileId,
file: InputFile.fromPath(path: image),
permissions: [
Permission.read(Role.any()), // Anyone can read
Permission.write(
Role.user(userId)), // Only the user can edit/delete
]);
return result; ```
weird....i wonder if this is a flutter bug. what version of flutter do you have?
flutter 3.29.0
What flutter appwrite version are you on?
appwrite: ^14.0.0
Try appwrite: 13.0.0
Recommended threads
- Helping in unblock my account
I deleted my Appwrite Cloud account that was linked via GitHub. Now I activated my GitHub Student Pack and want to sign up again using the same GitHub account, ...
- Not allowed permission to upsert a prese...
```js const presenceID = ID.unique(); setPID(presenceID); const presence = await presences.upsert({ presenceId: presenceID, status: "online"...
- Can't really use the S3 storage device
hi, I've linked my local MinIO Instance (it's just for testing, not for prod.) to my appwrite instance, when i'm uploading a file it's getting uploaded to the S...