It takes longer for the Upload Progress bar to appear than the actual file upload takes.
Uploading a 330MB file takes about 30 seconds to show upload progress and then completes upload in 11 seconds.
I had to change the "for(1..3){ last if -e $flength_file; sleep 1; }" to "for(1..120){ last if -e $flength_file; sleep 1; }" just so I don't get the "Transfer Complete" message after 3 seconds.
I have the .htaccess file in the same directory as the upload.cgi.
SetEnvIfNoCase Content-Type "^multipart/form-data;" "MODSEC_NOPOSTBUFFERING=Do not buffer file uploads"
Running Apache 1.3.33 on OS X 10.4.8
There is no mod_security module loaded either.
using xuploadpro 2.4.
Any ideas?
XUpload - Initializing Upload takes longer than actual upload
- PilgrimX182
- Posts: 2186
- Joined: Mar 22, 2006 1:39 pm
Well...delay happens cause temp file appear with this big delay. Probably your filesystem caching files or this is feature of Apache under OS X.
You can look up into your temp folder when current temp upload file appear.
do you have mod_gzip fix in .htaccess?
You can look up into your temp folder when current temp upload file appear.
do you have mod_gzip fix in .htaccess?
Code: Select all
<IfModule mod_gzip.c>
mod_gzip_on No
</IfModule>