Re: CFContent and PDF problems

2009-01-21 Thread Ken Willis
I have had this problem before. My extremely low tech solve was to shutdown browser and then remove adobe from memory through the task manager. hope this helps. ~| Adobe® ColdFusion® 8 software 8 is the most important and

RE: CFContent and PDF problems

2003-10-08 Thread Mosh Teitelbaum
Shawn: Your CFHEADER is missing a value.The VALUE for the Content-Disposition header should begin with either inline; or attachment; as in: CFHEADER NAME=Content-Disposition VALUE=inline; filename=#oFTS.OriginalName# See RFC1806 ( http://www.faqs.org/rfcs/rfc1806.html ) for more details. --

Re: CFContent and PDF problems

2003-10-08 Thread Dave Carabetta
We're using a CFContent to push files to a client page (after they've clicked on an appropriate link of course).Things are working for image files, but we are getting odd behaviour when we try to view PDF documents. Here's the code in question: !--- Set the name of the download file in the HTTP

RE: CFContent and PDF problems

2003-10-08 Thread Shawn Grover
(digging on my side, as well as hoping someone on the list might be able to help out). Shawn -Original Message- From: Mosh Teitelbaum [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 08, 2003 1:12 PM To: CF-Talk Subject: RE: CFContent and PDF problems Shawn: Your CFHEADER is missing

Re: CFContent and PDF problems

2003-10-08 Thread Richard Meredith-Hardy
Not sure what's wrong with a regular hyperlink to the PDF file if you want to push files to a client page? CFHEADER NAME=Content-Disposition VALUE=attachment; filename=#my_file_name# CFCONTENT TYPE = application/unknown FILE=#hard_path_to_file# DELETEFILE=no CFABORT ...works for us with PDF's

RE: CFContent and PDF problems

2003-10-08 Thread Mosh Teitelbaum
://www.evoch.com/ -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 08, 2003 3:52 PM To: CF-Talk Subject: RE: CFContent and PDF problems Thanks for the reply.I've added inline; and attachement; to the value of the CFHeader tag - neither one made