XUpload - Everything works but the progress bar.Tried posted solutions

Message
Author
kutsal
Posts: 2
Joined: Jan 11, 2007 11:50 pm

Everything works but the progress bar.Tried posted solutions

#1 Postby kutsal » Jan 12, 2007 4:51 pm

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!

User avatar
PilgrimX182
Posts: 2186
Joined: Mar 22, 2006 1:39 pm

#2 Postby PilgrimX182 » Jan 15, 2007 8:45 am

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.

kutsal
Posts: 2
Joined: Jan 11, 2007 11:50 pm

#3 Postby kutsal » Jan 16, 2007 9:31 am

thanks for the reply! looking forward to the release...

polira
Posts: 1
Joined: Feb 01, 2007 6:10 pm

#4 Postby polira » Feb 01, 2007 6:11 pm

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?

User avatar
PilgrimX182
Posts: 2186
Joined: Mar 22, 2006 1:39 pm

#5 Postby PilgrimX182 » Feb 02, 2007 6:32 am

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: 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;}
if persistent conn works fine script should print digit every second in browser window.