Lions, Tigers and Images, Oh My!

2010-10-12 Thread Everett Alexander
Hello, I have a an form that will be updating a database for creating webpages. That form will need to upload images (along with various other fields, text, etc.) to a server. So I want to point to a specific folder on the server to upload images, and then reference that location in the

Re: Lions, Tigers and Images, Oh My!

2010-10-12 Thread David McGraw
Did you supply a location for where to place the file on a cffile action=upload, if not it's just saving it to the CF server's default temporary location. I think you want to make sure every cffile has a destination attribute filled out with where you want the file to go. Dave @ Oyova Software

Re: Lions, Tigers and Images, Oh My!

2010-10-12 Thread Everett Alexander
I didn't catch this at first but I noticed you suggested cffile, where I had been using cfinput name=image type=file. When I use cffile action, then I lose the option to browse for a file? Am I missing a step somewhere? Did you supply a location for where to place the file on a cffile

Re: Lions, Tigers and Images, Oh My!

2010-10-12 Thread David McGraw
I'm referring to how you handle the submission on the server side. I almost never use any cfform objects so you may need someone else to help you there. Typically after you submit the form, you have a set of code to process the incoming file fields. In order to handle a form submission in CF,

Re: Lions, Tigers and Images, Oh My!

2010-10-12 Thread Ian Skinner
On 10/12/2010 11:41 AM, Everett Alexander wrote: /opt/jrun4/servers/DISCOVERY/SERVER-INF/temp/cfusion.war-tmp/neotmp2153518236327741178.tmp That is the temporary location where the web server (IIS or Apache) put the uploaded file after it decoded the data from the HTTP request. It then put

Re: http://mail.seiter.com/webmail/driver?nimlet=showcanvas#Lions, Tigers and Images, Oh My!

2010-10-12 Thread William Seiter
http://www.williamoncoldfusion.com/index.php/knowledgebase/file-uploading -- William E. Seiter On Oct 12, 2010, Everett Alexander reac...@anizanmedia.com wrote: Hello, I have a an form that will be updating a database for creating webpages. That form will need to upload images