Tagged Questions
1
vote
1answer
103 views
PHP script occasionally waits 20-30 minutes to start
I have a PHP script on my server that, primarily, takes files from an upload and moves them into place. It usually works fine, but occasionally, the script won't start for 20-30 minutes. The entire ...
0
votes
1answer
573 views
uploading via http post (multipart/form-data) silently fails with big files
When uploading multipart/form-data forms via a http post request to my apache web server, very big files (i.e. 30MB) are silently discarded. On the server side all looks as if the attached file was ...
1
vote
1answer
408 views
How can I use curl to upload and post a file with the following form?
The form html from the page I'm trying to upload to is as follows:
<form action="upload_handler" method="POST" enctype="multipart/form-data">
<input type="file" name="myfile">
...