I could get everything working, but as posted in some of the previous topics, I cannot see the progress bar until the download finishes, when the progress bar fills up quickly.
Upload works properly...the only problem is the progress bar.
I tried all the .htaccess solutions in the previous postings but none of them could solve the problem.
URL to the upload form is:
http://www.locomotivemedia.co.uk/upload_form.html
Thanks!
XUpload - Everything works but the progress bar.Tried posted solutions
- PilgrimX182
- Posts: 2186
- Joined: Mar 22, 2006 1:39 pm
Checked your upload out. Progress bar data sending only after upload completed. It looks persistent connections on your server disabled somehow so server wait till end of script execution to send data to browser.
Ajax progress bar can possibly help in this case. It will be released in upcoming Pro release.
Ajax progress bar can possibly help in this case. It will be released in upcoming Pro release.
- PilgrimX182
- Posts: 2186
- Joined: Mar 22, 2006 1:39 pm
I don't know. It's your server issue, so you should contact server support.
Here's test script to check that persistent connection works ok or not:
if persistent conn works fine script should print digit every second in browser window.
Here's test script to check that persistent connection works ok or not:
Code: Select all
#!/usr/bin/perl
$|++;
print"Content-type: text/html\n\n";
for(my $i=0;$i<500;$i++){print"$i<br>\n";sleep 1;}