while uploadpost to php script is processed the GET /progress requests will be responded, *after* the upload is finished, so i get the final received sizes in the javascript object, which is useless for presenting a progress bar. it seems the post kind of blocks every other request... this is for r1992
my config:
...
$PHYSICAL["existing-path"] =~ "\.php$" {
proxy-core.balancer = "round-robin"
proxy-core.protocol = "fastcgi"
proxy-core.allow-x-sendfile = "enable"
proxy-core.backends = ( "127.0.0.1:1026" )
proxy-core.max-pool-size = 16
}
...
server.modules += ("mod_uploadprogress")
upload-progress.progress-url = "/progress"
...
# all php requests are rewritten
# for having nice urls
server.modules += ( "mod_rewrite" )
url.rewrite-once = (
"^/rs/([^?]*)\.(.*)$" => "$0",
"^/rs/(.*)$" => "/rs/index.php/$1",
"^/rs$" => "/rs/index.php",
)
b.t.w there's still no working demo of this great feature anywhere. i once did get uploadprogress working with some older version. unfortunately everything is lost when my college destroyed my xen image :((
cheers,
robert