RE: Batch Image Upload

2001-02-01 Thread JustinMacCarthy
Use wddx over http??? Justin -Original Message- From: Jason Larson [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 01, 2001 4:35 PM To: CF-Talk Subject: Batch Image Upload I was wondering if anyone has a custom cf tag, or some ideas to accomplish a batch image upload. I have a

RE: Batch Image Upload

2001-02-01 Thread Allan Pichler
Is it just me, but CFDIRECTORY grabs a directory of the server, so you can't use that to do a batch upload of images from a client! Allan Pichler -Original Message- From: Christoph Schmitz [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 01, 2001 10:37 AM To: CF-Talk Subject: AW:

RE: Batch Image Upload

2001-02-01 Thread Duane Boudreau
I guess I would do a CFDIRECTORY where the images are located and then just upload them using CFFTP This would work if you can install CFExpress on the clients machine and CFExpress supports CFFTP and CFDirectory,, otherwise the client would still have to get to the files on the server first.

Re: Batch Image Upload

2001-02-01 Thread Scott Weikert
There's no reason that I can see that you couldn't set up a CF page with, say, 10 form elements, all of the "file" type (i.e. you have the "Browse" button next to it) and have your client just browse through each one and choose a different photo, and submit the whole thing as one form... on the

RE: Batch Image Upload

2001-02-01 Thread ron
I was wondering if anyone has a custom cf tag, or some ideas to accomplish a batch image upload. I have a client that will be taking about 10 pictures a day on 10 different construction projects. They want to have the capability to upload the images in a batch process without using a FTP

RE: Batch Image Upload

2001-02-01 Thread Peter Stolz
How about a 'zipping' utility? Have them zip the images up into one file and upload it. Then, you can unzip them on the server. P. -Original Message- From: Jason Larson [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 01, 2001 11:35 AM To: CF-Talk Subject: Batch Image Upload I was

RE: Batch Image Upload

2001-02-01 Thread Moneymaker, Jon S (WPNSTA Yorktown)
Very nifty tag would LOVE to have my programming hands on it Gratitude and thanks are yours!!! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 01, 2001 2:00 PM To: CF-Talk Subject: RE: Batch Image Upload I was wondering

RE: Batch Image Upload

2001-02-01 Thread Peter Amiri
Jason, You can do this with a HTML form. Look at the code below which shows how to upload three files at a time via the browser to you web server. cfif isDefined("Upload") cffile action="UPLOAD" filefield="theFile1"

RE: Batch Image Upload

2001-02-01 Thread Jason Roberts
I was just thinking about a similiar thing for a client of mine. I was thinking that the easiest way would be to first have them zip up the photos with winzip and then have an upload form that would accept the zip file. On the processing script, use Ben Forta's CFX_ZIP tag [

RE: Batch Image Upload

2001-02-01 Thread Dylan Bromby
you can use CFLOOP and loop the CFFILEs to streamline the code as well. -Original Message- From: Peter Amiri [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 01, 2001 5:18 PM To: CF-Talk Subject: RE: Batch Image Upload Jason, You can do this with a HTML form. Look at the code below