Re: [PHP] Slow file uploads.

2003-01-07 Thread Tim Meader
Unfortunately not that I know of with PHP. However, I had to do the same thing for our users here and I found a great solution to be mod_perl for Apache. It writes to disk into a temporary file and then copies that file into the dir you specify. This isn't evangelism, just informing you of how

[PHP] Slow file uploads.

2003-01-07 Thread Claes Gustavsson
Hi I'm developing a site where the user shall be able to upload files. The size of theese files can range from approx. 1-500 Mb. The problem is that the file upload is stored in memory and starts to swap with large files (~ > 100 Mb). I want the uploaded file to be written directly to disk.