I have a bucket where I switched from encryption to not encrypting files. I later realized that files already uploaded earlier stay encrypted. Now I have a bucket where half of the files are encrypted, half are not. Is there a migration script where I can either encrypt or decrypt all files in a bucket? Or can I decrypt the files myself and override the encrypted once?
As per what I know, there's neither any tool present to encrypt/decrypt the existing files nor it is possible to do the same manually. You can perform following steps to decrypt those files:
- Download the encrypted file through Appwrite.
- Re-upload the downloaded content into same bucket (this time encryption disabled).
- After verifying everything works well and all files are as you've desired, delete the old encrypted files.
Recommended threads
- I'm getting an error on the console "j?....
On my self hosted instance version 1.8.1 the console is giving me this error when trying to view the rows for a table I recently created. My application is read...
- local build `composer installer:dev` iss...
setup - dev container (default linux universal) WSL (test with gh codespace too) - php 8.5.7 - all extensions installed - `composer install` fine - `composer...
- Function global variables
when i create a top-level global variable in go or bun how will it behave? is the heap getting renewed on every execution or could i do some kind of temp. cachi...