hello
i got the script to run but the progress bar doest work Ok , the pop up windows comes and the file info show but not progress
i have edited the .htaccess file .
the uploaded is going well becose i can see the file i uploaded in the uploads folder
try plz
http://www.jordanmusics.com/upload_form.html
XUpload - uploading without progress bar
- PilgrimX182
- Posts: 2186
- Joined: Mar 22, 2006 1:39 pm
First of all it looks you have time anomaly cause your file system time not synchronized with perl time(this happens rarely). Do you run this xupload on cluster?
To fix this replace this srting in upload_status.cgi:
with
And progress not showing cause temp file not growing. This happens when mod_gzip or mod_security enabled(.htaccess should help, try to comment IfModule directives) or you run it on cluster and there is file synchronization kinda slow, so try to change in this string: "$curr_time-$modif_time>30" 30 to e.g. 90 and test again.
To fix this replace this srting in upload_status.cgi:
Code: Select all
my $ftime = (lstat($flength_file))[9]; # Upload start time
Code: Select all
my $ftime = time;