Return-Path: Delivered-To: apmail-httpd-bugs-archive@httpd.apache.org Received: (qmail 57787 invoked by uid 500); 2 Apr 2003 15:42:31 -0000 Mailing-List: contact bugs-help@httpd.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: "Apache HTTPD Bugs Notification List" Delivered-To: mailing list bugs@httpd.apache.org Received: (qmail 57764 invoked from network); 2 Apr 2003 15:42:31 -0000 Date: 2 Apr 2003 15:44:21 -0000 Message-ID: <20030402154421.22040.qmail@nagoya.betaversion.org> From: bugzilla@apache.org To: bugs@httpd.apache.org Cc: Subject: DO NOT REPLY [Bug 11993] - PDFs served through ProxyPass show up blank X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=11993 PDFs served through ProxyPass show up blank ------- Additional Comments From rvb@rvbone.com 2003-04-02 15:44 ------- Hi, If you wanna disable byterange transfert to enabled one-shot transfert of your PDF (and no more have your PDF blank) you can modify the Apache source code to force it send the "Accept-Range:" header to the "none" value (instead of "bytes" value). I've made a patch for the 1.3.27 version, it's surely applicable to all other version of Apache. Get it at http://www.rvbone.com/pdfpatch (use it with patch -p0 < pdfpatch at the apache-1.3.27 leveldir). Or modify directly with vi the src/main/http_core.c file: ap_table_setn(r->headers_out, "Accept-Ranges", "bytes"); change "bytes" with "none" ! Then recompile Apache. You have to do this modification on the target server, it's useless on the proxy server. It's just a tips, waiting for a real solution from Apache team ! --------------------------------------------------------------------- To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org For additional commands, e-mail: bugs-help@httpd.apache.org