Re: Uploading multiple files

2007-08-19 Thread Web Specialist
I'll suggest you to use this great javascript and Flash utility to upload
several files. Works like a charm for me integrated with CF backend. Very
impressive!

http://swfupload.mammon.se/

Cheers

2007/8/19, Pete Ruckelshaus <[EMAIL PROTECTED]>:
>
> Use multiple typoe="file" fields with unique names and process each one
> separately.
>
> I've also created apps where a single zip file containing multiple files
> can
> be uploaded, then the package is unzipped and the files contained are
> processed.
>
> Pete
>
>
> On 8/18/07, Steve Sequenzia <[EMAIL PROTECTED]> wrote:
> >
> > I am trying to figure out how to use cfinput type="file" to upload
> > multiple files at once. I can only seem to get it to accept one file at
> a
> > time.
> >
> > Any help on this would be great.
> >
> > BTW - I am on CF8.
> >
> > Thanks.
> >
> >
>
> 

~|
Create robust enterprise, web RIAs.
Upgrade to ColdFusion 8 and integrate with Adobe Flex
http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJP

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286574
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: Uploading multiple files

2007-08-19 Thread Pete Ruckelshaus
Use multiple typoe="file" fields with unique names and process each one
separately.

I've also created apps where a single zip file containing multiple files can
be uploaded, then the package is unzipped and the files contained are
processed.

Pete


On 8/18/07, Steve Sequenzia <[EMAIL PROTECTED]> wrote:
>
> I am trying to figure out how to use cfinput type="file" to upload
> multiple files at once. I can only seem to get it to accept one file at a
> time.
>
> Any help on this would be great.
>
> BTW - I am on CF8.
>
> Thanks.
>
> 

~|
Download the latest ColdFusion 8 utilities including Report Builder,
plug-ins for Eclipse and Dreamweaver updates.
http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286573
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Uploading multiple files

2007-08-18 Thread James Holmes
You can't.

You'll need to use something like a flex app or a java applet. I've
used this flex app with great success:

http://www.adobe.com/devnet/coldfusion/articles/multifile_upload.html

On 8/19/07, Steve Sequenzia <[EMAIL PROTECTED]> wrote:
> I am trying to figure out how to use cfinput type="file" to upload multiple 
> files at once. I can only seem to get it to accept one file at a time.
>
> Any help on this would be great.
>
> BTW - I am on CF8.
>
> Thanks.
>
> 

~|
Enterprise web applications, build robust, secure 
scalable apps today - Try it now ColdFusion Today
ColdFusion 8 beta - Build next generation apps

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286567
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Uploading multiple files

2007-08-18 Thread Steve Sequenzia
I am trying to figure out how to use cfinput type="file" to upload multiple 
files at once. I can only seem to get it to accept one file at a time.

Any help on this would be great.

BTW - I am on CF8.

Thanks. 

~|
Check out the new features and enhancements in the
latest product release - download the "What's New PDF" now
http://download.macromedia.com/pub/labs/coldfusion/cf8_beta_whatsnew_052907.pdf

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:286566
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: file size when uploading multiple files

2006-10-27 Thread Mingo Hagen
I'm also not aware of a way (other then java/flash) to do this client-side.
We do it the same way you described (but on the cffile, not on the 
entire cgi.content_length).

daniel kessler wrote:
> Is there a way and if not, what do y'all do?



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:258254
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: file size when uploading multiple files

2006-10-27 Thread Adrian
I think it can be done using client side stuff - Flash 8+ or a Java applet.
(but not with just a CF server and html)

