Can I create a form with several HTML5 multi-file uploads and send to unique destinations?

2012-11-20 Thread Shawn McKee
I have a page where people need to be able to upload multiple files that go to different places. I can use: input type=file multiple=multiple name=fileSet1 / input type=file multiple=multiple name=fileSet2 / input type=file multiple=multiple name=fileSet3 / To get the files but once I get to

Clear out webservices?

2012-11-20 Thread DeMarco, Alex
Is there any way to automatically clear out the webservices listed in the CF Admin every time the instance restarts? [circle]http://www.suny.edu/ Alex DeMarco Manager of Technical Services The State University of New York State University Plaza - Albany, New York 12246 Tel: 518.320.1398

Re: Clear out webservices?

2012-11-20 Thread Stephane Vantroyen
Post is rather old but i think it still works : http://www.bpurcell.org/blog/index.cfm?entry=965mode=entry Is there any way to automatically clear out the webservices listed in the CF Admin every time the instance restarts? [circle]http://www.suny.edu/ Alex DeMarco Manager of

Re: Can I create a form with several HTML5 multi-file uploads and send to unique destinations?

2012-11-20 Thread Dave Watts
I have a page where people need to be able to upload multiple files that go to different places. I can use: input type=file multiple=multiple name=fileSet1 / input type=file multiple=multiple name=fileSet2 / input type=file multiple=multiple name=fileSet3 / To get the files but once I

RE: Can I create a form with several HTML5 multi-file uploads and send to unique destinations?

2012-11-20 Thread Robert Harrison
You can send the file to different definitions if you loop over your file sets rather than handle them all with one command. Then you can change destination on each loop. Robert Harrison Director of Interactive Services Austin Williams Advertising I Branding I Digital I Direct   125 Kennedy

Re: Can I create a form with several HTML5 multi-file uploads and send to unique destinations?

2012-11-20 Thread Raymond Camden
I want to add two kinda OT points here. CF9 (and earlier) has a bug with input type=file multiple where it will only process the first file. As far as I know there is no workaround for this. CF10 handles it ok though. Dave said you can't have one form with multiple destinations. That isn't

RE: Can I create a form with several HTML5 multi-file uploads and send to unique destinations?

2012-11-20 Thread Robert Harrison
I have definitely gotten around that by using loops, but I also have not been using file sets. I've been using single file fields named in such a way that I have a key to tell me which files belongs to a set. Robert Harrison Director of Interactive Services Austin Williams Advertising I

RE: Can I create a form with several HTML5 multi-file uploads and send to unique destinations?

2012-11-20 Thread Robert Harrison
I've been using single file fields ... That's not always true. I do also use a multi-file uploader utility but I consider each multi-file upload to be one set when that is used. Robert Harrison Director of Interactive Services Austin Williams Advertising I Branding I Digital I Direct  

Re: Multiple application in webroot with different sessions

2012-11-20 Thread Uday Patel
Did you assign different names to the two applications? On Mon, Nov 19, 2012 at 9:48 PM, Uday Patel udayjpatel2...@gmail.comwrote: yes the application names are different for all sites ~| Order the Adobe Coldfusion

Re: Security Question(s)

2012-11-20 Thread Pete Freitag
On Mon, Nov 19, 2012 at 1:48 PM, Jamie Bowers jamiembow...@netscape.netwrote: Somewhat related, how do I determine that any hot-fix or security patch I may download and install is indeed installed? Jamie, one thing I'd like to point out is that if your are using CF7 then you have unpatched

Re: Multiple application in webroot with different sessions

2012-11-20 Thread Pete Freitag
You will need to make sure each of the session cookies specify a path attribute otherwise the user will loose sessions when going from app to app (if you have the session fixation patch enabled). This will also allow you to have unique session ids for each app. You can do this by writing the

Re: Anyone using Twitter Bootstrap with CF?

2012-11-20 Thread Pete Ruckelshaus
OK, new (but related) problem. I'm using a modal window to edit records. When I click to edit the first record, it loads the edit window with that records data. Cool. Close the window, click on the second record, and the data for the first record is still in the form and remains there until I

Re: Can I create a form with several HTML5 multi-file uploads and send to unique destinations?

2012-11-20 Thread Dave Watts
Dave said you can't have one form with multiple destinations. That isn't technically true. The HTML5 spec supports a formaction attribute for the input tag that allows multiple destinations for different fields in the same form. For the life of me I can't imagine using this often in the real

Re: Anyone using Twitter Bootstrap with CF?

2012-11-20 Thread Nathan Strutz
You will really need to confirm if you do actually have a caching issue. If you're using Firefox, use Firebug to watch your ajax traffic in the console view. If you're using Chrome, F12 will pull up the developer tools. I hear there are other browsers, but you wouldn't be using them, I'm sure.

check validity of zip file with cfzip

2012-11-20 Thread Seamus Campbell
Is there any to check the validity of a zip file with cfzip. I can't see anything in the docs. The only way I could see was to do a cftry, but that seemed cumbersome. My problem is that I receive a zipped file from an external source, so need to be able to verify that it is a valid zip file