There are 2 things to keep in mind with Mac IE users:

1) mac IE will append a trailing space to *every* form field, so all form fields MUST 
be trimmed;

2) macs will create "false" binaries on uploads, so you have to check if something is 
really & truly being uploaded; we do it (roughly) thusly:

<cfif Len(form.image)>
<!--- now check for mac ie problems --->
<cflock name="#form.image#" type="READONLY" timeout="30">
<cffile action="ReadBinary" 
file="#form.image#" 
variable="aBinaryObj">
</cflock>
<!--- now proceed only if this is not a mac "tmp" file --->
<cfif Len(variables.aBinaryObj) GT 2>
[proceed with upload]
</cfif>
</cfif>


-----Original Message-----
From: Eric Hoffman [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 11, 2002 5:36 PM
To: CF-Talk
Subject: RE: MAC/IE Form Troubles (Wanna shoot it)


IE 5, Mac OS 9.04



-----Original Message-----
From: Ali Daniali [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, December 11, 2002 5:28 PM
To: CF-Talk
Subject: RE: MAC/IE Form Troubles (Wanna shoot it)


Mac OS? Browser name and version? please
-----Original Message-----
From: Eric Hoffman [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 11, 2002 3:19 PM
To: CF-Talk
Subject: MAC/IE Form Troubles (Wanna shoot it)


Okay, have a form that works well on the pc in ie and all.

Uses cfform...action=post

And when a mac users uses it, on the action page where t processes, It
tells me that form fields don't exist.  (and I know they do, because I
use my pc and it works.)

Can anyone shed some light for me?????






~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Reply via email to