Questions tagged as 's3'

1
answer

Allow access to S3 files without exposing AWS URL

I need to generate download links for files that are stored on S3, but my company does not want to expose the AWS URL. Our system is developed in Java and Spring, until then the system retrieved the required file and sends it through Response, b...
asked by 27.04.2018 / 22:02
0
answers

Send objects larger than 5Gb using SDK Amazon S3

I have been using the Amazon S3 SDK for communications on a cloud server, called DreamHost or DreamObjects. My application upa files to my buckets. However, I started having problems because my files exceeded 5GB, so I had to change the way t...
asked by 26.12.2016 / 17:03
0
answers

413 (Request Entity Too Large) on php server

I'm trying to send a video file via ajax to the server but the server returns me 413 whenever the file is larger than a 20M, my apache settings are: upload_max_filesize 5000M memory_limit 1024M max_input_time 6000 max_execution_time 3000 post_...
asked by 06.10.2016 / 18:58
1
answer

How to save the user session to a site stored in AWS - S3?

At AWS we can use the S3 service to provide static web sites. Seundo at documentation stands for static not using backend like php, asp.net, etc. However, I can dynamically load content through javascript get requests, consuming end-points...
asked by 23.08.2018 / 05:11
1
answer

What are the advantages of providing metadata when inserting object into AWS S3?

No AWS SDK for PHP v3 the method putObject receives various parameters, such as ContentType, ContentEncoding, etc. In its simplest form , I can insert an object only by telling Bucket , Key and SourceFile . $result =...
asked by 09.02.2017 / 15:55
1
answer

Error during upload request for amazon S3

When trying to upload an image is giving problems and would like to know what the problem is and how to solve it. Amazon request: public void amazon() { String fileName = photoFile.getName(); long mTotalFileBytes; O...
asked by 20.01.2016 / 19:29
0
answers

Store the S3 URL in the database table

I'm developing an application where I upload and files to AWS S3, just images. if($request->hasFile('cover')){ $file = $request->file('cover'); $name = time().$file->getClientOriginalName(); $filep...
asked by 05.10.2018 / 19:41
1
answer

Uploading Photos to Amazon Storage?

I want to put a form with an image upload field on the client that uploads photos directly to Amazon S3 storage, without going through the server, using Meteor, can someone point a direction, any tips? >     
asked by 07.07.2018 / 14:41
1
answer

fopen and fputs for Amazon S3 by Laravel

In php, is it possible to send an image file, obtained through the return of a request by cURL, directly to an S3 bucket using Laravel's methods? If yes, how?     
asked by 13.07.2018 / 16:52
0
answers

Amazon S3 SDK costs to list files

Amazon S3 has costs to access files, both in the amount of requests and in size. The least doubt is in the requests made by the Javascript SDK for the methods: listObjectsV2; headObject. I need to list my Bucket files to know whi...
asked by 03.04.2018 / 14:41