| View previous topic :: View next topic |
| Author |
Message |
kutsal
Joined: 11 Jan 2007 Posts: 2
|
Posted: Jan 12, 2007 4:51 pm Post subject: Everything works but the progress bar.Tried posted solutions |
|
|
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! |
|
| Back to top |
|
 |
PilgrimX182

Joined: 22 Mar 2006 Posts: 2106 Location: UFO Lab
|
Posted: Jan 15, 2007 8:45 am Post subject: |
|
|
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. |
|
| Back to top |
|
 |
kutsal
Joined: 11 Jan 2007 Posts: 2
|
Posted: Jan 16, 2007 9:31 am Post subject: |
|
|
| thanks for the reply! looking forward to the release... |
|
| Back to top |
|
 |
polira
Joined: 01 Feb 2007 Posts: 1
|
Posted: Feb 01, 2007 6:11 pm Post subject: |
|
|
im having the same issue, though it works with ajax on.
is there a way to turn on persistent connections so it works as designed? |
|
| Back to top |
|
 |
PilgrimX182

Joined: 22 Mar 2006 Posts: 2106 Location: UFO Lab
|
Posted: Feb 02, 2007 6:32 am Post subject: |
|
|
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:
| Code: |
#!/usr/bin/perl
$|++;
print"Content-type: text/html\n\n";
for(my $i=0;$i<500;$i++){print"$i<br>\n";sleep 1;}
|
if persistent conn works fine script should print digit every second in browser window. |
|
| Back to top |
|
 |
|