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...
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...
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_...
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...
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 =...
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...
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...
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? >
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?
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...