RE: MAC file upload

2002-06-10 Thread Mark A. Kruger - CFG
Awesome...thanks for the information -Original Message- From: Michael Dorr [mailto:[EMAIL PROTECTED]] Sent: Monday, June 10, 2002 3:58 PM To: CF-Talk Subject: RE: MAC file upload Just worked through this problem about a month ago. The enctype="multipart/form-data" on IE

RE: MAC file upload

2002-06-10 Thread Michael Dorr
Just worked through this problem about a month ago. The enctype="multipart/form-data" on IE 5.0 does a strange thing - it inserts a blank space at the end of every single form input inside the form. Major pain. Anyway, on the receiving end, you need to Trim() your form variables, especially

RE: MAC file upload

2002-06-10 Thread Mark A. Kruger - CFG
Thanks! (and thanks to all). -Original Message- From: Tony Gruen [mailto:[EMAIL PROTECTED]] Sent: Monday, June 10, 2002 3:49 PM To: CF-Talk Subject: RE: MAC file upload We have it working - try our code below. Add1.cfm is the form page and add2.cfm is the action. The issue we found

RE: MAC file upload

2002-06-10 Thread Tony Gruen
We have it working - try our code below. Add1.cfm is the form page and add2.cfm is the action. The issue we found was actually downloading the file once it is online but Netscape 6+ on a Mac works ok so we set our application requirements to exclude Netscape 4.x. Tony Gruen

Re: MAC file upload

2002-06-10 Thread Kreig Zimmerman
This seems to be an ongoing issue with IE5 on Macintosh. I don't think there's a resolution that I've found... although there appears to be an interesting UDF in CFLib's queue which may help. And by the way, Mac is NOT an acronym--it's a contraction!!! - Original Message - From

RE: MAC file upload

2002-06-10 Thread Shawn Regan
If you upload files from a MAC which usually have no extensions the CF server will choke on files with no extension. Shawn Regan -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Monday, June 10, 2002 1:40 PM To: CF-Talk Subject: MAC file upload It seems li

RE: MAC File Upload Issues

2001-12-04 Thread Joshua Miller
BEN MORRIS [mailto:[EMAIL PROTECTED]] Sent: Monday, December 03, 2001 4:11 PM To: CF-Talk Subject: Re: MAC File Upload Issues Are you trimming every form field? If so, trimming the upload field will screw it up. I have had problems with this before. You could call the FormURL2attributes tag in appli

RE: MAC File Upload Issues

2001-12-04 Thread Jeremy Bunton
PROTECTED]] Sent: Monday, December 03, 2001 2:53 PM To: CF-Talk Subject: Re: MAC File Upload Issues As I remember IE on the Mac messes up when uploading files, I had the same problem a couple of years ago and found no solution. Use Netscape to upload files and your problems will disappear :-) >

Re: MAC File Upload Issues

2001-12-03 Thread Brook Davies
Try using a try/catch statement around the upload... At 11:52 AM 04/12/01 +1300, you wrote: >As I remember IE on the Mac messes up when uploading files, I had the same >problem a couple of years ago and found no solution. Use Netscape to >upload files and your problems will disappear :-) > > >I'

Re: MAC File Upload Issues

2001-12-03 Thread James Sleeman
As I remember IE on the Mac messes up when uploading files, I had the same problem a couple of years ago and found no solution. Use Netscape to upload files and your problems will disappear :-) >I'm uploading a file via CFFILE and the code works flawlessly - until you >get onto a MAC (IE5)

RE: MAC File Upload Issues

2001-12-03 Thread Steven A. del Sol
Ok, I was having this same issue... I solved it by doing two things 1. I predefined my accept clause to accept *.JPEG,*.Gif, *.jpg etc. 2. I separated my uploads to only one hardcoded variable. (In other words I no longer tried to pass a variable in to the CFFILE statement.) I believe

Re: MAC File Upload Issues

2001-12-03 Thread BEN MORRIS
Are you trimming every form field? If so, trimming the upload field will screw it up. I have had problems with this before. You could call the FormURL2attributes tag in application.cfm, and start referencing attributes instead of form for your non-file form fields. That would give you the

RE: MAC File Upload Issues

2001-12-03 Thread Joel Parramore
Miller [mailto:[EMAIL PROTECTED]] > Sent: Monday, December 03, 2001 4:04 PM > To: CF-Talk > Subject: RE: MAC File Upload Issues > > > The path that's being displayed to me SHOULD BE the temporary > path on the NT > server and not on the MAC, is this an issue created by upload

RE: MAC File Upload Issues

2001-12-03 Thread Joshua Miller
-Original Message- From: Zac Belado [mailto:[EMAIL PROTECTED]] Sent: Monday, December 03, 2001 3:53 PM To: CF-Talk Subject: RE: MAC File Upload Issues > Has anyone else experienced this? Is this an anomaly or is this a known > issue with CF and MAC or is it an IE bug? The colon

RE: MAC File Upload Issues

2001-12-03 Thread Joshua Miller
upload from a MAC? Thanks again, Joshua Miller Web Development::Programming Eagle Technologies Group, Inc. www.eagletgi.com [EMAIL PROTECTED] -Original Message- From: Joel Parramore [mailto:[EMAIL PROTECTED]] Sent: Monday, December 03, 2001 3:53 PM To: CF-Talk Subject: RE: MAC File Upload

RE: MAC File Upload Issues

2001-12-03 Thread Zac Belado
> Has anyone else experienced this? Is this an anomaly or is this a known > issue with CF and MAC or is it an IE bug? The colon character is the path delimiter on the Mac. ~~ Structure your ColdFusion code with Fusebox. Get the official book at ht

RE: MAC File Upload Issues

2001-12-03 Thread Joel Parramore
Mac filenames don't use "\" --- they use ":" instead. So what you're seeing makes sense if you're uploading from a Mac. You could use the CGI.HTTP_USER_AGENT variable to try and see what OS the file upload is coming from and deal with the paths based on that. Regards, Joel Parramore > -Or