damn IE and pdfs

Jun 23, 2008 14:12


I was having some issues with pdfs mysteriously not downloading from our image server. Like all things that seem to be an extreme pain in the ass, this behavior seemed to also be an IE and Windows tied behavior.

After much searching I ran across the server.range-requests setting in lighttpd which seems to have fixed up the problem.

$HTTP["useragent"] =~ "\bMSIE" {
$HTTP["url"] =~ "\.pdf$" {
server.range-requests = "disable"
}
}

The pdfs that were previously locking up the browser are passing on perfectly now.

Baron Vladimir Puzzlekonnen: The Wonderwords must flow.
View this post on my blog

sysadmin

Previous post Next post
Up