Re: CFDocument image issue

2007-03-28 Thread Rupesh Kumar
Hi, I had posted few entries related to this some time back and I think might help. http://coldfused.blogspot.com/search/label/cfdocument Rupesh. ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 & MX7 integration & create pow

Re: CFDocument image issue

2007-03-28 Thread Rupesh Kumar
Hi, I had posted few entries related to this some time back and I think might help. http://coldfused.blogspot.com/search/label/cfdocument Rupesh. ~| ColdFusion MX7 by Adobe® Dyncamically transform webcontent into Adobe PDF with n

Re: CFDocument image issue

2007-03-27 Thread Jochem van Dieten
Burns, John D wrote: > > That worked using your file prefix and the file system path. Any ideas > on how to troubleshoot why CF is having issues with the HTTP call? Right > now all my images are on my server but I may run into an instance where > that's not the case. Most likely some ACL on the f

RE: CFDocument image issue

2007-03-27 Thread Ben Nadel
loper www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 27, 2007 11:27 AM To: CF-Talk Subject: RE: CFDocument image issue Jochem- That worked using your file prefix and the file system

RE: CFDocument image issue

2007-03-27 Thread Burns, John D
Yeah, and per earlier emails, others have had issues with relative URLs and cfdocument. That's why I tried it that way. -Original Message- From: Peterson, Chris [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 27, 2007 11:26 AM To: CF-Talk Subject: RE: CFDocument image issue Hav

RE: CFDocument image issue

2007-03-27 Thread Burns, John D
Jochem- That worked using your file prefix and the file system path. Any ideas on how to troubleshoot why CF is having issues with the HTTP call? Right now all my images are on my server but I may run into an instance where that's not the case. I appreciate the help! John ~~~

RE: CFDocument image issue

2007-03-27 Thread Peterson, Chris
Have you tried a simpler relative url instead of a full one? Chris -Original Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 27, 2007 11:19 AM To: CF-Talk Subject: RE: CFDocument image issue I'm not using or any odd tags. All I'm using i

RE: CFDocument image issue

2007-03-27 Thread Burns, John D
I'm not using or any odd tags. All I'm using is and the respective closing tags. My image call is using a full url. Here's info if you guys wanna test: http://www.smafl.com/admin/schedule.cfm?teamid=26 (this is the page generating the pdf) The image reference is to http://www.smafl.com/images/S

Re: CFDocument image issue

2007-03-27 Thread Jochem van Dieten
Burns, John D wrote: > I've been looking around at various answers online for this issue where > the X shows up in the PDF generated using CFDOCUMENT when referencing an > image. I've tried all of the fixes and I'm still having the issue. I'm > wondering if anyone has any more things to try. If yo

Re: CFDocument image issue

