I have a PHP form which takes a selected zip file on submit and uses AJAX to post to an Amazon S3 bucket. This process goes great when I test 10MB or less zip files, but when I test something over 500MB I get the following error:
Your socket connection to the server was not read from or written to within the timeout period. Idle connections will be closed.
I need to be able to allow up to 5GB zip files to be uploaded. At this point I need a better understanding of what I need to do to allow the users to upload large files. Any help is much appreciated.
PS: I will be happy to add code snippets, but I am looking to get a response to show the necessary snippets rather than posting a bunch of unrelated code.