70 questions
Score of 1
2 answers
501 views
Laravel 11 + Backblaze B2 (S3-Compatible): PUT error — "Unsupported header 'x-amz-checksum-crc32'" when uploading files
I'm using Laravel's filesystem with the S3 driver to connect to Backblaze B2's S3-compatible API. Here's my disk configuration in config/filesystems.php:
'disks' => [
'b2' => [
'...
Score of 3
2 answers
346 views
Laravel Disk b2 (backblaze) not working in Laravel 11
This is my config/filesystems.php:
'b2' => [
'driver' => 's3',
'key' => '*************',
'secret' => '**************',
'region' => 'us-west-002',
...
Score of 1
1 answer
713 views
CORS Issue with Backblaze B2 S3-Compatible API When Using ListBucketsCommand in Browser
I'm working of a S3 Navigator and trying to use Backblaze B2's S3-compatible API in my Angular application to authenticate and list buckets using the AWS SDK's S3Client. While this code works ...
Score of 2
1 answer
497 views
Moving large amount of data from Backblaze B2 to AWS S3 buckets
We have 20 TB data in Backblaze B2 storage. We want to migrate this to AWS S3 securely. What are my options for doing this in a scalable, secure way?
Can I do this without hitting the disk? (Cloud to ...
Score of 1
2 answers
554 views
How do I get Backblaze B2 to respond with Access-Control-Allow-Origin?
I'm trying to fetch an image using JavaScript from a Backblaze bucket that is set to allPrivate.
I have a correct authorization code that works if I fetch the image like this:
echo '<img src="'...
Score of 2
1 answer
661 views
BackBlaze B2 Cloud Storage: b2_upload_file endpoint endlessly hangs
I have a NextJS application that is using Backblaze B2 Cloud Storage to store videos and photos that a user wishes to upload.
I seem to be having an odd issue when trying to upload files. Basically, I ...
Score of 2
2 answers
613 views
How to limit bucket upload size in Backblaze B2 (S3 COMPATIBLE API)?
I'm implementing a functionality in our app where users buy a subscription and create their workspace. Each subscription plan has different storage limits (e.g, 5 GB for a small plan). We use ...
Score of 1
1 answer
243 views
"Source not supported" Error using Backblaze and next-video in NextJS
However, my Video component is throwing an error when I visit the page. The URL works in a tag in Next.js, but it does not work the same way in the next-video package. I have configured my next....
Score of 1
1 answer
54 views
BackBlaze images corrupt when posting buffer from NodeJS
I am trying to capture an image on a React Native app and post the image to my NodeJS server. I then am trying to post that image to BackBlaze after converting it to a Buffer. All the images are ...
Score of 1
1 answer
166 views
Can't set catalog to backblaze in Trino
I'm trying to run a POC on getting trino querying data into backblaze.
Following this example: https://github.com/bitsondatadev/trino-getting-started/blob/main/hive/trino-b2/README.md got me to the ...
Score of 2
1 answer
783 views
Backblaze cors not working with localhost
I was following this github repo and this answer.
rules.json
[
{
"corsRuleName": "downloadFromAnyOriginWithUpload",
"allowedOrigins": [
&...
Score of 1
1 answer
370 views
Backblaze-b2 cors issue nextjs
Hi all I'm trying to set up Backblaze for a nextjs app, but I'm getting cors error, in the first instance I thought that it was the bucket and I set the custom cors rules but it was not because I'm ...
Score of 2
1 answer
166 views
Can't upload custom header for large file to Backblaze
I'm using rclone to upload a large file (~60Gb) to B2 storage. I also wanted to upload a custom header but it didn't work. It's worked fine if my file is small.
rclone --config rclone.conf --bwlimit ...
Score of 1
1 answer
539 views
Download a snapshot from Backblaze with curl
I'd like to download a lot of small files compressed into a snapshot from Backblaze B2 to a remote server with curl or wget.
The download URL is only accessible if you are signed in, and accessing the ...
Score of 3
1 answer
1193 views
How to update corsRules for Backblaze b2 Cloud Storage using CLI or how to bypass blocking by CORS policy?
I am making a website that users can upload and download pictures (posts and profile pictures),
The cloud storage I use is Backblaze b2 cloud storage, REACT for frontend, NODE & Express for ...