
Is there a way to get a progress bar for the status of uploads to the server.

yes, there's a callback to the create file method. However, the progress is only in 5MB chunks

something is better then nothing

is there any specific way that I should submit the file to get progress

no

How do i check the chunks uploaded as it progresses

Got it thank you!

const uploadPromise = storage.createFile( getlinkedData.documents[0].bucketId, ID.unique(), draggedFiles[0], [], (progress) => { console.log(progress.progress) uploadProgress.set(progress.progress) // Update the Svelte store }

This is the ending code I got to make it work with JS. I am using SveltekIt

[Solved] Progress Bar for storage uploads
Recommended threads
- I create storage and save images in that...
- Cannot use R2 for storage
I setup the environment variables including s3 endpoint to use R2 as my storage provider but I'm unable to upload any files. Got this from docker logs appwrite
- rate limit for the current endpoint exce...
My site is working fine but sometimes it goes into error like failing to create jwt and rate limit! It breaks the authentication completely! Any quick solution?...