2007-03-27 Thread Jake Churchill
--- > From: Burns, John D [mailto:[EMAIL PROTECTED] > Sent: Tuesday, March 27, 2007 10:44 AM > To: CF-Talk > Subject: CFDocument image issue > > I've been looking around at various answers online for this issue where > the X shows up in the PDF generated using CFDOCUMENT w

RE: CFDocument image issue

2007-03-27 Thread Ben Nadel
o:[EMAIL PROTECTED] Sent: Tuesday, March 27, 2007 10:44 AM To: CF-Talk Subject: CFDocument image issue I've been looking around at various answers online for this issue where the X shows up in the PDF generated using CFDOCUMENT when referencing an image. I've tried all of the fixes and I'

Re: CFDocument image issue

2007-03-27 Thread Gert Franz
Hi John, the problem could be caused by using the tag. I had a similar issue which worked after I removed the corresponding tag. Greetings / Grüsse Gert Franz Customer Care Railo Technologies GmbH [EMAIL PROTECTED] www.railo.ch Join our Mailing List / Treten Sie unserer Mailingliste bei: deuts

CFDocument image issue

2007-03-27 Thread Burns, John D
I've been looking around at various answers online for this issue where the X shows up in the PDF generated using CFDOCUMENT when referencing an image. I've tried all of the fixes and I'm still having the issue. I'm wondering if anyone has any more things to try. I've attempted to call the URL of t

RE: Anyone built a webmail app? Inline image issue

2004-12-01 Thread Paul Vernon
I never found a solution in CFPOP for this. In the CFX_POP3 I added an extra column to the resulting query that matched the attachment lists giving the relevant CID values against each attachment... That way you could loop through the CID values and extract the attachment at the same point in the a

Anyone built a webmail app? Inline image issue

2004-12-01 Thread Jon Austin
Hi there, I've got an issue displaying inline images from an HTML email message retrieved by CFPOP. Basically, when CFPOP retrieves the message it decodes the inline image as an attachment. The problem is that in the HTML source of the body, the src attribute of the image tag is for the CID (MIME

RE: Image Issue

2004-06-25 Thread Dave Watts
> Is it possible that a user or browser could send false MIME > types? Yes, of course. You could say whatever MIME type you want if you write the HTTP request yourself. > That's why I check the extension, because if someone somehow > spoofs a MIME type and uploads an exe to my server, I don't

RE: Image Issue

2004-06-25 Thread Burns, John D
lto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 2:46 PM To: CF-Talk Subject: RE: Image Issue > Does this depend on the file extension at all? So, if I upload a gif > that I renamed to foo.jpg, the browser will send what mime info, gif > or jpg? Without testing this myself, I can&#

RE: Image Issue

2004-06-25 Thread Dave Watts
> Basically, I do not want to upload a file if the user did > not select an image on the form page and was just trying > to update some text instead. So, How do I check for the > existence of an image before file upload. I don't think you can effectively do this before the file is actually uplo

RE: Image Issue

2004-06-25 Thread Dave Watts
> Does this depend on the file extension at all? So, if I > upload a gif that I renamed to foo.jpg, the browser will > send what mime info, gif or jpg? Without testing this myself, I can't be absolutely sure, but I'm pretty sure that browsers running on Windows would send the MIME type correspon

RE: Image Issue

2004-06-25 Thread Douglas.Knudsen
-Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 2:31 PM To: CF-Talk Subject: RE: Image Issue > you can also look at > cffile.contenttype and cffile.contentsubtype for mimetype > stuffs.  Better than the extension. >   > hm

RE: Image Issue

2004-06-25 Thread Dave Watts
> you can also look at > cffile.contenttype and cffile.contentsubtype for mimetype > stuffs.  Better than the extension. >   > hmm...how does CF determine this though?  anyone? The browser sends the MIME type when it posts a file upload using multipart/form-data. That's how the ACCEPT attribute o

RE: Image Issue

2004-06-25 Thread Burns, John D
From: Aaron Rouse [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 1:12 PM To: CF-Talk Subject: Re: Image Issue I would check to make sure someone did not just accidently hit the space bar in the FileFIeld. On Fri, 25 Jun 2004 10:06:16 -0700, Jordan Michaels <[EMAIL PROTECTED]>

Re: Image Issue

2004-06-25 Thread Milan Mushran
Thanks a ton, > Milan > > [EMAIL PROTECTED] wrote: > I think what he means is there a way to check for the existence of > that file > FileExists > > -Original Message- > From: Pascal Peters [mailto:[EMAIL PROTECTED] > Sent: Friday, June 25, 2004 10:55 AM >

Re: Image Issue

2004-06-25 Thread Aaron Rouse
I would check to make sure someone did not just accidently hit the space bar in the FileFIeld. On Fri, 25 Jun 2004 10:06:16 -0700, Jordan Michaels <[EMAIL PROTECTED]> wrote: > > Checking the fields length would work as described in the tag below. > I've always checked to see if the field was

Re: Image Issue

2004-06-25 Thread Jordan Michaels
gt; > -Original Message- > From: Pascal Peters [mailto:[EMAIL PROTECTED] > Sent: Friday, June 25, 2004 10:55 AM > To: CF-Talk > Subject: RE: Image Issue > > > > > -Original Message- > > From: Milan Mushran [mailto:[EMAIL PROTECTED] > >

Re: Image Issue

2004-06-25 Thread Joe Rinehart
...on action page    -joe - Original Message - From: Milan Mushran <[EMAIL PROTECTED]> Date: Fri, 25 Jun 2004 09:53:01 -0700 (PDT) Subject: RE: Image Issue To: CF-Talk <[EMAIL PROTECTED]> Basically, I do not want to upload a file if the user did not select an image

RE: Image Issue

2004-06-25 Thread Milan Mushran
to check for the existence of that file FileExists -Original Message- From: Pascal Peters [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 10:55 AM To: CF-Talk Subject: RE: Image Issue > -Original Message- > From: Milan Mushran [mailto:[EMAIL PROTECTED] > Sent: v

RE: Image Issue

2004-06-25 Thread Douglas.Knudsen
Subject: RE: Image Issue > When I try to upload an image using cffile, How do I check > for an existence of an image on the action page. For regular > form fields, we use IsDefined(), but what about for input > type = file. After the file has been uploaded, you can look at CFFile.Clie

RE: Image Issue

2004-06-25 Thread Greg.Morphis
I think what he means is there a way to check for the existence of that file FileExists -Original Message- From: Pascal Peters [mailto:[EMAIL PROTECTED] Sent: Friday, June 25, 2004 10:55 AM To: CF-Talk Subject: RE: Image Issue > -Original Message- > From: Milan Mushran [

RE: Image Issue

2004-06-25 Thread Dave Watts
> When I try to upload an image using cffile, How do I check > for an existence of an image on the action page. For regular > form fields, we use IsDefined(), but what about for input > type = file. After the file has been uploaded, you can look at CFFile.ClientFileExt to see the extension of t

RE: Image Issue

2004-06-25 Thread Pascal Peters
> -Original Message- > From: Milan Mushran [mailto:[EMAIL PROTECTED] > Sent: vrijdag 25 juni 2004 17:51 > To: CF-Talk > Subject: Image Issue > > Hi Guys, >   > When I try to upload an image using cffile, How do I check > for an existence of an image o

Image Issue

2004-06-25 Thread Milan Mushran
Hi Guys, When I try to upload an image using cffile, How do I check for an existence of an image on the action page. For regular form fields, we use IsDefined(), but what about for input type = file. Thanks a ton, Milan - Do you Yahoo!? Yahoo! Mail - 50x mo