On 27/10/06, Ben Nadel <[EMAIL PROTECTED]> wrote:
>
> Daniel,
>
> As far as I know, there is no good way of doing this. But, please let me
> know if you find it.
>
> -B
> ..
> Ben Nadel
> Certified Advanced ColdFusion Developer
> www.bennadel.com
>
>
> -Original Message-
> From: daniel kessler [mailto:[EMAIL PROTECTED]
> Sent: Friday, October 27, 2006 8:41 AM
> To: CF-Talk
> Subject: file size when uploading multiple files
>
> I'm uploading multiple files.  But before I upload any of the files, I
> want to see if any one of them is too large for upload.  We set a file
> size limit of 1 meg per file.
>
> In the past when I have uploaded files, it has been one file per form
> and I have some code that seems to allow me to check the file size.   I
> think that it's doing the whole size of the form though.
>
> 
> 
> 
>
> I want to root through and check the file size of each file before
> uploading.  I noticed that cfFile will check the file size AFTER it's
> uploaded and then I guess I can delete it if it's too large.  I'd rather
> be able to stop the problem ahead of time.
>
> Is there a way and if not, what do y'all do?
>
> thanks.
>
> daniel
>   -  webuy  -
>
>
>
> 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:258251
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: file size when uploading multiple files

2006-10-27 Thread Ben Nadel
Daniel,

As far as I know, there is no good way of doing this. But, please let me
know if you find it. 

-B
..
Ben Nadel
Certified Advanced ColdFusion Developer
www.bennadel.com
 

-Original Message-
From: daniel kessler [mailto:[EMAIL PROTECTED] 
Sent: Friday, October 27, 2006 8:41 AM
To: CF-Talk
Subject: file size when uploading multiple files

I'm uploading multiple files.  But before I upload any of the files, I
want to see if any one of them is too large for upload.  We set a file
size limit of 1 meg per file.

In the past when I have uploaded files, it has been one file per form
and I have some code that seems to allow me to check the file size.   I
think that it's doing the whole size of the form though.





I want to root through and check the file size of each file before
uploading.  I noticed that cfFile will check the file size AFTER it's
uploaded and then I guess I can delete it if it's too large.  I'd rather
be able to stop the problem ahead of time.

Is there a way and if not, what do y'all do?

thanks.

daniel
  -  webuy  -



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:258249
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


file size when uploading multiple files

2006-10-27 Thread daniel kessler
I'm uploading multiple files.  But before I upload any of the files, I want to 
see if any one of them is too large for upload.  We set a file size limit of 1 
meg per file.

In the past when I have uploaded files, it has been one file per form and I 
have some code that seems to allow me to check the file size.   I think that 
it's doing the whole size of the form though.





I want to root through and check the file size of each file before uploading.  
I noticed that cfFile will check the file size AFTER it's uploaded and then I 
guess I can delete it if it's too large.  I'd rather be able to stop the 
problem ahead of time.

Is there a way and if not, what do y'all do?

thanks.

daniel
  -  webuy  -

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:258244
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


Re: uploading multiple files questions

2006-10-27 Thread daniel kessler
well the problem seems to have just "gone away - poof", which scares the 
beh-jeebers outta me.  Not much I can do though if the problem doesn't show now.

Well, as I'll post the other question in it's own post.


> I'm trying to upload multiple files to the server from a form with 
> multiple file
> buttons.  The code for the upload is below.  I have a couple of 
> problems.
> 
> - I receive an error from Safari (not IE, or Firefox): Safari can’t 
> open the page
> “http://hhp.umd.edu/dean/notes/additem.cfm”. The error was: “POSIX 
> error: Is
> a directory” (NSPOSIXErrorDomain:21)

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:258239
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


uploading multiple files questions

2006-10-26 Thread daniel kessler
I'm trying to upload multiple files to the server from a form with multiple file
buttons.  The code for the upload is below.  I have a couple of problems.

- I receive an error from Safari (not IE, or Firefox): Safari can’t open the 
page
“http://hhp.umd.edu/dean/notes/additem.cfm”. The error was: “POSIX error: 
Is
a directory” (NSPOSIXErrorDomain:21)

- so in the code, I check the file size.  I grabbed this code from something I 
did
years ago, but it uploaded one file.  I don't see the file name designated where
the file size is checking.  Which file then is it checking?  Or more a practical
question is how do I get it to check the file that's currently uploading?  It 
may be
for all I can tell.

  code  --

   
   
   
   
   
   
   

   
   
   
   Your directory has been created.
   
   Your had a directory.
   
   #currentDirectory#
   

   
   The file is too large.  The image file 
must be
1 megabyte or smaller.
   BACK.
   
   
   
   
   
   
   
   
   
   
 
   
   
 

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:258172
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Follow-up: Uploading multiple files - not necessarily CF

2006-06-26 Thread Everett, Al \(NIH/NIGMS\) [C]
Thanks to all who offered solutions to this dilemma. As I suspected, due
to security concerns, any solution requiring a Java applet, Flash, or
any other third-party solution is a non-starter. The users will just
have to deal with it.

I am hopeful, however, that others who search the CF-Talk archives and
have a similar issue will find your responses helpful.

-Original Message-
I'm looking for a solution to this problem:
 
For an intranet site, the end user should be able to select multiple
files (or even a directory) located on his/her local machine, and press
a single button to upload them to the server.
 
We're a CF shop and I don't see a CF solution for this piece, but it
needs to work with CF. Perhaps a Java applet? Maybe Flash? We'll
certainly be using CF for the back-end processing of the files, but what
is not desired is having the multiple html file form fields.
 
This is for an intranet application with VERY tightly controlled browser
and OS environments. Downloading a separate application is pretty much a
non-starter; it needs to work in the browser window.
 
Any pointers you can offer would be appreciated.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:244794
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Uploading multiple files - not necessarily CF

2006-04-26 Thread Everett, Al \(NIH/NIGMS\) [C]
It's not for me. It's for a client.

They may end up getting it by default. Security is locked down so tight
that everyone will need to request it be loosened so they can use this
still-to-be-determined tool. That may kill the idea outright.



-Original Message-
From: Andy Matthews [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, April 26, 2006 9:46 AM
To: CF-Talk
Subject: RE: Uploading multiple files - not necessarily CF

I know it seems like a pain to select 20 uploads at once, but once
you've selected the first file, the browser will remember the directory
you were last in. This means that once you've chosen your first image,
all you have to do is to select the next file.



-Original Message-
From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, April 25, 2006 2:05 PM
To: CF-Talk
Subject: RE: Uploading multiple files - not necessarily CF


Alas, I spoke too soon. No, that's not going to work for me. The "upload
multiple files" is simply 20 HTML file fields. No good.

I might be able to use it for something else, but not for this project.


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238767
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Uploading multiple files - not necessarily CF

2006-04-26 Thread Ray Champagne
sorry if this has already been addressed, but wouldn't 20 (or even 5) 
file uploads just timeout on the server?  I guess it depends on what is 
being uploaded, but...

Andy Matthews wrote:
> I know it seems like a pain to select 20 uploads at once, but once you've
> selected the first file, the browser will remember the directory you were
> last in. This means that once you've chosen your first image, all you have
> to do is to select the next file.
> 
>  andy matthews
> web developer
> ICGLink, Inc.
> [EMAIL PROTECTED]
> 615.370.1530 x737
> --//->
> 
> -Original Message-
> From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, April 25, 2006 2:05 PM
> To: CF-Talk
> Subject: RE: Uploading multiple files - not necessarily CF
> 
> 
> Alas, I spoke too soon. No, that's not going to work for me. The "upload
> multiple files" is simply 20 HTML file fields. No good.
> 
> I might be able to use it for something else, but not for this project.
> 
> 
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238766
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Uploading multiple files - not necessarily CF

2006-04-26 Thread Andy Matthews
I know it seems like a pain to select 20 uploads at once, but once you've
selected the first file, the browser will remember the directory you were
last in. This means that once you've chosen your first image, all you have
to do is to select the next file.



-Original Message-
From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, April 25, 2006 2:05 PM
To: CF-Talk
Subject: RE: Uploading multiple files - not necessarily CF


Alas, I spoke too soon. No, that's not going to work for me. The "upload
multiple files" is simply 20 HTML file fields. No good.

I might be able to use it for something else, but not for this project.


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238763
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Mark Leder
Bubbleshare is using the image uploader that I suggested (aurigma), only the
active X version. The app itself is Flash the uploader is ActiveX or Java


Thanks,
Mark

-Original Message-
From: Ryan Guill [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 25, 2006 4:42 PM
To: CF-Talk
Subject: Re: Uploading multiple files - not necessarily CF

here is a flash 8 application that allows multiple file uploads.  I never
did dig in to see how it was done, but you are free to try.

http://www.bubbleshare.com/upload/mmflash


On 4/25/06, Patrick McGeehan <[EMAIL PROTECTED]> wrote:
> Aren't there Flash solutions now?  I used to use a JAVA applet at a 
> previous position and remember the head ache of client computers 
> having the wrong java version.
>
> This looked good at first glance
>
> http://72.14.203.104/search?q=cache:SF1om3zwEeYJ:labs.oinam.com/flash8
> /f
> ileuploaddownload/+flash+multiple+file+upload&hl=en&gl=us&ct=clnk&cd=1
>
> I downloaded that for later reference.  But if anyone else has some 
> insight on a flash solution, I know I will be keeping an eye on this 
> thread to see.
>
>
> -Original Message-
> From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, April 25, 2006 4:21 PM
> To: CF-Talk
> Subject: RE: Uploading multiple files - not necessarily CF
>
> I'll dig into that. Gotta get Java installed though.
>
> -Original Message-
> From: Mark Leder [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, April 25, 2006 4:14 PM
> To: CF-Talk
> Subject: RE: Uploading multiple files - not necessarily CF
>
> The java app I mentioned will fit directly into your html, and will 
> accept images, docs, etc, fully configurable. Also has CF examples.
>
>
> Thanks,
> Mark
>
> -Original Message-----
> From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, April 25, 2006 4:09 PM
> To: CF-Talk
> Subject: RE: Uploading multiple files - not necessarily CF
>
> I've been told that whatever solution we go with has to work in the 
> current application "flow."
>
> In other words, we need to be able to seamlessly slot the solution 
> into our current web application. Sending the users to a separate 
> application is a non-starter. I need something that, ideally, can fit 
> into an existing HTML form.
>
> I'm not optimistic.
>
> -Original Message-
> From: Everett, Al (NIH/NIGMS) [C]
> Sent: Tuesday, April 25, 2006 2:06 PM
> To: CF-Talk
> Subject: Uploading multiple files - not necessarily CF
>
> I'm looking for a solution to this problem:
>
> For an intranet site, the end user should be able to select multiple 
> files (or even a directory) located on his/her local machine, and 
> press a single button to upload them to the server.
>
> We're a CF shop and I don't see a CF solution for this piece, but it 
> needs to work with CF. Perhaps a Java applet? Maybe Flash? We'll 
> certainly be using CF for the back-end processing of the files, but 
> what is not desired is having the multiple html file form fields.
>
> This is for an intranet application with VERY tightly controlled 
> browser and OS environments. Downloading a separate application is 
> pretty much a non-starter; it needs to work in the browser window.
>
> Any pointers you can offer would be appreciated.
>
>
>
>
>
>
>
> 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238734
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Uploading multiple files - not necessarily CF

2006-04-25 Thread Ryan Guill
here is a flash 8 application that allows multiple file uploads.  I
never did dig in to see how it was done, but you are free to try.

http://www.bubbleshare.com/upload/mmflash


On 4/25/06, Patrick McGeehan <[EMAIL PROTECTED]> wrote:
> Aren't there Flash solutions now?  I used to use a JAVA applet at a
> previous position and remember the head ache of client computers having
> the wrong java version.
>
> This looked good at first glance
>
> http://72.14.203.104/search?q=cache:SF1om3zwEeYJ:labs.oinam.com/flash8/f
> ileuploaddownload/+flash+multiple+file+upload&hl=en&gl=us&ct=clnk&cd=1
>
> I downloaded that for later reference.  But if anyone else has some
> insight on a flash solution, I know I will be keeping an eye on this
> thread to see.
>
>
> -Original Message-
> From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, April 25, 2006 4:21 PM
> To: CF-Talk
> Subject: RE: Uploading multiple files - not necessarily CF
>
> I'll dig into that. Gotta get Java installed though.
>
> -Original Message-
> From: Mark Leder [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, April 25, 2006 4:14 PM
> To: CF-Talk
> Subject: RE: Uploading multiple files - not necessarily CF
>
> The java app I mentioned will fit directly into your html, and will
> accept images, docs, etc, fully configurable. Also has CF examples.
>
>
> Thanks,
> Mark
>
> -Original Message-
> From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, April 25, 2006 4:09 PM
> To: CF-Talk
> Subject: RE: Uploading multiple files - not necessarily CF
>
> I've been told that whatever solution we go with has to work in the
> current application "flow."
>
> In other words, we need to be able to seamlessly slot the solution into
> our current web application. Sending the users to a separate application
> is a non-starter. I need something that, ideally, can fit into an
> existing HTML form.
>
> I'm not optimistic.
>
> -Original Message-
> From: Everett, Al (NIH/NIGMS) [C]
> Sent: Tuesday, April 25, 2006 2:06 PM
> To: CF-Talk
> Subject: Uploading multiple files - not necessarily CF
>
> I'm looking for a solution to this problem:
>
> For an intranet site, the end user should be able to select multiple
> files (or even a directory) located on his/her local machine, and press
> a single button to upload them to the server.
>
> We're a CF shop and I don't see a CF solution for this piece, but it
> needs to work with CF. Perhaps a Java applet? Maybe Flash? We'll
> certainly be using CF for the back-end processing of the files, but what
> is not desired is having the multiple html file form fields.
>
> This is for an intranet application with VERY tightly controlled browser
> and OS environments. Downloading a separate application is pretty much a
> non-starter; it needs to work in the browser window.
>
> Any pointers you can offer would be appreciated.
>
>
>
>
>
>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238733
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Patrick McGeehan
Aren't there Flash solutions now?  I used to use a JAVA applet at a
previous position and remember the head ache of client computers having
the wrong java version.

This looked good at first glance

http://72.14.203.104/search?q=cache:SF1om3zwEeYJ:labs.oinam.com/flash8/f
ileuploaddownload/+flash+multiple+file+upload&hl=en&gl=us&ct=clnk&cd=1

I downloaded that for later reference.  But if anyone else has some
insight on a flash solution, I know I will be keeping an eye on this
thread to see.


-Original Message-
From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 25, 2006 4:21 PM
To: CF-Talk
Subject: RE: Uploading multiple files - not necessarily CF

I'll dig into that. Gotta get Java installed though.

-Original Message-
From: Mark Leder [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 25, 2006 4:14 PM
To: CF-Talk
Subject: RE: Uploading multiple files - not necessarily CF

The java app I mentioned will fit directly into your html, and will
accept images, docs, etc, fully configurable. Also has CF examples. 


Thanks,
Mark

-Original Message-
From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, April 25, 2006 4:09 PM
To: CF-Talk
Subject: RE: Uploading multiple files - not necessarily CF

I've been told that whatever solution we go with has to work in the
current application "flow."

In other words, we need to be able to seamlessly slot the solution into
our current web application. Sending the users to a separate application
is a non-starter. I need something that, ideally, can fit into an
existing HTML form.

I'm not optimistic.

-Original Message-
From: Everett, Al (NIH/NIGMS) [C]
Sent: Tuesday, April 25, 2006 2:06 PM
To: CF-Talk
Subject: Uploading multiple files - not necessarily CF

I'm looking for a solution to this problem:
 
For an intranet site, the end user should be able to select multiple
files (or even a directory) located on his/her local machine, and press
a single button to upload them to the server.
 
We're a CF shop and I don't see a CF solution for this piece, but it
needs to work with CF. Perhaps a Java applet? Maybe Flash? We'll
certainly be using CF for the back-end processing of the files, but what
is not desired is having the multiple html file form fields.
 
This is for an intranet application with VERY tightly controlled browser
and OS environments. Downloading a separate application is pretty much a
non-starter; it needs to work in the browser window.
 
Any pointers you can offer would be appreciated.







~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238731
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Everett, Al \(NIH/NIGMS\) [C]
I'll dig into that. Gotta get Java installed though.

-Original Message-
From: Mark Leder [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 25, 2006 4:14 PM
To: CF-Talk
Subject: RE: Uploading multiple files - not necessarily CF

The java app I mentioned will fit directly into your html, and will
accept images, docs, etc, fully configurable. Also has CF examples. 


Thanks,
Mark

-Original Message-
From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED]
Sent: Tuesday, April 25, 2006 4:09 PM
To: CF-Talk
Subject: RE: Uploading multiple files - not necessarily CF

I've been told that whatever solution we go with has to work in the
current application "flow."

In other words, we need to be able to seamlessly slot the solution into
our current web application. Sending the users to a separate application
is a non-starter. I need something that, ideally, can fit into an
existing HTML form.

I'm not optimistic.

-Original Message-
From: Everett, Al (NIH/NIGMS) [C]
Sent: Tuesday, April 25, 2006 2:06 PM
To: CF-Talk
Subject: Uploading multiple files - not necessarily CF

I'm looking for a solution to this problem:
 
For an intranet site, the end user should be able to select multiple
files (or even a directory) located on his/her local machine, and press
a single button to upload them to the server.
 
We're a CF shop and I don't see a CF solution for this piece, but it
needs to work with CF. Perhaps a Java applet? Maybe Flash? We'll
certainly be using CF for the back-end processing of the files, but what
is not desired is having the multiple html file form fields.
 
This is for an intranet application with VERY tightly controlled browser
and OS environments. Downloading a separate application is pretty much a
non-starter; it needs to work in the browser window.
 
Any pointers you can offer would be appreciated.





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238730
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Mark Leder
The java app I mentioned will fit directly into your html, and will accept
images, docs, etc, fully configurable. Also has CF examples. 


Thanks,
Mark

-Original Message-
From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 25, 2006 4:09 PM
To: CF-Talk
Subject: RE: Uploading multiple files - not necessarily CF

I've been told that whatever solution we go with has to work in the current
application "flow."

In other words, we need to be able to seamlessly slot the solution into our
current web application. Sending the users to a separate application is a
non-starter. I need something that, ideally, can fit into an existing HTML
form.

I'm not optimistic.

-Original Message-
From: Everett, Al (NIH/NIGMS) [C]
Sent: Tuesday, April 25, 2006 2:06 PM
To: CF-Talk
Subject: Uploading multiple files - not necessarily CF

I'm looking for a solution to this problem:
 
For an intranet site, the end user should be able to select multiple files
(or even a directory) located on his/her local machine, and press a single
button to upload them to the server.
 
We're a CF shop and I don't see a CF solution for this piece, but it needs
to work with CF. Perhaps a Java applet? Maybe Flash? We'll certainly be
using CF for the back-end processing of the files, but what is not desired
is having the multiple html file form fields.
 
This is for an intranet application with VERY tightly controlled browser and
OS environments. Downloading a separate application is pretty much a
non-starter; it needs to work in the browser window.
 
Any pointers you can offer would be appreciated.



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238729
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Everett, Al \(NIH/NIGMS\) [C]
I've been told that whatever solution we go with has to work in the
current application "flow."

In other words, we need to be able to seamlessly slot the solution into
our current web application. Sending the users to a separate application
is a non-starter. I need something that, ideally, can fit into an
existing HTML form.

I'm not optimistic.

-Original Message-
From: Everett, Al (NIH/NIGMS) [C] 
Sent: Tuesday, April 25, 2006 2:06 PM
To: CF-Talk
Subject: Uploading multiple files - not necessarily CF

I'm looking for a solution to this problem:
 
For an intranet site, the end user should be able to select multiple
files (or even a directory) located on his/her local machine, and press
a single button to upload them to the server.
 
We're a CF shop and I don't see a CF solution for this piece, but it
needs to work with CF. Perhaps a Java applet? Maybe Flash? We'll
certainly be using CF for the back-end processing of the files, but what
is not desired is having the multiple html file form fields.
 
This is for an intranet application with VERY tightly controlled browser
and OS environments. Downloading a separate application is pretty much a
non-starter; it needs to work in the browser window.
 
Any pointers you can offer would be appreciated.

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238728
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Uploading multiple files - not necessarily CF

2006-04-25 Thread DRE
If you dont mind ie, you could use an hta wrapper.  This effectively removes
any security limitations allowing you to script code that browses the
clients os.  I think it also allows you to prefill the mailto:[EMAIL PROTECTED]
> Sent: Tuesday, April 25, 2006 3:05 PM
> To: CF-Talk
> Subject: RE: Uploading multiple files - not necessarily CF
>
> Alas, I spoke too soon. No, that's not going to work for me. The "upload
> multiple files" is simply 20 HTML file fields. No good.
>
> I might be able to use it for something else, but not for this project.
>
> -Original Message-
> From: Everett, Al (NIH/NIGMS) [C]
> Sent: Tuesday, April 25, 2006 3:00 PM
> To: CF-Talk
> Subject: RE: Uploading multiple files - not necessarily CF
>
> Looks promising, but may be more than I need/want. I certainly don't want
> the end users able to delete files or directories on the server.
>
> But I've just glanced at it. Thanks for the tip.
>
>
> -Original Message-
> From: Russ Michaels [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, April 25, 2006 2:37 PM
> To: CF-Talk
> Subject: Re: Uploading multiple files - not necessarily CF
>
> Checkout the CFFM (CF file Manager) by Rick root I think.
> Russ
>
> -Original Message-----
> From: "Rob Wilkerson" <[EMAIL PROTECTED]>
> To: CF-Talk 
> Date: Tue, 25 Apr 2006 14:19:22 -0400
> Subject: Re: Uploading multiple files - not necessarily CF
>
> > What about using DHTML?  Take a look at something like this:
> >
> > http://the-stickman.com/web-development/javascript/upload-multiple-fil
> > e
> > s-with-a-single-file-element/
> >
> > I've played with it a little bit and it looks pretty nice.  I have not
>
> > used it in production, though, so it will require some testing.
> >
> > On 4/25/06, Everett, Al (NIH/NIGMS) [C] <[EMAIL PROTECTED]>
> wrote:
> > > I'm looking for a solution to this problem:
> > >
> > > For an intranet site, the end user should be able to select multiple
>
> > > files (or even a directory) located on his/her local machine, and
> > press
> > > a single button to upload them to the server.
> > >
> > > We're a CF shop and I don't see a CF solution for this piece, but it
>
> > > needs to work with CF. Perhaps a Java applet? Maybe Flash? We'll
> > > certainly be using CF for the back-end processing of the files, but
> > what
> > > is not desired is having the multiple html file form fields.
> > >
> > > This is for an intranet application with VERY tightly controlled
> > browser
> > > and OS environments. Downloading a separate application is pretty
> > much a
> > > non-starter; it needs to work in the browser window.
> > >
> > > Any pointers you can offer would be appreciated.
> > >
> > >
> > >
> >
> >
>
>
>
>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238721
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Mark Leder
www.aurigma.com

Awesome Java tag - some of the best documentation I've seen anywhere. 


Thanks,
Mark

-Original Message-
From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 25, 2006 3:05 PM
To: CF-Talk
Subject: RE: Uploading multiple files - not necessarily CF

Alas, I spoke too soon. No, that's not going to work for me. The "upload
multiple files" is simply 20 HTML file fields. No good.

I might be able to use it for something else, but not for this project.

-Original Message-
From: Everett, Al (NIH/NIGMS) [C]
Sent: Tuesday, April 25, 2006 3:00 PM
To: CF-Talk
Subject: RE: Uploading multiple files - not necessarily CF

Looks promising, but may be more than I need/want. I certainly don't want
the end users able to delete files or directories on the server.

But I've just glanced at it. Thanks for the tip. 


-Original Message-
From: Russ Michaels [mailto:[EMAIL PROTECTED]
Sent: Tuesday, April 25, 2006 2:37 PM
To: CF-Talk
Subject: Re: Uploading multiple files - not necessarily CF

Checkout the CFFM (CF file Manager) by Rick root I think.
Russ

-Original Message-
From: "Rob Wilkerson" <[EMAIL PROTECTED]>
To: CF-Talk 
Date: Tue, 25 Apr 2006 14:19:22 -0400
Subject: Re: Uploading multiple files - not necessarily CF

> What about using DHTML?  Take a look at something like this:
> 
> http://the-stickman.com/web-development/javascript/upload-multiple-fil
> e
> s-with-a-single-file-element/
> 
> I've played with it a little bit and it looks pretty nice.  I have not

> used it in production, though, so it will require some testing.
> 
> On 4/25/06, Everett, Al (NIH/NIGMS) [C] <[EMAIL PROTECTED]>
wrote:
> > I'm looking for a solution to this problem:
> >
> > For an intranet site, the end user should be able to select multiple

> > files (or even a directory) located on his/her local machine, and
> press
> > a single button to upload them to the server.
> >
> > We're a CF shop and I don't see a CF solution for this piece, but it

> > needs to work with CF. Perhaps a Java applet? Maybe Flash? We'll 
> > certainly be using CF for the back-end processing of the files, but
> what
> > is not desired is having the multiple html file form fields.
> >
> > This is for an intranet application with VERY tightly controlled
> browser
> > and OS environments. Downloading a separate application is pretty
> much a
> > non-starter; it needs to work in the browser window.
> >
> > Any pointers you can offer would be appreciated.
> >
> >
> > 
> 
> 





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238718
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Everett, Al \(NIH/NIGMS\) [C]
Alas, I spoke too soon. No, that's not going to work for me. The "upload
multiple files" is simply 20 HTML file fields. No good.

I might be able to use it for something else, but not for this project.

-Original Message-
From: Everett, Al (NIH/NIGMS) [C] 
Sent: Tuesday, April 25, 2006 3:00 PM
To: CF-Talk
Subject: RE: Uploading multiple files - not necessarily CF

Looks promising, but may be more than I need/want. I certainly don't
want the end users able to delete files or directories on the server.

But I've just glanced at it. Thanks for the tip. 


-Original Message-
From: Russ Michaels [mailto:[EMAIL PROTECTED]
Sent: Tuesday, April 25, 2006 2:37 PM
To: CF-Talk
Subject: Re: Uploading multiple files - not necessarily CF

Checkout the CFFM (CF file Manager) by Rick root I think.
Russ

-Original Message-
From: "Rob Wilkerson" <[EMAIL PROTECTED]>
To: CF-Talk 
Date: Tue, 25 Apr 2006 14:19:22 -0400
Subject: Re: Uploading multiple files - not necessarily CF

> What about using DHTML?  Take a look at something like this:
> 
> http://the-stickman.com/web-development/javascript/upload-multiple-fil
> e
> s-with-a-single-file-element/
> 
> I've played with it a little bit and it looks pretty nice.  I have not

> used it in production, though, so it will require some testing.
> 
> On 4/25/06, Everett, Al (NIH/NIGMS) [C] <[EMAIL PROTECTED]>
wrote:
> > I'm looking for a solution to this problem:
> >
> > For an intranet site, the end user should be able to select multiple

> > files (or even a directory) located on his/her local machine, and
> press
> > a single button to upload them to the server.
> >
> > We're a CF shop and I don't see a CF solution for this piece, but it

> > needs to work with CF. Perhaps a Java applet? Maybe Flash? We'll 
> > certainly be using CF for the back-end processing of the files, but
> what
> > is not desired is having the multiple html file form fields.
> >
> > This is for an intranet application with VERY tightly controlled
> browser
> > and OS environments. Downloading a separate application is pretty
> much a
> > non-starter; it needs to work in the browser window.
> >
> > Any pointers you can offer would be appreciated.
> >
> >
> > 
> 
> 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238715
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Everett, Al \(NIH/NIGMS\) [C]
Yes, I know it can't be done from the standard browser dialog, that's
why I'm looking for another solution.

I'm finding some promising things using Java and/or ASP.NET. Now I have
to get Ops to install Java and/or .NET on my PC. (I told you it was a
tightly controlled environment.)

-Original Message-
From: Rob Wilkerson [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 25, 2006 2:42 PM
To: CF-Talk
Subject: Re: Uploading multiple files - not necessarily CF

You mean by control- or shift-clicking?  So click "Browse" and then
select multiple files from the dialog?  If so, then that can't be done
as far as I know.  Using the standard file input, control- and
shift-clicking is disabled.  One file at a time.  Period.

I missed that possible meaning.  Thanks, Ben.

On 4/25/06, Ben Nadel <[EMAIL PROTECTED]> wrote:
> Rob,
>
> That's  nice little solutions. I think though, what he ultimately 
> wants is to not have to "browse" for each new file... But rather to 
> select multiple files from one dialogue as you would in FireWorks or
Photoshop.
>
> The only solutions I have seen like this are thrid party stuff like 
> ActiveX dealies.
>
> -ben
> ...
> Ben Nadel
> www.bennadel.com


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238713
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Everett, Al \(NIH/NIGMS\) [C]
Exactly. I'm dealing with users who aren't terribly sophisticated. "I
can select multiple files in Word. Why can't I do it to upload files in
my browser?"

ActiveX is not out of the question, so if you've some pointers there
that would be great.

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 25, 2006 2:32 PM
To: CF-Talk
Subject: RE: Uploading multiple files - not necessarily CF

Rob,

That's  nice little solutions. I think though, what he ultimately wants
is to not have to "browse" for each new file... But rather to select
multiple files from one dialogue as you would in FireWorks or Photoshop.

The only solutions I have seen like this are thrid party stuff like
ActiveX dealies.

-ben

Ben Nadel
www.bennadel.com
-Original Message-
From: Rob Wilkerson [mailto:[EMAIL PROTECTED]
Sent: Tuesday, April 25, 2006 2:19 PM
To: CF-Talk
Subject: Re: Uploading multiple files - not necessarily CF

What about using DHTML?  Take a look at something like this:

http://the-stickman.com/web-development/javascript/upload-multiple-files
-wit
h-a-single-file-element/

I've played with it a little bit and it looks pretty nice.  I have not
used it in production, though, so it will require some testing.

On 4/25/06, Everett, Al (NIH/NIGMS) [C] <[EMAIL PROTECTED]> wrote:
> I'm looking for a solution to this problem:
>
> For an intranet site, the end user should be able to select multiple 
> files (or even a directory) located on his/her local machine, and 
> press a single button to upload them to the server.
>
> We're a CF shop and I don't see a CF solution for this piece, but it 
> needs to work with CF. Perhaps a Java applet? Maybe Flash? We'll 
> certainly be using CF for the back-end processing of the files, but 
> what is not desired is having the multiple html file form fields.
>
> This is for an intranet application with VERY tightly controlled 
> browser and OS environments. Downloading a separate application is 
> pretty much a non-starter; it needs to work in the browser window.
>
> Any pointers you can offer would be appreciated.
>
>
> 





~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238711
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Everett, Al \(NIH/NIGMS\) [C]
Looks promising, but may be more than I need/want. I certainly don't
want the end users able to delete files or directories on the server.

But I've just glanced at it. Thanks for the tip. 


-Original Message-
From: Russ Michaels [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 25, 2006 2:37 PM
To: CF-Talk
Subject: Re: Uploading multiple files - not necessarily CF

Checkout the CFFM (CF file Manager) by Rick root I think.
Russ

-Original Message-
From: "Rob Wilkerson" <[EMAIL PROTECTED]>
To: CF-Talk 
Date: Tue, 25 Apr 2006 14:19:22 -0400
Subject: Re: Uploading multiple files - not necessarily CF

> What about using DHTML?  Take a look at something like this:
> 
> http://the-stickman.com/web-development/javascript/upload-multiple-fil
> e
> s-with-a-single-file-element/
> 
> I've played with it a little bit and it looks pretty nice.  I have not

> used it in production, though, so it will require some testing.
> 
> On 4/25/06, Everett, Al (NIH/NIGMS) [C] <[EMAIL PROTECTED]>
wrote:
> > I'm looking for a solution to this problem:
> >
> > For an intranet site, the end user should be able to select multiple

> > files (or even a directory) located on his/her local machine, and
> press
> > a single button to upload them to the server.
> >
> > We're a CF shop and I don't see a CF solution for this piece, but it

> > needs to work with CF. Perhaps a Java applet? Maybe Flash? We'll 
> > certainly be using CF for the back-end processing of the files, but
> what
> > is not desired is having the multiple html file form fields.
> >
> > This is for an intranet application with VERY tightly controlled
> browser
> > and OS environments. Downloading a separate application is pretty
> much a
> > non-starter; it needs to work in the browser window.
> >
> > Any pointers you can offer would be appreciated.
> >
> >
> > 
> 
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238710
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Uploading multiple files - not necessarily CF

2006-04-25 Thread Rob Wilkerson
You mean by control- or shift-clicking?  So click "Browse" and then
select multiple files from the dialog?  If so, then that can't be done
as far as I know.  Using the standard file input, control- and
shift-clicking is disabled.  One file at a time.  Period.

I missed that possible meaning.  Thanks, Ben.

On 4/25/06, Ben Nadel <[EMAIL PROTECTED]> wrote:
> Rob,
>
> That's  nice little solutions. I think though, what he ultimately wants is
> to not have to "browse" for each new file... But rather to select multiple
> files from one dialogue as you would in FireWorks or Photoshop.
>
> The only solutions I have seen like this are thrid party stuff like ActiveX
> dealies.
>
> -ben
> ...
> Ben Nadel
> www.bennadel.com

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238704
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Uploading multiple files - not necessarily CF

2006-04-25 Thread Russ Michaels
Checkout the CFFM (CF file Manager) by Rick root I think.
Russ

-Original Message-
From: "Rob Wilkerson" <[EMAIL PROTECTED]>
To: CF-Talk 
Date: Tue, 25 Apr 2006 14:19:22 -0400
Subject: Re: Uploading multiple files - not necessarily CF

> What about using DHTML?  Take a look at something like this:
> 
> http://the-stickman.com/web-development/javascript/upload-multiple-file
> s-with-a-single-file-element/
> 
> I've played with it a little bit and it looks pretty nice.  I have not
> used it in production, though, so it will require some testing.
> 
> On 4/25/06, Everett, Al (NIH/NIGMS) [C] <[EMAIL PROTECTED]> wrote:
> > I'm looking for a solution to this problem:
> >
> > For an intranet site, the end user should be able to select multiple
> > files (or even a directory) located on his/her local machine, and
> press
> > a single button to upload them to the server.
> >
> > We're a CF shop and I don't see a CF solution for this piece, but it
> > needs to work with CF. Perhaps a Java applet? Maybe Flash? We'll
> > certainly be using CF for the back-end processing of the files, but
> what
> > is not desired is having the multiple html file form fields.
> >
> > This is for an intranet application with VERY tightly controlled
> browser
> > and OS environments. Downloading a separate application is pretty
> much a
> > non-starter; it needs to work in the browser window.
> >
> > Any pointers you can offer would be appreciated.
> >
> >
> > 
> 
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238702
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Ben Nadel
Rob,

That's  nice little solutions. I think though, what he ultimately wants is
to not have to "browse" for each new file... But rather to select multiple
files from one dialogue as you would in FireWorks or Photoshop.

The only solutions I have seen like this are thrid party stuff like ActiveX
dealies.

-ben
...
Ben Nadel 
www.bennadel.com
-Original Message-
From: Rob Wilkerson [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 25, 2006 2:19 PM
To: CF-Talk
Subject: Re: Uploading multiple files - not necessarily CF

What about using DHTML?  Take a look at something like this:

http://the-stickman.com/web-development/javascript/upload-multiple-files-wit
h-a-single-file-element/

I've played with it a little bit and it looks pretty nice.  I have not used
it in production, though, so it will require some testing.

On 4/25/06, Everett, Al (NIH/NIGMS) [C] <[EMAIL PROTECTED]> wrote:
> I'm looking for a solution to this problem:
>
> For an intranet site, the end user should be able to select multiple 
> files (or even a directory) located on his/her local machine, and 
> press a single button to upload them to the server.
>
> We're a CF shop and I don't see a CF solution for this piece, but it 
> needs to work with CF. Perhaps a Java applet? Maybe Flash? We'll 
> certainly be using CF for the back-end processing of the files, but 
> what is not desired is having the multiple html file form fields.
>
> This is for an intranet application with VERY tightly controlled 
> browser and OS environments. Downloading a separate application is 
> pretty much a non-starter; it needs to work in the browser window.
>
> Any pointers you can offer would be appreciated.
>
>
> 



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238699
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Uploading multiple files - not necessarily CF

2006-04-25 Thread Rob Wilkerson
What about using DHTML?  Take a look at something like this:

http://the-stickman.com/web-development/javascript/upload-multiple-files-with-a-single-file-element/

I've played with it a little bit and it looks pretty nice.  I have not
used it in production, though, so it will require some testing.

On 4/25/06, Everett, Al (NIH/NIGMS) [C] <[EMAIL PROTECTED]> wrote:
> I'm looking for a solution to this problem:
>
> For an intranet site, the end user should be able to select multiple
> files (or even a directory) located on his/her local machine, and press
> a single button to upload them to the server.
>
> We're a CF shop and I don't see a CF solution for this piece, but it
> needs to work with CF. Perhaps a Java applet? Maybe Flash? We'll
> certainly be using CF for the back-end processing of the files, but what
> is not desired is having the multiple html file form fields.
>
> This is for an intranet application with VERY tightly controlled browser
> and OS environments. Downloading a separate application is pretty much a
> non-starter; it needs to work in the browser window.
>
> Any pointers you can offer would be appreciated.
>
>
> 

~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238693
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Uploading multiple files - not necessarily CF

2006-04-25 Thread Everett, Al \(NIH/NIGMS\) [C]
I'm looking for a solution to this problem:
 
For an intranet site, the end user should be able to select multiple
files (or even a directory) located on his/her local machine, and press
a single button to upload them to the server.
 
We're a CF shop and I don't see a CF solution for this piece, but it
needs to work with CF. Perhaps a Java applet? Maybe Flash? We'll
certainly be using CF for the back-end processing of the files, but what
is not desired is having the multiple html file form fields.
 
This is for an intranet application with VERY tightly controlled browser
and OS environments. Downloading a separate application is pretty much a
non-starter; it needs to work in the browser window.
 
Any pointers you can offer would be appreciated.


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:238686
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: uploading multiple files

2001-04-26 Thread Susan Matthews

ohhh.  Who knows what I was thinking.
Thank you for your help! :)

> -Original Message-
> From: Dylan Bromby [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, April 26, 2001 2:15 PM
> To: CF-Talk
> Subject: RE: uploading multiple files
>
>
> you will use CFFILE in each iteration of the CFLOOP in the code
> that handles
> the original form. so from each CFFILE iteration, you get the file name of
> each uploaded file.
>
> -Original Message-
> From: Susan Matthews [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, April 26, 2001 10:41 AM
> To: CF-Talk
> Subject: RE: uploading multiple files
>
>
> Thank you.  I'm not as familiar w/ file.clientFile as I should be.  It may
> not even be what I need in this situation
>
> First form:
> 
> 
> 
> Large Image:
> 
> Thumbnail Image:
> 
> Printable Version:
> 
> 
> 
> 
> 
>
> Then, in the receiving form...
> I understand how to loop thru and upload each file; but, I then
> need to save
> the name of each file in a single record to be read later.
>
> So, I have file_1, file_2, file_3.  How do I get the actual file name of
> each one? (ex:myPicture.gif)
>
> Thank you!!!
>
>
> > -Original Message-----
> > From: Dylan Bromby [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, April 26, 2001 12:26 PM
> > To: CF-Talk
> > Subject: RE: uploading multiple files
> >
> >
> > i do this a lot.
> >
> > in your form, CFLOOP to create each upload form element. use the
> > INDEX value
> > as part of each form element name.
> >
> > then, in the code that handles the form, CFLOOP over the name
> of each form
> > element using Evaluate() to get the actual value of each var name.
> >
> >
> > -Original Message-
> > From: Susan Matthews [mailto:[EMAIL PROTECTED]]
> > Sent: Thursday, April 26, 2001 9:04 AM
> > To: CF-Talk
> > Subject: uploading multiple files
> >
> >
> > Hi all--
> >
> > I have a form that uses multiple  to
> upload multiple
> > files(images and PDFs).
> >
> > In the past, when using  I have used 'file.clientFile'
> to save the
> > file name so that I can read the correct file later from a known
> > directory.
> >
> > If I am uploading multiple files on one form, how do I know which
> > name goes
> > with which file?
> >
> > thanks in advance for any help :)
> >
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: uploading multiple files

2001-04-26 Thread Dylan Bromby

you will use CFFILE in each iteration of the CFLOOP in the code that handles
the original form. so from each CFFILE iteration, you get the file name of
each uploaded file.

-Original Message-
From: Susan Matthews [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 26, 2001 10:41 AM
To: CF-Talk
Subject: RE: uploading multiple files


Thank you.  I'm not as familiar w/ file.clientFile as I should be.  It may
not even be what I need in this situation

First form:



Large Image:

Thumbnail Image:

Printable Version:






Then, in the receiving form...
I understand how to loop thru and upload each file; but, I then need to save
the name of each file in a single record to be read later.

So, I have file_1, file_2, file_3.  How do I get the actual file name of
each one? (ex:myPicture.gif)

Thank you!!!


> -Original Message-
> From: Dylan Bromby [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, April 26, 2001 12:26 PM
> To: CF-Talk
> Subject: RE: uploading multiple files
>
>
> i do this a lot.
>
> in your form, CFLOOP to create each upload form element. use the
> INDEX value
> as part of each form element name.
>
> then, in the code that handles the form, CFLOOP over the name of each form
> element using Evaluate() to get the actual value of each var name.
>
>
> -Original Message-
> From: Susan Matthews [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, April 26, 2001 9:04 AM
> To: CF-Talk
> Subject: uploading multiple files
>
>
> Hi all--
>
> I have a form that uses multiple  to upload multiple
> files(images and PDFs).
>
> In the past, when using  I have used 'file.clientFile' to save the
> file name so that I can read the correct file later from a known
> directory.
>
> If I am uploading multiple files on one form, how do I know which
> name goes
> with which file?
>
> thanks in advance for any help :)
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: uploading multiple files

2001-04-26 Thread Susan Matthews

Thank you.  I'm not as familiar w/ file.clientFile as I should be.  It may
not even be what I need in this situation

First form:



Large Image:

Thumbnail Image:

Printable Version:






Then, in the receiving form...
I understand how to loop thru and upload each file; but, I then need to save
the name of each file in a single record to be read later.

So, I have file_1, file_2, file_3.  How do I get the actual file name of
each one? (ex:myPicture.gif)

Thank you!!!


> -Original Message-
> From: Dylan Bromby [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, April 26, 2001 12:26 PM
> To: CF-Talk
> Subject: RE: uploading multiple files
>
>
> i do this a lot.
>
> in your form, CFLOOP to create each upload form element. use the
> INDEX value
> as part of each form element name.
>
> then, in the code that handles the form, CFLOOP over the name of each form
> element using Evaluate() to get the actual value of each var name.
>
>
> -Original Message-
> From: Susan Matthews [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, April 26, 2001 9:04 AM
> To: CF-Talk
> Subject: uploading multiple files
>
>
> Hi all--
>
> I have a form that uses multiple  to upload multiple
> files(images and PDFs).
>
> In the past, when using  I have used 'file.clientFile' to save the
> file name so that I can read the correct file later from a known
> directory.
>
> If I am uploading multiple files on one form, how do I know which
> name goes
> with which file?
>
> thanks in advance for any help :)
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: uploading multiple files

2001-04-26 Thread Dylan Bromby

i do this a lot.

in your form, CFLOOP to create each upload form element. use the INDEX value
as part of each form element name.

then, in the code that handles the form, CFLOOP over the name of each form
element using Evaluate() to get the actual value of each var name.


-Original Message-
From: Susan Matthews [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 26, 2001 9:04 AM
To: CF-Talk
Subject: uploading multiple files


Hi all--

I have a form that uses multiple  to upload multiple
files(images and PDFs).

In the past, when using  I have used 'file.clientFile' to save the
file name so that I can read the correct file later from a known directory.

If I am uploading multiple files on one form, how do I know which name goes
with which file?

thanks in advance for any help :)
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



uploading multiple files

2001-04-26 Thread Susan Matthews

Hi all--

I have a form that uses multiple  to upload multiple
files(images and PDFs).

In the past, when using  I have used 'file.clientFile' to save the
file name so that I can read the correct file later from a known directory.

If I am uploading multiple files on one form, how do I know which name goes
with which file?

thanks in advance for any help :)


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Uploading multiple files at one time

2000-12-11 Thread Dylan Bromby

i've done this on several occassions this way:

1) the user enters how many files to upload (n)
2) loop n times over INPUT TYPE=FILE NAME=file#n#
3) pass a var with the same num but incremental values in each iteration -
so you might wind up with a var called "list" with a value of
1,2,3,4,...etc.
4) once the user submits, you loop over the list and in each iteration of
that loop, process the file according to file#n#

if it doesn't work, let me know and i'll send you some code.

-Original Message-
From: Milks, Jim [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 11, 2000 11:49 AM
To: CF-Talk
Subject: Uploading multiple files at one time


Hi All,

I want to upload several files at a time, without writing the file to the
server until the user submits the form.

Any thoughts?

Jim
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Uploading multiple files at one time

2000-12-11 Thread Sébastien Riccio

maybe multile file fields ? (with browse buttons)




- Original Message -
From: "Milks, Jim" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, December 11, 2000 8:48 PM
Subject: Uploading multiple files at one time


> Hi All,
>
> I want to upload several files at a time, without writing the file to the
> server until the user submits the form.
>
> Any thoughts?
>
> Jim
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Uploading multiple files at one time

2000-12-11 Thread Milks, Jim

Hi All,

I want to upload several files at a time, without writing the file to the
server until the user submits the form. 

Any thoughts?

Jim

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: uploading multiple files

2000-05-04 Thread B.Cravens

#file.serverfile# can only contain one value at a time.  So your code will
write the value for excfile into both fields in the db.  Instead, do a
cffile, then assign the file.serverfile to another variable, then do your
next cffile, and so on.

Ex:








INSERT INTO table
(resFile, excfile)
VALUES
(''#resfilename#', '#excfilename#')


- Original Message -
From: "THERESA" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, May 04, 2000 3:02 AM
Subject: uploading multiple files


> > I am uploading 2 files and am using the makeunique function for
> > naming.
> >
> > The problem I am having is when I write the name of the files to the
> > db, I want to use the names given if they were made unique, so  I am
> > using this:  '#File.ServerFile#'
> >
> > The problem is that it's putting the same name in both fields of the
> > db.  How do I specify for it to put in the name it gave each file.
> >
> > Below is my insert statement and upload.
> >
> > Thanks in Advance.
> >
> > tcl
> >
> >  > destination="#session.respath#" nameconflict="MAKEUNIQUE">
> >
> >  > destination="#session.respath#" nameconflict="MAKEUNIQUE">
> >
> > 
> > INSERT INTO table
> > (resFile, excfile)
> > VALUES
> > (''#File.ServerFile#', '#File.ServerFile#')
> > 
> --

> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



uploading multiple files

2000-05-04 Thread THERESA

> I am uploading 2 files and am using the makeunique function for
> naming.
> 
> The problem I am having is when I write the name of the files to the
> db, I want to use the names given if they were made unique, so  I am
> using this:  '#File.ServerFile#'
> 
> The problem is that it's putting the same name in both fields of the
> db.  How do I specify for it to put in the name it gave each file.
> 
> Below is my insert statement and upload.
> 
> Thanks in Advance.
> 
> tcl
> 
>  destination="#session.respath#" nameconflict="MAKEUNIQUE">
> 
>  destination="#session.respath#" nameconflict="MAKEUNIQUE">
> 
> 
> INSERT INTO table
>   (resFile, excfile) 
> VALUES 
>   (''#File.ServerFile#', '#File.ServerFile#')
> 
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.