Skip to content Skip to sidebar Skip to footer

Safari Php Form Submission -file Upload Hangs

I have an issue with safari 5+. When client selects the image file to upload through a simple HTML form the MAC version of Safari 5.1 (so far the only browser I found which is doin

Solution 1:

A workaround for lighttpd:

$HTTP["useragent"] =~ "Safari" {
$HTTP["useragent"] !~ "Chrome" {
  server.max-keep-alive-requests = 0
}
}

Jamis Buck discovered it and I added the config lines. The second rule avoids restricting keepalives to Chrome which also has the Safari substring. Courtesy of https://bugs.webkit.org/show_bug.cgi?id=5760

Post a Comment for "Safari Php Form Submission -file Upload Hangs"