0

Good day!

I am having issues with storing files to our S3 when the file is large (1gb+).
Only a supervisord entry like this is show:

[2019-10-02 03:29:09][18] Processing: App\Jobs\JobMoveToS3
[2019-10-02 03:30:39][18] Processing: App\Jobs\JobMoveToS3
[2019-10-02 03:32:10][18] Processing: App\Jobs\JobMoveToS3
[2019-10-02 03:33:10][18] Failed:     App\Jobs\JobMoveToS3 

Could this have something to do with memory limit? We are using the DigitalOcean 5dollar package.

RayzorMamon
  • 174
  • 1
  • 13

1 Answers1

1

try to update your php.ini:

; Maximum allowed size for uploaded files.
upload_max_filesize = 2048M

; Must be greater than or equal to upload_max_filesize
post_max_size = 2048M
Nino
  • 6,931
  • 2
  • 27
  • 42