Questions tagged [digital-ocean-spaces]
92 questions
1
vote
1 answer
How to upload from Digital Ocean Storage to Google Cloud Storage, directly, programatically without rclone
I want to migrate files from Digital Ocean Storage into Google Cloud Storage programatically without rclone.
I know the exact location file that resides in the Digital Ocean Storage(DOS), and I have the signed url for the Google Cloud…

london_utku
- 1,070
- 2
- 16
- 36
1
vote
0 answers
@aws-sdk/client-s3 --> No 'Access-Control-Allow-Origin' header is present on the requested resource
I'm trying to upload from localhost to digital ocean's space .
For this, I use the npm package.
But I am getting the error given below. What code should I add to this package so that I don't get an error.
Access to fetch at…

Tamer UZUN
- 19
- 2
1
vote
1 answer
How to download/migrate multiple files from Digital Ocean Spaces to GCP Cloud Storage?
I have plenty of spaces on Digital Ocean, where there are multiple folders with 100s & even 1000s of files. I need to migrate them all to GCP Cloud Storage, but its too almost impossible to do that manually. Is there any way, that I can directly…

Satyam Bhatia
- 166
- 6
1
vote
0 answers
DigitalOcean spaces: metadata settings for cache control
I am using Spaces from DigitalOcean to serve static assets of a django website. I am running into issues to set the cache policy.
By default no cache policy is set :
I modified the metadata of my file to add a cache-control setting and I can now…

rafcha
- 41
- 4
1
vote
0 answers
How to show DigitalOcean private Spaces temporaryURL on Laravel?
I have successfully generated a temporary link in laravel which works correctly locally but when I try to generate a link via Storage::temporaryUrl for the production environment, it does not work. The error message is this "This driver does not…

Alexa
- 370
- 2
- 6
1
vote
0 answers
Performance issue with streaming files from digial ocean storage in laravel 5.5
I am using digital ocean space for storing files. I am having performance issue while reading files from there, specially streaming files in a route. Here is my code structure.
Default Driver:
FILESYSTEM_DRIVER=digitalocean
Disk…

Sagar Gautam
- 9,049
- 6
- 53
- 84
1
vote
0 answers
Laravel how do I get the process percentage when I upload on digital ocean?
I have a large input file for 200MB-1GB, which will be uploaded in digital ocean, I want the process percentage to appear, for that I have to get the percentage, is there a way?
here is my code to upload to digital ocean
$name = Str::uuid();
…

misry
- 341
- 2
- 4
- 14
1
vote
0 answers
Limit tasks dequeued per second for rabbitmq
I have a queue in RabbitMQ in the consumer-producer fashion, which works properly as a basic round robin queue.
My issue is I am trying to limit the number of requests that are processed per second because when I dequeue an item, I make a request to…

Mackenzie Quigley
- 55
- 1
- 8
1
vote
0 answers
Memory size exhausted error on Digital Ocean Spaces (AWS S3)
Running AWS S3 client functions seems to have issues on my end and is taking up so much memory (generating "Allowed memory size of 3670016000 bytes exhausted"). I have the following code snippet below
Things that I have tried:
Have the version set…

Nathan
- 163
- 10
1
vote
0 answers
next js, can't catch errors in multer
I'm trying to upload files using next js and multer. I use digitalOcean spaces which is compatible with aws s3 sdk:
this is my s3 config:
const spacesEndpoint = new aws.Endpoint("fra1.digitaloceanspaces.com");
const s3 = new aws.S3({
endpoint:…

aleksander frnczak
- 399
- 1
- 2
- 12
1
vote
1 answer
Rails 6 image upload to digitalocean spaces
I have a blog that uploads banner and thumbnail images. I originally had it set to upload to the local directory using the carrierwave gem and I wanted to try to use digitalocean spaces since the app is deployed to the digitalocean app platform. I…

Stephen Scott Moore
- 345
- 3
- 17
1
vote
0 answers
How to browse files on a boto3 space ? NoSuchKey error
I created a s3 space with Digitalocean. I upload files into this one with ckeditor in a django project.
I have no problem for uploading files but I meet a problem when I try to browse my server (to see if an image is already present)
Here is my…

LucieDevGirl
- 177
- 10
1
vote
1 answer
DigitalOcean Spaces / Amazon S3 "InvalidArgument: null at Request.extractError"
InvalidArgument: null
at Request.extractError (P:\Upwork\MyProject\backend\node_modules\aws-sdk\lib\services\s3.js:700:35)
at Request.callListeners (P:\Upwork\MyProject\backend\node_modules\aws-sdk\lib\sequential_executor.js:106:20)
at…

Matt Davis
- 1,167
- 8
- 21
1
vote
1 answer
File not found exception in existing file on Digital Ocean space with laravel
I have uploaded a file using Laravel s3 driver configured for Digital Ocean space. Now I want to download the file using an api request. The code for the download is:
return \response()->download(Storage::disk('do')->url($user->cv),…

Yeasir Arafat
- 1,425
- 1
- 13
- 28
1
vote
0 answers
Upload image to digital ocean spaces is returning bad request
Here is my code to upload image to digital ocean from spring boot using aws s3 sdk
AWSCredentialsProvider awscp = new AWSStaticCredentialsProvider(
new BasicAWSCredentials("clientId", "client_secret")
);
…

Sony
- 7,136
- 5
- 45
- 68