By Garrett on Wednesday, 06 July 2016
Posted in General
Replies 1
Likes 0
Views 328
Votes 0
I am using Amazon s3 for easy discuss. I have users that are uploading large files sizes like 250 mb.
When I submit for upload the file uploads to 100% then the screen changes to the category page. The file has not uploaded and the post is gone.

I can upload smaller file sizes but not large files.

Thanks
Hello Garrett,

250MB is just too huge and before the file is being uploaded to the server, it would have failed already. You will first need to ensure that in your php settings, it is being set to the following:

1. These defines the maximum file size and post request allowed by PHP
upload_max_filesize=250MB
post_max_size= 250MB

2. The following defines how long a script would execute until PHP rejects the request. It needs to be higher because the script needs to send the 250mb data to Amazon.
max_execution_time=6000
·
Wednesday, 06 July 2016 13:22
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post