s3-bucket-stream-zip-php
s3-bucket-stream-zip-php copied to clipboard
PHP library to efficiently stream contents from an AWS S3 bucket or folder as a zip file.
I want to implement functionality of download whole folder as zip from s3 bucket but it seems like it isn't gonna work with PHP v3 aws SDK.
How to download multiple zips from for-loop call below code closes the browser tab when 1st zip download starts so that remaining loops cant work i.e. $RowImagesData = array() //...
Thanks a lot for this class, exactly what I was looking for. However, since I needed to use v3 of the AWS SDK for PHP (due to Laravel and bucket...
here is my code: ``` $params = [ "key" => "myKey", "secret" => "mySecret", "region" => "ap-southeast-1", "bucket" => "myBuket", "prefix" => "571/low/" ]; $stream = new S3BucketStreamZip($params); $stream->send('name-of-zipfile-to-send.zip'); I'm...
I just tested the library but is not working for me. It downloaded a file called "name-of-zipfile-to-send.zip", it contains 2 files, but files are 0Kb size. None of the files...
@jmathai I am using your script for stream zip and provide download file to the end user. It works fine for 30 or more files but when it comes to...
Hi, I am unable to composer install this because the package version of "aws/aws-sdk-php" is 2.8 and I already have 3.0. Could you please update the package version here ....