I have nginx behind varnish.
Upload works, but upload progress bar stays at start uploading message.
I see "start uploading" but the progress bar does not proceed.

Does it need any extra configuration in varnish to make it work?

I can post my nginx configuration to be checked, if needed.

On the other hand, upload progress of plupload module works.

Comments

Jackinloadup’s picture

dropbydrop’s picture

I checked it. I have the problem even with just one value (one image) allowed.

dropbydrop’s picture

it's a matter of cooperating with varnish

jmeredith’s picture

I have the same issue, can anyone explain further what needs to be done?

"start uploading" display but the progress bar doesn't move.

gwar’s picture

I had the same problem and found that the trim functions needed a " in the second argument in nginx_progress_fetch()

so i changed
$key = trim($array[0], "' ");
$value = trim($array[1], "' ");
to
$key = trim($array[0], "\"' ");
$value = trim($array[1], "\"' ");

and its working fine now

perusio’s picture

Status: Active » Fixed

This has been fixed in the 7.x-2.3 version. Marking it as fixed.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.