fusionaire
Programmer
First, here's the code:
<cfif IsDefined ("form.pic2"
and form.pic2 is not ''>
<CFFILE ACTION="Upload" FILEFIELD="pic2" DESTINATION="d:\HTTP\mywebsite\new\images" accept="*/*"
NAMECONFLICT="overwrite">
<cfset pic2=#file.serverfile#>
</cfif>
Here's the error:
Error processing CFFILE
Error attempting to save uploaded file to path
'd:\HTTP\mywebsite\new\images\.' The system cannot find the path
specified. (error 3)
The error occurred while processing an element with a general identifier of
(CFFILE), occupying document position (209:1) to (210:26) in the template
file D:\http\mywebsite\admin\projects.cfm.
Here's the issue. On windows, everything works fine. The client uses Macs.
In total, they can upload 3 images. This error only occurs if they only upload 1 or 2 images.
I am totally baffled by this. Any help would be GREATLY appreciated.
<cfif IsDefined ("form.pic2"
<CFFILE ACTION="Upload" FILEFIELD="pic2" DESTINATION="d:\HTTP\mywebsite\new\images" accept="*/*"
NAMECONFLICT="overwrite">
<cfset pic2=#file.serverfile#>
</cfif>
Here's the error:
Error processing CFFILE
Error attempting to save uploaded file to path
'd:\HTTP\mywebsite\new\images\.' The system cannot find the path
specified. (error 3)
The error occurred while processing an element with a general identifier of
(CFFILE), occupying document position (209:1) to (210:26) in the template
file D:\http\mywebsite\admin\projects.cfm.
Here's the issue. On windows, everything works fine. The client uses Macs.
In total, they can upload 3 images. This error only occurs if they only upload 1 or 2 images.
I am totally baffled by this. Any help would be GREATLY appreciated.